:root {
    --primary-5003: #3b82f6;
    --primary-6003: #2563eb;
    --primary-600: #2563eb;
    --gray-50: #f9fafb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --space-sm3: 0.5rem;
    --space-md3: 1rem;
    --space-lg3: 1.5rem;
    --space-2xl: 3rem;
    --space-5xl: 6rem;
    --font-weight-semibold: 600;
    --transition-normal: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-5xl) 0 var(--space-2xl);
    position: relative;
    z-index: 10;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer .col-md-4 {
    padding: 0 15px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.footer .col-md-2 {
    padding: 0 15px;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.footer .offset-md-2 {
    margin-left: 16.666667%;
}

.footer .mb-4 {
    margin-bottom: var(--space-lg3);
}

.footer .mb-md-0 {
    margin-bottom: 0;
}

.footer .mt-4 {
    margin-top: var(--space-lg3);
}

.footer .me-2 {
    margin-right: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(39%) sepia(57%) saturate(4755%) hue-rotate(185deg) brightness(99%) contrast(93%);
}

.footer p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: var(--space-lg3);
}

.footer h3.footer-heading {
    color: white;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-lg3);
    font-size: 1.1rem;
}

.footer .list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .list-unstyled li {
    margin-bottom: var(--space-sm3);
}

.footer .list-unstyled a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer .list-unstyled a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: var(--space-md3);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-300);
    margin: 0;
}

@media (max-width: 1024px) {
    .footer .col-md-4,
    .footer .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: var(--space-lg3);
    }

    .footer .offset-md-2 {
        margin-left: 0;
    }

    .footer-logo {
        margin: 0 auto 16px auto;
    }

    .social-icons {
        justify-content: center;
    }
}