/* Footer სტილები */
.site-footer {
    background-color: #2c7ba8;
    color: #ffffff;
    padding: 50px 20px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
    text-align: center;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #4CAF50;
    border-radius: 2px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* სოციალური ქსელები */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: #4CAF50;
    transform: translateY(-3px);
}

/* კონტაქტის ინფო */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-info li i {
    color: #4CAF50;
    width: 20px;
    text-align: center;
}

/* Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* რესპონსიული დიზაინი */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 15px 15px 15px;
        margin-top: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 22px;
    }

    .footer-column h4 {
        font-size: 17px;
    }

    .contact-info li {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 10px 10px 10px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}