

footer{
    max-width: 1200px;
    margin: 2rem auto;
    width: 100%;
    margin-top: 4rem;
    text-align: center;
}


.footer{
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 1.2rem;
    display: flex;
    justify-content: center;
    
    gap: 2rem;
}

.map-container{
    width: 50%;
    overflow: hidden;
    border-radius: 1rem;
}
.map-container iframe{
    height: 500px;
    border: none;
    object-fit: cover;
}
.footer-details{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
}

.footer-details p{
    font-size: 1rem;
    color: #555555;
    font-weight: 300;
    text-align: start;
}
.footer-details h2{
    font-size:1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.footer-details h2 span{
    font-size: 2.1rem;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--main-color);
}
.footer-details .f-btn{
    background: var(--bg-color);
    
            padding: .7rem 2rem;
            font-size: 1.2rem;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
}


.footer-details .f-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px #1092acb4;
}


.social1-icons{
    display: flex;
    gap: 1rem;
}


.social1-icons a{
    font-size: 1.5rem;
    color: var(--main-color);
    transition: color 0.3s ease;
    background-color: #fff;
    border-radius: 50%;
    padding: .5rem;
    box-shadow: 0 4px 10px #00000029;
}


.social1-icons a:hover {
    color: var(--bg-color)!important;
    box-shadow: 0 4px 10px #0000009b;
}

.contacts{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.contacts a{
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}


.contacts a:hover {
    transform: translateY(-5px);
    color: var(--main-color);
}

.socailSection{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}


.footerImg img{
    width: 170px;
    height: auto;
    transition: all 0.3s ease;
}

.footerImg img:hover{
    transform: scale(1.1);
}
.links{
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}


.links a{
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: #282828;
    transition: color 0.3s ease;
    position: relative;
}
.links a::after{
    content: '|';
    top: 0;
    position: absolute;
    right: -10px;
    color: #2f2f2f;
    transform: translate(50%,0);
}

.links a:hover {
    color: var(--main-color);
}


footer a{
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: color  0.3s ease;
    margin-bottom: 1.2rem;
}


footer a:hover{
    color: var(--main-color);
}


@media (max-width:786px) {
    footer{
        height: auto;
        padding: .5rem;
    }
    .footer{
        height: auto;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .footer-details{
        align-items: center;
        gap: .2rem;
    }
    .contacts{
        align-items: center;
        gap: .2rem;
    }
    .map-container, .footer-details{
        width: 100%;
    }
    .map-container iframe{
        height: 300px;
    }
    .footer-details p{
        text-align: center;
    }

    .socailSection{
        flex-direction: column;
        gap: 1rem;
    }
}


@media (max-width:480px) {
    .footer-details .f-btn{
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
    }
    .social1-icons a{
        font-size: 1.2rem;
    }
    .contacts a, .links a{
        font-size: 0.9rem;
    }
    .contacts{
        gap: .5rem;
    }
    footer a{
        font-size: 0.8rem;
    }
}