/* =========================================================
   AL-YAQEEN FOOTER
   ========================================================= */

.yaqeen-footer {
    width: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   HAUPTBEREICH – WEISS
   ========================================================= */

.yaqeen-footer-main {
    width: 100%;
    background: #173b2b;
    padding: 28px 20px;
    box-sizing: border-box;
}


/* =========================================================
   4 SPALTEN
   ========================================================= */

.yaqeen-footer-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;

    /*
       Logo | Adresse | Kontakt | Service
    */
    grid-template-columns:
        1.05fr
        1fr
        1fr
        1.05fr;

    align-items: center;

    column-gap: 55px;
}


/* =========================================================
   ALLGEMEINE SPALTEN
   ========================================================= */

.yaqeen-footer-column {
    min-width: 0;
}


/* =========================================================
   LOGO
   ========================================================= */

.yaqeen-footer-logo-column {
    display: flex;
    align-items: center;
    justify-content: center;
}


.yaqeen-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.yaqeen-footer-logo img {
    display: block;

    width: 145px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   ÜBERSCHRIFTEN
   ========================================================= */

.yaqeen-footer-column h3 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1.2;

    font-weight: 600;
}


/* =========================================================
   TEXT
   ========================================================= */

.yaqeen-footer-column p {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.5;
}


.yaqeen-footer-column strong {
    color: #ffffff;
}


/* =========================================================
   KONTAKT LINKS
   ========================================================= */

.yaqeen-footer-column a {
    color: #ffffff;
    text-decoration: none;

    transition: color 0.25s ease;
}


.yaqeen-footer-column a:hover {
    color: #b28a35;
}


/* =========================================================
   RECHTER SERVICE-BLOCK
   ========================================================= */

.yaqeen-footer-service {
    /*
       Dadurch bleibt der Block nicht direkt am äußeren Rand,
       sondern sitzt etwas weiter links.
    */
    justify-self: start;
    width: 100%;
    max-width: 270px;
}


.yaqeen-footer-service h3 {
    margin-bottom: 18px;
}


/* =========================================================
   SERVICE BUTTONS
   ========================================================= */

.yaqeen-footer-service-link {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 0;

    border-bottom: 1px solid rgba(23, 59, 43, 0.22);

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        padding-left 0.25s ease;
}


.yaqeen-footer-service-link span:last-child {
    color: #b28a35;

    font-size: 18px;

    transition: transform 0.25s ease;
}


.yaqeen-footer-service-link:hover {
    color: #b28a35 !important;

    border-color: #b28a35;

    padding-left: 5px;
}


.yaqeen-footer-service-link:hover span:last-child {
    transform: translateX(4px);
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.yaqeen-footer-bottom {
    width: 100%;

    background: #0b241a;

    border-top: 2px solid #c89b3c;

    box-sizing: border-box;
}


.yaqeen-footer-bottom-inner {
    max-width: 1200px;

    min-height: 62px;

    margin: 0 auto;

    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    box-sizing: border-box;
}


/* Copyright */

.yaqeen-footer-copyright {
    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
}


/* Impressum / Datenschutz */

.yaqeen-footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}


.yaqeen-footer-legal a {
    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;

    text-decoration: none;

    transition: color 0.25s ease;
}


.yaqeen-footer-legal a:hover {
    color: #c89b3c;
}


.yaqeen-footer-legal span {
    color: #c89b3c;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .yaqeen-footer-inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }

    .yaqeen-footer-logo-column {
        justify-content: flex-start;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .yaqeen-footer-main {
        padding: 42px 25px;
    }


    .yaqeen-footer-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .yaqeen-footer-logo-column {
        justify-content: center;
    }


    .yaqeen-footer-logo img {
        width: 150px;
    }


    .yaqeen-footer-column {
        text-align: center;
    }


    .yaqeen-footer-service {
        justify-self: center;
        max-width: 270px;
    }


    .yaqeen-footer-bottom-inner {
        min-height: auto;

        padding: 18px 20px;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 10px;
    }

}