.footer {
    float: left;
    width: 100%;
    background: var(--color-brand-strong);
    padding: 40px 0px;
    box-sizing: border-box;
    border-top:18px solid var(--color-brand-primary);
    margin-top:30px;
    padding-bottom:0px;
}
.column {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.colum .title {
    float: left;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    position:relative;
}
.colum .title:before{
    position:absolute;
    content:"";
    left:0;
    bottom:-5px;
    width:60px;
    height: 2px;
    background:var(--color-brand-primary);
}
.colum span {
    float: left;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}
.colum {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    box-sizing: border-box;
    width: 25%;
}
.colum .phone-f {
    color: #fff;
    font-size: 13px;
    padding-left: 27px;
    box-sizing: border-box;
    margin-bottom: 15px;
    position: relative;
}
.colum .phone-f:hover, .colum .phone-mobile:hover, .email:hover {
    color:var(--color-brand-primary);
}
.colum .phone-f:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url(../img/phone-f.svg) no-repeat center;
    background-size: 15px;
}
.colum .phone-mobile, .colum .phone-mobile-icon {
    color: #fff;
    font-size: 13px;
    margin-bottom: 5px;
    position: relative;
    padding:10px;
    padding-left: 40px;
    width:130px;
    border:2px solid #fff;
    border-radius:50px;

}
.colum .phone-mobile:hover, .colum .phone-mobile-icon:hover {
    border:2px solid var(--color-brand-primary);
}
.colum .phone-mobile-icon:before {
    position: absolute;
    content: "";
    left: 10px;
    top: 7px;
    width: 20px;
    height: 20px;
    background: url(../img/phone-new.svg) no-repeat center;
    background-size: 18px;
}
.colum .phone-mobile-icon:hover:before {
    position: absolute;
    content: "";
    left: 10px;
    top: 7px;
    width: 20px;
    height: 20px;
    background: url(../img/phone-new-hover.svg) no-repeat center;
    background-size: 18px;
}
.email {
    float: left;
    width: 100%;
    margin-top: 5px;
    color: #fff;
    font-size: 13px;
    padding-left: 27px;
    box-sizing: border-box;
    position: relative;
}
.first-email.email:before {
    position: absolute;
    content: "";
    left: 0;
    top: -4px;
    width: 25px;
    height: 25px;
    background: url(../img/email.svg) no-repeat center;
    background-size: 16px;
}
.inp-f{
    float:left;
    width:100%;
    position:relative;
}
.inp-f input{
    float:left;
    width:100%;
    height: 45px;
    background:#fff;
    border:none;
    padding-left:10px;
    box-sizing:border-box;
}
.inp-f button{
    position:absolute;
    right:0;
    top:0;
    width:45px;
    height: 45px;
    background:var(--color-brand-primary) url("../img/send-f.svg") no-repeat center;
    background-size:80%;
    padding:10px;
    box-sizing:border-box;
    border:none;
}
.bottom-footer{
    float:left;
    width:100%;
    border-top:1px solid #fff;
    margin-top:30px;
        height: 60px;
    line-height: 60px;
    display: flex;
    justify-content: space-between;
}
.bottom-footer span{
   color:#fff;
   font-size:13px;
}
.bottom-footer a{
    color:#fff;
    font-size:13px;
}
.colum .soc-wrap{
    padding-left:0px !important;
    margin-top:0px !important;
    justify-content: flex-start;
}
.mobile-phone-icon {
    display: none;
}

@media screen and (max-width: 1024px) {
   .mobile-phone-icon {
       display: flex;
       align-items: center;
       justify-content: center;
       position: fixed;
       width: 60px;
       height: 60px;
       bottom: 20px;
       right: 15px;
       z-index: 999;
       background: var(--color-brand-primary); /* Основен цвят на DiMardes */
       border-radius: 100%;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
       animation: pulse 2s infinite;
   }

   .mobile-phone-icon img {
       filter: brightness(0) invert(1); /* Бяла иконка */
       margin-top: 2px;
   }

   /* Пулсиращ оранжев ефект */
   @keyframes pulse {
       0% {
           box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.7);
       }
       50% {
           box-shadow: 0 0 0 15px rgba(255, 140, 66, 0);
       }
       100% {
           box-shadow: 0 0 0 0 rgba(255, 140, 66, 0);
       }
   }

   .mobile-phone-icon:hover {
       transform: scale(1.1);
       background: var(--color-brand-hover); /* По-тъмен оранжев при ховър */
       transition: all 0.3s ease;
   }
}
