footer.site-footer {
    background: #00427A;
    color: #fff;
    padding: 48px 0 48px 0;
    width: 100%;
}
.footer-container {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.footer-col {
    flex: 1 1 0;
    min-width: 180px;
    max-width: none;
    padding-left: 15px;
}
.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #FFB800;
}
.footer-address {
    color: #b8d0e8;
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 8px;
    justify-content: flex-end;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: #fff;
    font-size: 2.6rem;
    transition: color 0.2s;
    padding: 0;
}
.footer-social a:hover {
    color: #FFB800;
    background: none;
}
@media (max-width: 1024px) {
    .footer-container {
        width: 96%;
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        width: 98%;
        gap: 18px;
    }
    .footer-social {
        justify-content: flex-start;
        margin-bottom: 18px;
    }
} 
/* Contact Button */
.contact-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.contact-button i {
    font-size: 24px;
}

.contact-button:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Scroll to Top Button */
.scroll-top-button {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.scroll-top-button i {
    font-size: 20px;
}

.scroll-top-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 576px) {
    
    .contact-button, .scroll-top-button {
        width: 40px;
        height: 40px;
    }
    
    .contact-button {
        bottom: 70px;
        right: 15px;
    }
    
    .scroll-top-button {
        bottom: 15px;
        right: 15px;
    }
}