.footer {
    position: relative;
    z-index: 10;
    background-color: white;
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-col {
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-col-12 {
    width: 100%;
}

.footer-col-6 {
    width: 50%;
}

.footer-col-3 {
    width: 25%;
}

.footer-logo {
    display: inline-block;
    max-width: 160px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 100%;
}

.footer-text {
    font-size: 16px;
    color: #637381;
    margin-bottom: 30px;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.footer-contact svg {
    margin-right: 12px;
    color: #36383d;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 35px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-block;
    font-size: 16px;
    color: #637381;
    text-decoration: none;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #37393d;
}

.social-links {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    color: #1a1a1a;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #000000;
    background-color: #ffffff;
    color: white;
}

.footer-copyright {
    font-size: 16px;
    color: #637381;
}

.footer-shape-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.footer-shape-2 {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: -1;
}

@media (max-width: 1024px) {
    .footer-col-3 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .footer-col-3,
    .footer-col-6 {
        width: 100%;
    }
    
    .footer {
        padding-top: 60px;
        padding-bottom: 30px;
    }
} 