/* ==========================================================================
   Kidan Footer Widget - Multi-column footer layout
   ========================================================================== */

.kidan-footer {
    width: 100%;
    background-color: #00002c;
    padding: 20px 40px;
    position: relative;
}

/* Decorative Dots - Square shaped (no border-radius) */
.kidan-footer-dot {
    width: 8px;
    height: 8px;
    background-color: #0066FF;
    position: absolute;
}

/* Dots on vertical dividers */
.kidan-footer-divider .kidan-footer-dot:first-child {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.kidan-footer-divider .kidan-footer-dot:last-child {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.kidan-footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Columns */
.kidan-footer-column {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.kidan-footer-logo-column {
    flex-shrink: 0;
}

.kidan-footer-address-column,
.kidan-footer-contact-column,
.kidan-footer-social-column {
    flex: 1;
}

/* Logo */
.kidan-footer-logo {
    display: flex;
    align-items: flex-start;
}

.kidan-footer-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

/* Dividers */
.kidan-footer-divider {
    width: 1px;
    height: auto;
    min-height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    align-self: stretch;
    position: relative;
}

/* Section Titles */
.kidan-footer-section-title {
    font-family: 'Gantari', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

/* Text Content */
.kidan-footer-text {
    font-family: 'Gantari', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 8px 0;
}

.kidan-footer-text:last-child {
    margin-bottom: 0;
}

/* Address with Icon */
.kidan-footer-address-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.kidan-footer-address-icon {
    flex-shrink: 0;
    padding-top: 2px;
}

.kidan-footer-address-icon i,
.kidan-footer-address-icon svg {
    color: #0066FF;
    font-size: 16px;
}

.kidan-footer-address-text {
    flex: 1;
}

/* Contact Items */
.kidan-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.kidan-footer-contact-item:last-child {
    margin-bottom: 0;
}

.kidan-footer-contact-item i,
.kidan-footer-contact-item svg {
    color: #0066FF;
    font-size: 16px;
    flex-shrink: 0;
}

.kidan-footer-contact-link {
    font-family: 'Gantari', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kidan-footer-contact-link:hover {
    color: #FFFFFF;
}

/* Social Links */
.kidan-footer-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kidan-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kidan-footer-social-link:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
}

.kidan-footer-social-link i,
.kidan-footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* Bottom Line - Touching side borders with dots at ends */
.kidan-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0px !important;
    margin-left: -40px;
    margin-right: -40px;
    height: 30px;
    position: relative;
}

/* Bottom line dots positioned at the ends */
.kidan-footer-dot-left {
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.kidan-footer-dot-right {
    right: 0;
    top: 0;
    transform: translateY(-50%);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .kidan-footer-container {
        gap: 40px;
    }

    .kidan-footer {
        padding: 50px 30px;
    }

    .kidan-footer-section-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .kidan-footer-text,
    .kidan-footer-contact-link {
        font-size: 13px;
    }

    .kidan-footer-bottom {
        margin-left: -30px;
        margin-right: -30px;
    }
}

@media screen and (max-width: 768px) {
    .kidan-footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .kidan-footer-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
    }

    /* Reposition dots for horizontal dividers */
    .kidan-footer-divider .kidan-footer-dot:first-child {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .kidan-footer-divider .kidan-footer-dot:last-child {
        top: 50%;
        left: auto;
        right: 0;
        bottom: auto;
        transform: translateY(-50%);
    }

    .kidan-footer {
        padding: 40px 20px;
    }

    .kidan-footer-logo img {
        width: 120px;
    }

    .kidan-footer-section-title {
        font-size: 14px;
    }

    .kidan-footer-text,
    .kidan-footer-contact-link {
        font-size: 12px;
    }

    .kidan-footer-social-link {
        font-size: 16px;
    }

    .kidan-footer-social-link i,
    .kidan-footer-social-link svg {
        width: 16px;
        height: 16px;
    }

    .kidan-footer-dot {
        width: 6px;
        height: 6px;
    }

    .kidan-footer-bottom {
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media screen and (max-width: 480px) {
    .kidan-footer {
        padding: 30px 15px;
    }

    .kidan-footer-container {
        gap: 30px;
    }

    .kidan-footer-logo img {
        width: 100px;
    }

    .kidan-footer-bottom {
        margin-left: -15px;
        margin-right: -15px;
    }
}