.footer-main {
    background: linear-gradient(135deg, #2e22c9, #2b1fc0);
}

.footer-bottom {
    background: linear-gradient(135deg, #000011, #0c0c33);
}

.footer-logo {
    width: min(90%, 150px);
}

.footer-title {
    color: #ffc107;
    letter-spacing: 0.3px;
}

.footer-text,
.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
    text-decoration: underline;
}

.social-icons a {
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 50%;
    background: #0b6623;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #0b6623, #064d1a);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}