@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap');

@font-face {
  font-family: 'EurostileExtended';
  src: url('../../fonts/EurostileExtended-Black.woff2') format('woff2'),
      url('../../fonts/EurostileExtended-Black.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

.footer-vulkr {
    background: #0f0f0f;
    color: #eee;
    padding: 55px 0 0;
    font-family: 'Manrope', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px 38px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 34px;
}

.footer-section h3 {
    margin: 0 0 14px;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 800;
    font-family: 'EurostileExtended';
}

.footer-section h4 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    margin: 0 0 10px;
    color: #bbb;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 9px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section i {
    margin-right: 8px;
    color: #82b7df;
}

.footer-brand p {
    max-width: 330px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-badges span {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #ddd;
    font-size: 0.76rem;
    font-weight: 800;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-icons a i {
    margin: 0;
    color: #fff;
}

.social-icons a:hover {
    background: #82b7df;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    text-align: center;
    color: #888;
    font-size: 0.84rem;
}

.footer-bottom strong {
    color: #fff;
}

@media (max-width: 950px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-vulkr {
        padding-top: 42px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-section h3 {
        font-size: 1.7rem;
    }

    .footer-bottom {
        font-size: 0.78rem;
    }
}