/* Footer Styles */
.footer {
    background: #0a0a0a;
    padding: 50px 0 20px;
    border-top: 1px solid #222;
}

.footer-logo {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.footer-logo i {
    font-size: 24px;
}

.footer-text {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p,
.footer-countries p {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #fff;
    width: 18px;
}

.country-flag-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #222;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 13px;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid #222;
}

.copyright a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #fff;
}