/* Footer Styles */
footer {
    background: var(--dark-gray);
    color: var(--text-secondary);
    padding: 80px 0 60px;
    position: relative;
}

/* Add the gradient divider */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(29, 185, 84, 0.3) 50%,
        transparent 100%
    );
    opacity: 1;
    z-index: 1;
}

/* Add glow effect */
footer::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(29, 185, 84, 0.1) 50%,
        transparent 100%
    );
    filter: blur(2px);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    object-fit: contain;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0.9);
}

.footer-logo span {
    font-size: 1.6em;
    font-weight: 700;
    background: linear-gradient(45deg, var(--text) 30%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links h4 {
    color: var(--text);
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
    opacity: 0.8;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact {
    text-align: right;
}

.footer-contact h4 {
    color: var(--text);
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact p {
    margin: 12px 0;
    font-size: 0.9em;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-contact p:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(29, 185, 84, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85em;
    opacity: 0.6;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0 0;
        margin-top: 10px;
    }

    .footer-links h4 {
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
    }
}
