/**
 * Footer Styles - Full Screen Luxury Design
 * Inspired by Webflow/Flowaze Design
 * 
 * @package Bargtunes
 */

/* ========================================
   FOOTER - FULL SCREEN
======================================== */

.site-footer {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    overflow: hidden;
}

/* Subtle Grid Background with Animation */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

/* Radial Gradient Overlay */
.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   FOOTER CONTAINER
======================================== */

.footer-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    z-index: 1;
}

/* Decorative Corner Elements */
.footer-container::before,
.footer-container::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: -1;
}

.footer-container::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    animation: cornerPulse 3s ease-in-out infinite;
}

.footer-container::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    animation: cornerPulse 3s ease-in-out infinite 1.5s;
}

@keyframes cornerPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* ========================================
   FOOTER TAGLINE
======================================== */

.footer-tagline {
    max-width: 800px;
    text-align: center;
    visibility: visible;
    opacity: 1;
}

.footer-tagline p {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   SOCIAL LINKS
======================================== */

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    visibility: visible;
    opacity: 1;
}

.footer-social a {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.footer-social a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.05);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover::after {
    opacity: 1;
    transform: scale(1);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.4s ease;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 0 transparent);
}

.footer-social a svg path {
    fill: inherit;
}

.footer-social a:hover svg {
    fill: currentColor;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    animation: iconFloat 1.5s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* ========================================
   FOOTER NAVIGATION
======================================== */

.footer-nav {
    display: flex;
    align-items: center;
    gap: 60px;
    visibility: visible;
    opacity: 1;
}

.footer-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    padding: 8px 16px;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.footer-nav a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */

.scroll-to-top {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    visibility: visible;
    opacity: 1;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.scroll-to-top::after {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.scroll-to-top:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.scroll-to-top:active {
    transform: translateY(-6px) scale(0.98);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
    display: block;
    flex-shrink: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 0 transparent);
}

.scroll-to-top svg path {
    fill: inherit;
}

.scroll-to-top:hover svg {
    fill: currentColor;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ========================================
   FOOTER BOTTOM
======================================== */

.footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    visibility: visible;
    opacity: 1;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    filter: blur(1px);
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-label {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.footer-separator {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* 4K & Large Desktop (2560px+) */
@media (min-width: 2560px) {
    .site-footer {
        padding: 120px 100px;
    }
    
    .footer-container {
        max-width: 1800px;
        gap: 80px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 120px;
        height: 120px;
    }
    
    .footer-tagline {
        max-width: 1000px;
    }
    
    .footer-tagline p {
        font-size: 1.6rem;
        line-height: 1.8;
    }
    
    .footer-social {
        gap: 28px;
    }
    
    .footer-social a {
        width: 60px;
        height: 60px;
    }
    
    .footer-social a svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-nav {
        gap: 80px;
    }
    
    .footer-nav a {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .scroll-to-top {
        width: 70px;
        height: 70px;
    }
    
    .scroll-to-top svg {
        width: 28px;
        height: 28px;
    }
    
    .footer-bottom {
        padding-top: 50px;
        margin-top: 50px;
    }
    
    .footer-left,
    .footer-right {
        gap: 20px;
        font-size: 0.85rem;
    }
}

/* Desktop Large (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .site-footer {
        padding: 100px 80px;
    }
    
    .footer-container {
        max-width: 1600px;
        gap: 70px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 100px;
        height: 100px;
    }
    
    .footer-tagline {
        max-width: 900px;
    }
    
    .footer-tagline p {
        font-size: 1.5rem;
    }
    
    .footer-social {
        gap: 24px;
    }
    
    .footer-social a {
        width: 56px;
        height: 56px;
    }
    
    .footer-social a svg {
        width: 22px;
        height: 22px;
    }
    
    .footer-nav {
        gap: 70px;
    }
    
    .footer-nav a {
        font-size: 0.95rem;
    }
    
    .scroll-to-top {
        width: 66px;
        height: 66px;
    }
    
    .scroll-to-top svg {
        width: 26px;
        height: 26px;
    }
}

/* Desktop Standard (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .site-footer {
        padding: 85px 70px;
    }
    
    .footer-container {
        gap: 65px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 90px;
        height: 90px;
    }
    
    .footer-tagline {
        max-width: 850px;
    }
    
    .footer-nav {
        gap: 65px;
    }
    
    .footer-nav a {
        font-size: 0.92rem;
    }
    
    .footer-social {
        gap: 22px;
    }
    
    .footer-social a {
        width: 52px;
        height: 52px;
    }
    
    .footer-social a svg {
        width: 21px;
        height: 21px;
    }
    
    .scroll-to-top {
        width: 62px;
        height: 62px;
    }
    
    .scroll-to-top svg {
        width: 25px;
        height: 25px;
    }
}

/* Laptop Large (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .site-footer {
        padding: 75px 60px;
    }
    
    .footer-container {
        gap: 58px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 85px;
        height: 85px;
    }
    
    .footer-tagline {
        max-width: 750px;
    }
    
    .footer-tagline p {
        font-size: 1.3rem;
    }
    
    .footer-social {
        gap: 20px;
    }
    
    .footer-nav {
        gap: 58px;
    }
    
    .footer-nav a {
        font-size: 0.88rem;
        padding: 7px 14px;
    }
}

/* Laptop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .site-footer {
        padding: 70px 50px;
    }
    
    .footer-container {
        gap: 52px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 75px;
        height: 75px;
    }
    
    .footer-tagline {
        max-width: 700px;
    }
    
    .footer-tagline p {
        font-size: 1.25rem;
        line-height: 1.65;
    }
    
    .footer-social {
        gap: 19px;
    }
    
    .footer-social a {
        width: 48px;
        height: 48px;
    }
    
    .footer-social a svg {
        width: 19px;
        height: 19px;
    }
    
    .footer-nav {
        gap: 50px;
    }
    
    .footer-nav a {
        font-size: 0.85rem;
        padding: 7px 13px;
    }
    
    .scroll-to-top {
        width: 58px;
        height: 58px;
    }
    
    .scroll-to-top svg {
        width: 23px;
        height: 23px;
    }
}

/* Tablet Large (900px - 1023px) */
@media (min-width: 900px) and (max-width: 1023px) {
    .site-footer {
        padding: 65px 45px;
        min-height: 92vh;
    }
    
    .footer-container {
        gap: 48px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 70px;
        height: 70px;
    }
    
    .footer-tagline {
        max-width: 650px;
    }
    
    .footer-tagline p {
        font-size: 1.18rem;
        line-height: 1.6;
    }
    
    .footer-social {
        gap: 18px;
    }
    
    .footer-social a {
        width: 47px;
        height: 47px;
    }
    
    .footer-social a svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-nav {
        gap: 45px;
    }
    
    .footer-nav a {
        font-size: 0.83rem;
        padding: 7px 12px;
    }
    
    .scroll-to-top {
        width: 56px;
        height: 56px;
    }
    
    .scroll-to-top svg {
        width: 22px;
        height: 22px;
    }
    
    .footer-bottom {
        padding-top: 38px;
        margin-top: 38px;
        font-size: 0.72rem;
    }
}

/* Tablet Standard (768px - 899px) */
@media (min-width: 768px) and (max-width: 899px) {
    .site-footer {
        padding: 60px 40px;
        min-height: 88vh;
    }
    
    .footer-container {
        gap: 45px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 65px;
        height: 65px;
    }
    
    .footer-tagline {
        max-width: 600px;
    }
    
    .footer-tagline p {
        font-size: 1.12rem;
        line-height: 1.58;
    }
    
    .footer-social {
        gap: 17px;
    }
    
    .footer-social a {
        width: 46px;
        height: 46px;
    }
    
    .footer-social a svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-nav {
        gap: 42px;
    }
    
    .footer-nav a {
        font-size: 0.82rem;
        padding: 6px 12px;
    }
    
    .scroll-to-top {
        width: 55px;
        height: 55px;
    }
    
    .scroll-to-top svg {
        width: 22px;
        height: 22px;
    }
    
    .footer-bottom {
        padding-top: 36px;
        margin-top: 36px;
        font-size: 0.7rem;
    }
}

/* Tablet Small & Large Mobile (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .site-footer {
        padding: 55px 35px;
        min-height: auto;
    }
    
    .footer-container {
        gap: 42px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 60px;
        height: 60px;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .footer-tagline p {
        font-size: 1.08rem;
        line-height: 1.55;
        letter-spacing: 0.015em;
    }
    
    .footer-social {
        gap: 16px;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
    }
    
    .footer-social a svg {
        width: 17px;
        height: 17px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
        max-width: 420px;
    }
    
    .footer-nav a {
        font-size: 0.8rem;
        padding: 6px 11px;
    }
    
    .scroll-to-top {
        width: 52px;
        height: 52px;
        margin-top: 10px;
    }
    
    .scroll-to-top svg {
        width: 21px;
        height: 21px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 22px;
        text-align: center;
        padding-top: 34px;
        margin-top: 34px;
    }
    
    .footer-left,
    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 11px;
        font-size: 0.69rem;
    }
    
    .footer-bottom::before {
        width: 80px;
    }
}

/* Mobile Large (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
    .site-footer {
        padding: 50px 30px;
        min-height: auto;
    }
    
    .footer-container {
        gap: 38px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 55px;
        height: 55px;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .footer-tagline p {
        font-size: 1.04rem;
        line-height: 1.52;
        letter-spacing: 0.01em;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-social a {
        width: 44px;
        height: 44px;
    }
    
    .footer-social a svg {
        width: 17px;
        height: 17px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 28px;
        justify-content: center;
        max-width: 360px;
    }
    
    .footer-nav a {
        font-size: 0.78rem;
        padding: 6px 10px;
    }
    
    .scroll-to-top {
        width: 50px;
        height: 50px;
        margin-top: 8px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 32px;
        margin-top: 32px;
    }
    
    .footer-left,
    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 0.68rem;
    }
    
    .footer-bottom::before {
        width: 70px;
    }
}

/* Mobile Standard (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .site-footer {
        padding: 45px 25px;
    }
    
    .footer-container {
        gap: 35px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 50px;
        height: 50px;
    }
    
    .footer-tagline p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .footer-social {
        gap: 14px;
    }
    
    .footer-social a {
        width: 42px;
        height: 42px;
    }
    
    .footer-social a svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        max-width: 320px;
    }
    
    .footer-nav a {
        font-size: 0.76rem;
        padding: 5px 9px;
    }
    
    .scroll-to-top {
        width: 48px;
        height: 48px;
    }
    
    .scroll-to-top svg {
        width: 19px;
        height: 19px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
        padding-top: 30px;
        margin-top: 30px;
    }
    
    .footer-left,
    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 9px;
        font-size: 0.66rem;
    }
    
    .footer-bottom::before {
        width: 60px;
    }
}

/* Mobile Small (320px - 374px) */
@media (min-width: 320px) and (max-width: 374px) {
    .site-footer {
        padding: 40px 20px;
    }
    
    .footer-container {
        gap: 32px;
    }
    
    .footer-container::before,
    .footer-container::after {
        width: 45px;
        height: 45px;
    }
    
    .footer-tagline p {
        font-size: 0.95rem;
        line-height: 1.48;
    }
    
    .footer-social {
        gap: 13px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-social a svg {
        width: 15px;
        height: 15px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        max-width: 280px;
    }
    
    .footer-nav a {
        font-size: 0.74rem;
        padding: 5px 8px;
    }
    
    .scroll-to-top {
        width: 46px;
        height: 46px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 28px;
        margin-top: 28px;
    }
    
    .footer-left,
    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        font-size: 0.64rem;
    }
    
    .footer-separator {
        height: 10px;
    }
    
    .footer-bottom::before {
        width: 50px;
    }
}

/* Mobile Extra Small (< 320px) */
@media (max-width: 319px) {
    .site-footer {
        padding: 35px 15px;
    }
    
    .footer-container {
        gap: 28px;
    }
    
    .footer-container::before,
    .footer-container::after {
        display: none;
    }
    
    .footer-tagline p {
        font-size: 0.9rem;
        line-height: 1.45;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
    }
    
    .footer-social a svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .footer-nav a {
        font-size: 0.72rem;
        padding: 4px 7px;
    }
    
    .scroll-to-top {
        width: 44px;
        height: 44px;
    }
    
    .scroll-to-top svg {
        width: 17px;
        height: 17px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding-top: 25px;
        margin-top: 25px;
    }
    
    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 7px;
        font-size: 0.62rem;
    }
    
    .footer-separator {
        width: 80%;
        height: 1px;
        margin: 3px 0;
    }
    
    .footer-bottom::before {
        display: none;
    }
}

/* Landscape Mobile & Tablets */
@media (max-height: 600px) and (orientation: landscape) {
    .site-footer {
        min-height: auto;
        padding: 40px 30px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-tagline p {
        font-size: 0.95rem;
        line-height: 1.45;
    }
    
    .footer-social {
        gap: 14px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-nav {
        gap: 25px;
    }
    
    .footer-nav a {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        margin-top: 5px;
    }
    
    .footer-bottom {
        padding-top: 25px;
        margin-top: 25px;
    }
}

/* ========================================
   PERFORMANCE & FALLBACKS
======================================== */

/* Ensure visibility when JS is disabled or not loaded yet */
.no-js .footer-tagline,
.no-js .footer-tagline p,
.no-js .footer-social,
.no-js .footer-social a,
.no-js .footer-nav,
.no-js .footer-nav a,
.no-js .scroll-to-top,
.no-js .footer-bottom,
body:not(.js-loaded) .footer-tagline,
body:not(.js-loaded) .footer-tagline p,
body:not(.js-loaded) .footer-social,
body:not(.js-loaded) .footer-social a,
body:not(.js-loaded) .footer-nav,
body:not(.js-loaded) .footer-nav a,
body:not(.js-loaded) .scroll-to-top,
body:not(.js-loaded) .footer-bottom {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Extra fallback - make sure SVGs are visible */
.footer-social a svg,
.scroll-to-top svg {
    display: block !important;
}

@media (prefers-reduced-motion: reduce) {
    .footer-social a,
    .footer-nav a,
    .scroll-to-top,
    .footer-bottom a {
        transition: none !important;
    }
    
    .footer-nav a::after {
        transition: none !important;
    }
}

