/* Footer Styles per StChannel */
.site-footer{
    padding: 0 !important;
}

.stchannel-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.stchannel-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--st-primary, #00ff9d), transparent);
}

.footer-brand .brand-text {
    background: var(--st-gradient-primary, linear-gradient(135deg, #00ff9d 0%, #00cc7d 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--st-gradient-primary, linear-gradient(135deg, #00ff9d 0%, #00cc7d 100%));
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--st-primary, #00ff9d);
    transform: translateX(5px);
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--st-primary, #00ff9d);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stchannel-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stchannel-social-link i,
.stchannel-social-link svg {
    transition: color 0.3s ease;
}

.stchannel-social-link:hover {
    background: var(--st-gradient-primary, linear-gradient(135deg, #00ff9d 0%, #00cc7d 100%));
    color: var(--st-dark, #0a0a0a) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.4);
}

.stchannel-social-link:hover i,
.stchannel-social-link:hover svg {
    color: var(--st-dark, #0a0a0a) !important;
}

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    width: 20px;
    margin-right: 1rem;
    color: var(--st-primary, #00ff9d);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--st-primary, #00ff9d);
}

/* Newsletter */
.newsletter-signup {
    margin-top: 2rem;
}

.newsletter-signup h6 {
    color: #ffffff;
    font-weight: 600;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px 0 0 25px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: white;
}

.newsletter-form .btn {
    background: var(--st-gradient-primary, linear-gradient(135deg, #00ff9d 0%, #00cc7d 100%));
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    color: var(--st-dark, #0a0a0a);
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, #00cc7d 0%, #00ff9d 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    text-align: right;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--st-primary, #00ff9d);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--st-gradient-primary, linear-gradient(135deg, #00ff9d 0%, #00cc7d 100%));
    border: none;
    border-radius: 50%;
    color: var(--st-dark, #0a0a0a);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #00cc7d 0%, #00ff9d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .stchannel-footer {
        padding: 40px 0 20px;
    }

    .footer-bottom-links {
        text-align: left;
        justify-content: flex-start;
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
