.elementor-19 .elementor-element.elementor-element-f739b05{--display:flex;}.elementor-19 .elementor-element.elementor-element-8f2ace5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-4a8b6dc *//* -------------------------- */
/* FOOTER CONTAINER           */
/* -------------------------- */
.footer {
    background: #f2f2f2;
    color: #000000;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    position: relative;
}

/* Slim top line, always visible */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;           /* Full width */
    height: 1.5px;         /* Slim line */
    background: #000000;   /* Black color */
}

/* -------------------------- */
/* FOOTER LAYOUT              */
/* -------------------------- */
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: auto;
    gap: 50px;
}

.footer-group {
    min-width: 250px;
}

.footer-group h3 {
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-group ul {
    list-style: none;
    padding: 0;
}

.footer-group ul li {
    margin: 10px 0;
}

.footer-group p {
    margin: 8px 0;
    opacity: 0.8;
}

/* -------------------------- */
/* LINK & BUTTON HOVER EFFECT */
/* -------------------------- */
.footer-group a {
    color: #000000;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-group a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 1.5px;
    width: 0;
    background: #000000;
    transform: translateX(-50%);
    transition: width 0.4s ease-in-out;
}

.footer-group a:hover::after {
    width: 100%;
}

.footer-group a:hover {
    color: #000000;
}

/* -------------------------- */
/* BUTTONS                    */
/* -------------------------- */
.footer button,
.footer .btn {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
}

.footer button::after,
.footer .btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #000000;
    transform: translateX(-50%);
    transition: width 0.4s ease-in-out;
}

.footer button:hover::after,
.footer .btn:hover::after {
    width: 100%;
}

.footer button:hover,
.footer .btn:hover {
    color: #000000;
    border-color: #000000;
}

/* -------------------------- */
/* RESPONSIVE                 */
/* -------------------------- */
@media (max-width: 900px) {
    .footer-row {
        flex-direction: column;
        gap: 40px;
    }
}/* End custom CSS */