﻿/* Main content wrapper */
.content-wrapper {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .content-wrapper h1 {
        color: var(--primary-blue);
        margin-bottom: 20px;
        font-size: 2.5rem;
    }

    .content-wrapper p {
        max-width: 600px;
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

/* Footer */
footer {
    background-color: #111111;
    color: #cccccc;
    padding: 60px 0 20px;
    border-top: 5px solid var(--secondary-orange);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 22px;
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #aaaaaa;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
}

    .social-link:hover {
        background-color: var(--secondary-orange);
        color: var(--white);
        transform: translateY(-3px);
    }

/* Footer Links */
.footer-links h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

    .footer-links h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 35px;
        height: 3px;
        background-color: var(--secondary-orange);
        border-radius: 2px;
    }

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

    .footer-links a:hover {
        color: var(--secondary-orange);
        transform: translateX(3px);
    }

    .footer-links a i {
        font-size: 0.8rem;
        color: var(--secondary-orange);
    }

/* NextStepDigital Credit - Small and Subtle */
.ns-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(37, 99, 235, 0.08);
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.ns-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ns-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--ns-blue) 0%, var(--ns-light-blue) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
}

.ns-text {
    color: var(--white);
    font-size: 1rem;
}

.ns-name span {
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--ns-blue) 0%, var(--ns-light-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ns-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.15);
    color: #93c5fd;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

    .ns-link:hover {
        background-color: rgba(37, 99, 235, 0.25);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
    }

    .ns-link i {
        font-size: 0.9rem;
    }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #888888;
    font-size: 0.9rem;
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    font-size: 0.9rem;
}

.developer-link {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .developer-link:hover {
        color: var(--white);
        text-decoration: underline;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        padding: 0 30px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .ns-credit {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 30px 20px;
    }

        .content-wrapper h1 {
            font-size: 2rem;
        }

    footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .ns-link {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ns-credit {
        padding: 15px;
    }

    .ns-text {
        font-size: 0.9rem;
        text-align: center;
    }
}
