.footer {
    display: flex;
    gap: 120px;
    padding-top: 40px;
    padding-bottom: 40px;
    background-image: linear-gradient(to right, #5a2f16, #450E07);
    color: white;
    padding-left: 70px;
    padding-right: 40px;
}

.footer-logo {
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 12px;
    display: inline-block;
}

.footer-logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
}


.links a{
    text-decoration: none;
    color: white;
}

.foot-left img{
    height: 150px;
    width: 220px;
    margin-bottom: 0;
}

.foot-left p{
    margin-top: 0;
    font-size: 18px;
}

h15{
    color: #d4a12b;
    font-size: 20px;
    font-weight: bolder;
}

.foot-right i {
    font-size: 20px;
    margin-right: 18px;
    cursor: pointer;
}

.foot-right i:last-child {
    margin-right: 0;
}

.foot-right2 {
    padding-top: 0;
}

.foot-right2 p {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.send-btn{
display:flex;
align-items:center;
justify-content:center;
gap:12px;
margin-top:20px;
width:100%;
padding:16px 30px;
font-size:20px;
font-weight:600;
border:none;
border-radius:18px;
cursor:pointer;
background:linear-gradient(90deg,#e4c98f,#c9955b);
color:#5b1e0d;
transition:all .35s ease;
}

.icon-wrapper{
width:28px;
height:28px;
background:white;
color:#c9955b;
border-radius:50%;
display:grid;
place-items:center;
position:relative;
overflow:hidden;
}

.icon{
width:12px;
transition:transform .3s ease;
}

.icon-copy{
position:absolute;
transform:translate(-150%,150%);
}

.send-btn:hover{
background:linear-gradient(90deg,#c9955b,#a8642d);
box-shadow:0 10px 25px rgba(201,149,91,0.4);
}

.send-btn:hover .icon:first-child{
transform:translate(150%,-150%);
}

.send-btn:hover .icon-copy{
transform:translate(0);
transition:transform .3s ease .1s;
}
