#footer.modern {
    background-color: #222222;
    padding: 60px 0;
    color: #ffffff;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

#footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#footer .widg {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

#footer .sidebar-item {
    margin-bottom: 15px;
    padding: 0 21px;
}

/* Logo section */
.wiso-widget-copyright .img-wrap {
    margin-bottom: 25px;
}

.wiso-widget-copyright .img-wrap img {
    max-width: 150px;
    height: auto;
}

/* Social Media Icons */
.wiso-widget-copyright .socials {
    margin: 25px 0;
}

.wiso-widget-copyright .socials a {
    color: #ffffff;
    font-size: 18px;
    margin-right: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wiso-widget-copyright .socials a:hover {
    color: #007bff;
    transform: translateY(-2px);
}

/* Copyright Text */
.copy_content.text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.2px;
    opacity: 0.9;
}

/* Album Section */
#footer .widget_text .item-wrap {
    padding-right: 15px;
}

#footer .widget_text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#footer .widget_text p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;
}

#footer .widget_text p:hover {
    opacity: 1;
    color: #007bff;
    transform: translateX(5px);
}

/* Contact Section */
#footer .widget_text a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

#footer .widget_text a:hover {
    color: #007bff;
    opacity: 1;
}

/* Information Section */
#footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.textwidget p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.textwidget a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.textwidget a:hover {
    color: #007bff;
}

/* Subscribe Section */
.wiso-widget-subscribe h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.wiso-widget-subscribe form {
    margin-bottom: 15px;
}

.wiso-widget-subscribe input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.wiso-widget-subscribe input[type="email"]:focus {
    outline: none;
    border-color: #007bff;
}

.wiso-widget-descr {
    font-size: 12px;
    color: #ffffff;
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Responsive Design */
@media (max-width: 991px) {
    #footer .sidebar-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    #footer .sidebar-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    #footer.modern {
        padding: 40px 0;
    }
    
    #footer .widget_text h5 {
        margin-bottom: 15px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0056b3;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
} 