.bg-footer{
    --bg-accent:#ff7a00;
    padding:48px 0 18px;
    background:#fff;
}
.bg-footer__box{
    overflow:hidden;
    border:1px solid #e6ded5;
    border-radius:17px;
    background:#fff;
    box-shadow:0 13px 38px rgba(38,27,17,.045);
}
.bg-footer__top{
    display:grid;
    grid-template-columns:1.2fr 1.2fr 1fr .82fr;
    gap:24px;
    padding:30px;
    align-items:stretch;
}
.bg-footer__brand{
    min-width:0;
    min-height:100%;
    padding:19px;
    display:flex;
    flex-direction:column;
    align-items:center;
    border:1px solid #f0e4d8;
    border-radius:13px;
    background:
        radial-gradient(circle at 50% -10%,rgba(255,122,0,.07),transparent 40%),
        linear-gradient(180deg,#fffdfa,#fff);
    text-align:center;
}
.bg-footer__brand-logo{
    min-height:64px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.bg-footer__brand-logo img{
    display:block;
    width:auto;
    max-width:145px;
    max-height:70px;
    object-fit:contain;
    margin-inline:auto;
}
.bg-footer__brand-description{
    max-width:340px;
    margin:13px auto 0;
    color:#6f665d;
    font-size:11px;
    line-height:2;
    text-align:center;
}
.bg-footer__brand-description:after{
    content:"";
    display:block;
    width:42px;
    height:2px;
    margin:14px auto 0;
    border-radius:2px;
    background:linear-gradient(90deg,transparent,var(--bg-accent),transparent);
}
.bg-footer__brand-socials{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:7px;
    margin-top:14px;
}
.bg-footer__brand-socials a{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border:1px solid #eaded3;
    border-radius:10px;
    background:#fff;
    color:#5d5147!important;
    text-decoration:none!important;
    transition:
        transform .2s ease,
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}
.bg-footer__brand-socials a:hover,
.bg-footer__brand-socials a:focus-visible{
    transform:translateY(-2px);
    color:#fff!important;
    background:var(--bg-accent);
    border-color:var(--bg-accent);
    box-shadow:0 9px 18px rgba(255,122,0,.16);
}
.bg-footer__brand-socials svg,
.bg-footer__brand-socials i{
    width:15px;
    height:15px;
    font-size:15px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
}
.bg-footer__column,
.bg-footer__enamad{
    min-width:0;
    padding-top:4px;
}
.bg-footer__column-title{
    position:relative;
    margin:0 0 15px;
    padding-bottom:9px;
    color:#241f1b;
    font-size:14px;
    font-weight:850;
}
.bg-footer__column-title:after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    width:26px;
    height:2px;
    border-radius:3px;
    background:var(--bg-accent);
}
.bg-footer__contacts{
    display:grid;
    gap:9px;
}
.bg-footer__contact-item{
    min-width:0;
    display:flex;
    align-items:flex-start;
    gap:9px;
    padding:5px;
    border-radius:10px;
    color:#4d443c!important;
    text-decoration:none!important;
    transition:background-color .2s ease,transform .2s ease;
}
a.bg-footer__contact-item:hover{
    background:#fff9f3;
    transform:translateX(-2px);
}
.bg-footer__icon-box,
.bg-footer__service-icon{
    width:36px;
    height:36px;
    flex:0 0 36px;
    display:grid;
    place-items:center;
    border:1px solid #efc18f;
    border-radius:10px;
    background:#fffaf5;
    color:var(--bg-accent);
    transition:background-color .2s ease,color .2s ease,border-color .2s ease,transform .2s ease;
}
.bg-footer__icon-box svg,
.bg-footer__icon-box i,
.bg-footer__service-icon svg,
.bg-footer__service-icon i{
    width:17px;
    height:17px;
    font-size:17px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.bg-footer__contact-copy{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:2px;
    padding-top:2px;
}
.bg-footer__contact-copy b{
    color:#342d27;
    font-size:10px;
    font-weight:800;
}
.bg-footer__contact-value{
    color:#6f6358;
    font-size:10px;
    line-height:1.7;
    overflow-wrap:anywhere;
}
a.bg-footer__contact-item:hover .bg-footer__icon-box{
    color:#fff;
    background:var(--bg-accent);
    border-color:var(--bg-accent);
}
.bg-footer__services{
    margin:0;
    padding:0;
    display:grid;
    gap:7px;
    list-style:none;
}
.bg-footer__services li{margin:0}
.bg-footer__services a{
    min-height:43px;
    display:flex;
    align-items:center;
    gap:8px;
    padding:4px 5px;
    border:1px solid transparent;
    border-radius:10px;
    color:#675c52!important;
    text-decoration:none!important;
    font-size:10px;
    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}
.bg-footer__services a:hover,
.bg-footer__services a:focus-visible{
    color:var(--bg-accent)!important;
    background:#fff9f3;
    border-color:#f2e0cf;
    transform:translateX(-2px);
}
.bg-footer__services a>.bg-footer__service-icon{
    width:32px;
    height:32px;
    flex-basis:32px;
}
.bg-footer__services a>.bg-footer__service-icon svg{
    width:15px;
    height:15px;
}
.bg-footer__services a:hover>.bg-footer__service-icon{
    color:#fff;
    background:var(--bg-accent);
    border-color:var(--bg-accent);
}
.bg-footer__services a>svg:last-child{
    width:12px;
    height:12px;
    margin-right:auto;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    transform:rotate(90deg);
}
.bg-footer__enamad{
    min-height:100%;
    padding:15px;
    border:1px solid #efdfd0;
    border-radius:12px;
    background:linear-gradient(180deg,#fffdfa,#fff);
}
.bg-footer__enamad p{
    margin:0 0 12px;
    color:#7c6f63;
    font-size:10px;
    line-height:1.8;
}
.bg-footer__enamad-image{
    position:relative;
    min-height:125px;
    padding:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #efe5db;
    border-radius:11px;
    background:#fff;
    text-decoration:none!important;
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
a.bg-footer__enamad-image:hover,
a.bg-footer__enamad-image:focus-visible{
    transform:translateY(-2px);
    border-color:#e7b77e;
    box-shadow:0 10px 22px rgba(53,34,18,.08);
}
.bg-footer__enamad-image img{
    display:block;
    width:auto;
    max-width:105px;
    max-height:105px;
    object-fit:contain;
}
.bg-footer__enamad-external{
    position:absolute;
    left:7px;
    bottom:7px;
    width:25px;
    height:25px;
    display:grid;
    place-items:center;
    border-radius:8px;
    background:#fff6ed;
    color:var(--bg-accent);
}
.bg-footer__enamad-external svg{
    width:12px;
    height:12px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
}
.bg-footer__bottom{
    min-height:60px;
    padding:12px 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-top:1px solid #eee8e2;
    background:#fffdfb;
}
.bg-footer__copyright{
    margin:0;
    color:#94877b;
    font-size:9px;
    text-align:center;
}
@media(max-width:980px){
    .bg-footer__top{
        grid-template-columns:1fr 1fr;
        gap:22px;
    }
}
@media(max-width:650px){
    .bg-footer{
        padding-top:32px;
    }
    .bg-footer__top{
        grid-template-columns:1fr;
        padding:20px 16px;
        gap:20px;
    }
    .bg-footer__brand{
        padding:17px;
    }
    .bg-footer__brand-description{
        max-width:100%;
    }
    .bg-footer__bottom{
        padding:15px 18px;
    }
}
@media(prefers-reduced-motion:reduce){
    .bg-footer *{transition:none!important}
}
