/* Footer Component Styles */

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5rem;
}

/* Footer */
.footer {
    background: #232323;
    color: white;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.footer-content {
    color: #676767;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-right: 0.5rem;
}

.footer-description {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 2rem;
}

.footer-language-select {
    margin-bottom: 2rem;
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 0.7px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 45px;
}

.footer-language-select select {
    background: transparent;
    color: white;
    border: none;
    font-size: 13px;
    font-weight: 800;
}

.footer-language-select select:focus-visible {
    outline: none;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link:hover svg{
    background: #555;
    border-radius: 50%;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column h5 {
    color: white;
    opacity: 56%;
    font-size: 16px;
    line-height: 23px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    margin-bottom: 2rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #777777;
    text-decoration: none;
    font-size: 16px;
}

.footer-column ul li a:hover {
    color: white;
}

.contact-location, .contact-details {
    margin-bottom: 1.5rem;
}

.footer-bottom {
    color: #777777;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: #777777;
    text-decoration: none;
}

.footer-legal a:hover {
    color: white;
}

.footer-powered span{
    font-weight: 700;
}

hr {
  border: none;
  height: 2px;
  background-color: #2f2f2f;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .container {
        padding: 0 2rem;
    }
}
