/* Footer Styles */
.footer {
    background-color: #1f2937;
    color: #fff;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

/* Footer Widget Styles */
.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Footer Logo */
.footer-logo img {
    max-height: 40px;
    margin-bottom: 20px;
}

.about-text {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 12px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Contact Info */
.contact-info p {
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-word;
}

.contact-info p i {
    color: var(--primary-color);
    width: 20px;
}

.contact-info a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Newsletter */
.newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-form .input-group {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    height: 40px;
    padding: 10px 20px;
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: #9ca3af;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 30px;
    padding: 8px 20px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #111827;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #9ca3af;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 30px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
}
