/* Footer */
.boru-footer {
    background: #4ECDC4;
    color: white;
    margin: 0;
    padding: 0;
}

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

/* Footer Grid */
.boru-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 0;
    padding: 0;
    align-items: start;
}

.boru-footer-grid .boru-footer-column:nth-child(2),
.boru-footer-grid .boru-footer-column:nth-child(3) {
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 40px;
}

.boru-footer-grid .boru-footer-column:nth-child(2) h3,
.boru-footer-grid .boru-footer-column:nth-child(3) h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

/* Footer Column */
.boru-footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.boru-footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: white;
}

/* Logo */
.boru-footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.boru-footer-logo img {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.boru-footer-logo a:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Footer Content */
.boru-footer-content {
    line-height: 1.8;
}

.boru-footer-content p {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
}

.boru-footer-content strong {
    font-weight: 600;
}

/* Contact Items */
.boru-footer-contact-item {
    margin-bottom: 15px;
}

.boru-footer-contact-item a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    margin: -8px -12px;
    border-radius: 4px;
}

.boru-footer-contact-item a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.boru-footer-contact-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Footer Bottom */
.boru-footer-bottom {
    background: #333;
    padding: 20px;
    margin: 40px 0 0 0;
}

.boru-footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.boru-footer-bottom-left,
.boru-footer-bottom-right {
    color: #ccc;
}

.boru-footer-bottom-left p,
.boru-footer-bottom-right p {
    margin: 0;
    font-size: 14px;
}

.boru-footer-bottom-right {
    text-align: right;
}

.boru-footer-bottom-right a {
    color: #4ECDC4;
    text-decoration: none;
    transition: color 0.3s;
}

.boru-footer-bottom-right a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .boru-footer-container {
        padding: 40px 20px 0 20px;
    }

    .boru-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
    }

    .boru-footer-grid .boru-footer-column:nth-child(2),
    .boru-footer-grid .boru-footer-column:nth-child(3) {
        border-left: none;
        padding-left: 0;
    }

    .boru-footer-logo {
        justify-content: center;
    }

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

    .boru-footer-bottom-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .boru-footer-bottom-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .boru-footer-container {
        padding: 30px 15px 0 15px;
    }

    .boru-footer-grid {
        gap: 20px;
    }

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

    .boru-footer-content p,
    .boru-footer-contact-item a {
        font-size: 14px;
    }

    .boru-footer-logo img {
        height: 80px;
    }
}