.site-footer {
    background: #1e3a5f;
    color: #fff;
    padding-top: 70px;
}

.footer-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.4fr;
    gap: 60px;
    padding: 0 20px 60px;
}

.footer-col h2,
.footer-gallery h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0px;
}

.footer-col li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.copyright {
    text-align: center;
    padding: 25px;
    background: #162e4d;
}

@media(max-width:991px) {
    .footer-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .footer-col li {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {

    .footer-col h2,
    .footer-gallery h2 {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Modal CSS */
.kc-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding: 40px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.kc-lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.kc-lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.kc-lightbox-modal.show .kc-lightbox-content {
    transform: scale(1);
}

.kc-lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f5f9;
    font-size: 40px;
    font-weight: 300;
    transition: color 0.2s ease;
    cursor: pointer;
    line-height: 1;
}

.kc-lightbox-close:hover {
    color: #cbd5e1;
}

#kc-lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #e2e8f0;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-grid img {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover {
    transform: translateY(-4px) scale(1.03);
    filter: brightness(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Lightbox Navigation Buttons */
.kc-lightbox-prev,
.kc-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #f1f5f9;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
    z-index: 100000;
}

.kc-lightbox-prev:hover,
.kc-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.kc-lightbox-prev:active,
.kc-lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

.kc-lightbox-prev {
    left: 30px;
}

.kc-lightbox-next {
    right: 30px;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .kc-lightbox-prev,
    .kc-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .kc-lightbox-prev {
        left: 10px;
    }
    
    .kc-lightbox-next {
        right: 10px;
    }
}