/* ===== Footer ===== */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 4rem 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.footer-main {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6rem;
    margin-bottom: 3rem;
    justify-content: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.footer-social-link {
    color: var(--primary-teal);
    transition: var(--transition);
    display: inline-flex;
}

.footer-social-link:hover {
    color: #20ebc9;
    transform: translateY(-2px);
}

.footer-right {
    display: flex;
    justify-content: flex-start;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem;
    align-items: baseline;
}

.footer-label {
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.2;
}

.footer-contact-link {
    font-size: 1.3rem;
    color: var(--primary-teal);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: #20ebc9;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--white);
}

.footer-copyright p {
    margin: 0;
    font-size: 1.3rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--primary-teal);
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #20ebc9;
}

.footer-dragonfly {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.footer-dragonfly img {
    /*width: 100%;*/
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    /*mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.7) 40%, black 60%);*/
    /*-webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.7) 40%, black 60%);*/
    transform: rotate(22deg);
    opacity: 0.77;
}
