.footer-bg {
    background-color: #090909;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 55px 15px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-footer-1 {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-footer-2 {
    width: 160px;
    height: 60px;
    object-fit: contain;
}

.logo-divider {
    width: 1px;
    height: 50px;
    background-color: #ffffff;
    margin: 0 8px;
}

.title-section {
    margin-top: 2rem;
    text-align: center;
}

.title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 0.5rem;
}

.title-text {
    font-size: 1.1rem;
}

.title-separator {
    color: #cccccc;
    font-size: 1.5rem;
}

.subtitle {
    margin-top: 1rem;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 1rem;
}

.nav-menu {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-bg);
}

.social-media {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background-color: white;
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-btn i {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-btn:hover i,
.footer-social-btn:hover .footer-social-icon {
    color: var(--primary-bg);
}

.copyright-bg {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 1rem;
}
.copyright-text {
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media screen and (min-width: 768px) {
    .title-wrapper {
        flex-direction: row;
        gap: 1rem;
    }

    .title-text {
        font-size: 1.3rem;
    }

    .title-separator {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-footer-1 {
        width: 70px;
        height: 70px;
    }

    .logo-divider {
        height: 70px;
        margin: 0 16px;
    }

    .nav-menu a {
        font-size: 1rem;
    }
}

@media screen and (min-width: 1024px) {
    .title-text {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .footer-social-btn {
        width: 45px;
        height: 45px;
    }

    .footer-social-btn i {
        font-size: 1.4rem;
    }
}
