/* Footer Styles */
.footer-section {
    background-color: var(--main-blue-dark);
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--rose-gold) 50%,
        transparent 100%
    );
    opacity: 0.3;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    padding-bottom: 0.3rem;
}

.footer-logo img {
    height: 2rem;
    width: auto;
    filter: brightness(0) saturate(100%) invert(82%) sepia(14%) saturate(394%) hue-rotate(314deg) brightness(92%) contrast(90%);
    transition: all 0.4s ease;
}

.footer-logo-text {
    color: var(--rose-gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    transform: translateY(0.2rem);
    margin-left: -0.2rem;
    transition: all 0.4s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(82%) sepia(14%) saturate(394%) hue-rotate(314deg) brightness(100%) contrast(95%);
}

.footer-logo:hover .footer-logo-text {
    color: var(--rose-gold-light);
    transform: translateY(0.2rem) scale(1.05);
}

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

.social-link {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: var(--rose-gold);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.social-link .fa-n {
    font-weight: bold;
    font-size: 1rem;
}

.blog-link {
    font-size: 0.9rem;
    position: relative;
    background: rgba(3, 199, 90, 0.1);
}

.blog-link:hover {
    background: rgba(3, 199, 90, 0.2);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--rose-gold);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-legal .copyright,
.footer-legal .business-number {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--rose-gold);
}

.separator {
    color: var(--text-light);
    opacity: 0.3;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 1.25rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

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

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

    .footer-contact, .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-legal {
        font-size: 0.85rem;
        gap: 0.75rem;
        justify-content: center;
        text-align: center;
    }

    .copyright {
        font-size: 0.8rem;
    }
} 