/* ========================================
   FOOTER STYLES
   Extracted from includes/footer.php
   ======================================== */

/* ========================================
   FOOTER - BALANCED VERSION
   ======================================== */
.site-footer {
    background: #000;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 0, 60, 0.2);
    position: relative;
    overflow: hidden;
}

/* Декоративный glow */
.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.1), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.site-footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* ========================================
   GRID LAYOUT
   ======================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   BRAND COLUMN
   ======================================== */
.footer-brand .logo a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.footer-brand .logo a:hover {
    transform: translateX(3px);
}

.footer-brand .logo-wortex {
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    font-family: 'Unbounded', sans-serif;
}

.footer-brand .logo-sound {
    color: var(--accent-red);
    font-weight: 300;
    font-size: 22px;
    font-style: italic;
    margin-left: 3px;
    font-family: 'Unbounded', sans-serif;
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
}

.brand-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid rgba(0, 255, 102, 0.2);
    font-size: 9px;
    letter-spacing: 1px;
    color: #00ff66;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff66;
    animation: pulseGreen 2s ease-in-out infinite;
}

@keyframes pulseGreen {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ========================================
   NAVIGATION COLUMNS
   ======================================== */
.footer-title {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Unbounded', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-links a::before {
    content: '>';
    color: var(--accent-red);
    opacity: 0;
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 12px;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 5px;
}

/* ========================================
   CONTACTS COLUMN
   ======================================== */
.contact-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-main {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 0, 60, 0.05);
    border: 1px solid rgba(255, 0, 60, 0.2);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-main:hover {
    background: rgba(255, 0, 60, 0.1);
    border-color: rgba(255, 0, 60, 0.4);
    transform: translateX(3px);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
}

.contact-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.contact-value {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 11px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 60, 0.2);
    color: #fff;
    transform: translateX(3px);
}

.contact-item .contact-icon {
    font-size: 14px;
}

.footer-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(255, 0, 60, 0.3);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.schedule-icon {
    font-size: 14px;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.social-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 12px;
    flex: 1;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(255, 0, 60, 0.08);
    border-color: rgba(255, 0, 60, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 60, 0.15);
}

.link-arrow {
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

.social-link:hover .link-arrow {
    transform: translateX(3px);
}

/* ========================================
   PAYMENT LOGOS
   ======================================== */
.footer-payment {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.payment-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    white-space: nowrap;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.payment-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 4px;
}

.payment-logos img {
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%) invert(1) brightness(0.6);
    transition: all 0.3s ease;
}

.payment-logos img:hover {
    opacity: 0.7;
    filter: grayscale(50%) invert(1) brightness(0.8);
}

/* Payment cards — visually balanced heights */
.payment-logos .logo-visa {
    height: 14px;
}

.payment-logos .logo-mc {
    height: 18px;
}

.payment-logos .logo-belcard {
    height: 18px;
}

/* Security badges */
.payment-logos .logo-visa-secure {
    height: 20px;
}

.payment-logos .logo-id-check {
    height: 18px;
}

.payment-logos .logo-inet-pass {
    height: 16px;
}

/* Processor */
.payment-logos .logo-bepaid {
    height: 12px;
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.year {
    color: var(--accent-red);
}

.dot {
    margin: 0 10px;
    opacity: 0.3;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-red);
}

/* ========================================
   REVEAL ANIMATION
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE - TABLETS
   ======================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .social-links {
        width: 100%;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 35px;
        margin-bottom: 30px;
    }

    .footer-brand .logo-wortex,
    .footer-brand .logo-sound {
        font-size: 20px;
    }

    .brand-description {
        max-width: 100%;
    }

    .footer-social {
        padding: 20px 0;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }

    .dot {
        margin: 0 8px;
    }

    .footer-payment {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .payment-logos {
        justify-content: center;
    }

    .payment-group {
        justify-content: center;
    }

    .payment-logos .logo-visa { height: 16px; }
    .payment-logos .logo-mc { height: 20px; }
    .payment-logos .logo-belcard { height: 20px; }
    .payment-logos .logo-visa-secure { height: 22px; }
    .payment-logos .logo-id-check { height: 20px; }
    .payment-logos .logo-inet-pass { height: 18px; }
    .payment-logos .logo-bepaid { height: 14px; }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 10px;
    }

    .contact-main,
    .contact-item {
        font-size: 10px;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
    }

    .social-link {
        justify-content: space-between;
        width: 100%;
    }

    .copyright-text,
    .footer-legal {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .dot {
        display: none;
    }
}
