

.site-footer {
    position: relative;
    background: linear-gradient(to bottom, #03173b 0%, #000510 100%);
    padding-top: 5rem;
    padding-bottom: 3rem;
    overflow: hidden;
    z-index: 10;
    font-family: 'Inter', sans-serif;
    color: white;

    text-align: left;
    margin-top: 0 !important;
}

.footer-border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.footer-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer-waves svg {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0.4;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }

    .footer-links-container {
        grid-column: span 9;
    }
}

.footer-logo {
    height: 4.83rem;
    margin-bottom: 1.5rem;
}

.footer-logo--segway {
    margin-bottom: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.625;
    max-width: 24rem;
    margin-bottom: 1rem;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #e73e1d;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.footer-contact-btn:hover {
    background-color: #cf3316;
    box-shadow: 0 0 30px -5px rgba(231, 62, 29, 0.55);
    color: #ffffff;
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-links-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-weight: 500;
    font-size: 0.875rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    display: inline-block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-email {
    color: rgba(255, 255, 255, 0.62);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-email:hover {
    color: #E73E1D;
}

.footer-address {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.875rem;
    font-style: normal;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
    .copyright {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.62);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.site-footer .text-white-50 {
    color: rgba(255, 255, 255, 0.62) !important;
}

.social-btn:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.divider-vertical {
    width: 1px;
    height: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 0.25rem;
}

.circuit-wave-1 {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: signalFlow 15s linear infinite;
}

.circuit-wave-2 {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: signalFlow 20s linear infinite reverse;
}

.circuit-wave-3 {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: signalFlow 12s linear infinite 2s;
}

.circuit-wave-4 {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: signalFlow 18s linear infinite 1s;
}

.circuit-wave-5 {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: signalFlow 14s linear infinite 3s;
}

@keyframes signalFlow {
    0% {
        stroke-dashoffset: 3000;
    }

    100% {
        stroke-dashoffset: -3000;
    }
}
