/**
 * KO Footer Widget Styles
 *
 * @package KO_Elementor_Addons
 */

/* Footer Container */
.ko-footer {
    width: 100%;
}

.ko-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer */
.ko-footer-main {
    width: 100%;
}

/* Footer Grid */
.ko-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Footer Columns */
.ko-footer-column {
    display: flex;
    flex-direction: column;
}

/* Column Titles */
.ko-footer-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* About Column */
.ko-footer-logo {
    margin-bottom: 20px;
}

.ko-footer-logo img {
    max-width: 100%;
    height: auto;
}

.ko-footer-site-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.ko-footer-about-text {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

/* Social Icons */
.ko-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ko-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ko-footer-social a svg {
    transition: fill 0.3s ease;
}

.ko-footer-social a:hover {
    transform: translateY(-3px);
}

/* Footer Links */
.ko-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ko-footer-links li {
    margin: 0;
}

.ko-footer-links a {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ko-footer-links a:hover {
    transform: translateX(4px);
}

/* Contact Items */
.ko-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ko-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ko-footer-contact-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.ko-footer-contact-icon svg {
    width: 100%;
    height: 100%;
}

.ko-footer-contact-text {
    font-size: 15px;
    line-height: 1.5;
}

.ko-footer-contact-text a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.ko-footer-contact-text a:hover {
    text-decoration: underline;
}

/* Copyright Bar */
.ko-footer-copyright {
    width: 100%;
}

.ko-footer-copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ko-footer-copyright-text {
    font-size: 14px;
}

.ko-footer-developer {
    font-size: 14px;
}

.ko-footer-developer a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.ko-footer-developer a:hover {
    text-decoration: underline;
}

/* Responsive - Tablet */
@media screen and (max-width: 1024px) {
    .ko-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .ko-footer-about {
        grid-column: span 2;
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {
    .ko-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ko-footer-about {
        grid-column: span 1;
        text-align: center;
    }

    .ko-footer-social {
        justify-content: center;
    }

    .ko-footer-column {
        text-align: center;
    }

    .ko-footer-links a:hover {
        transform: none;
    }

    .ko-footer-contact-item {
        justify-content: center;
    }

    .ko-footer-copyright-inner {
        flex-direction: column;
        text-align: center;
    }
}
