/**
 * Footer Styles - NEF Style
 * Nef.com.tr ile birebir aynı UI/UX
 * Detaylı analiz edilmiş ve kopyalanmış
 */

/* ============================================
   BREADCRUMB (NEF Style)
   ============================================ */
.breadCrumb {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.breadCrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadCrumb ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadCrumb ul li a,
.breadCrumb ul li span.active {
    color: #1D1D1B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.breadCrumb ul li a:hover {
    color: var(--color-accent, #000);
}

.breadCrumb ul li.uk-icon {
    display: flex;
    align-items: center;
    color: #1D1D1B;
    opacity: 0.5;
}

.breadCrumb ul li.uk-icon svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   FOOTER MAIN SECTION
   ============================================ */
footer {
    background: #1D1D1B;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

footer section {
    padding: 60px 0 0;
    background: #1D1D1B;
}

footer .uk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer .uk-container-xlarge {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   FOOTER LOGO
   ============================================ */
.footerLogo {
    margin-bottom: 40px;
    text-align: center;
}

.footerLogo a {
    display: inline-block;
    text-decoration: none;
}

.footerLogo .footer-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footerLogo .footer-logo:hover {
    opacity: 0.8;
}

/* ============================================
   SOCIAL ICONS
   ============================================ */
.socialIcons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.socialIcons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.socialIcons a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.socialIcons a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.socialIcons a span svg {
    width: 20px;
    height: 20px;
    max-width: 100%;
    max-height: 100%;
}

.socialIcons a span svg path {
    fill: #fff;
    transition: fill 0.3s ease;
}

.socialIcons a:hover span svg path {
    fill: #fff;
}

/* ============================================
   FOOTER MENU
   ============================================ */
.footerMenu {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footerMenu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-family: monospace;
}

.footerMenu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.footerMenu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footerMenu a:hover::after {
    width: 100%;
}

/* ============================================
   CALL BUTTON (NEF Style)
   ============================================ */
.callButton {
    margin-bottom: 40px;
    text-align: center;
}

.nef-button-light {
    display: inline-block;
}

.nef-button-light a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    /* background: #fff; */
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.nef-button-light a:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.nef-button-light a .uk-icon {
    display: flex;
    align-items: center;
}

.nef-button-light a .uk-icon svg {
    width: 12px;
    height: 12px;
}

.nef-button-light a .uk-icon svg path {
    fill: white;
    transition: fill 0.3s ease;
}

.nef-button-light a:hover .uk-icon svg path {
    fill: #fff;
}

/* ============================================
   MAIL LINKS
   ============================================ */
.mailLinks {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.mailLinks a {
    color: #595959;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
    font-family: MONOSPACE;
}

.mailLinks a:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

/* ============================================
   COPYRIGHT SECTION
   ============================================ */
.copyRight {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.copyRight a {
    color: #858585 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    footer section {
        padding: 40px 0 0;
    }
    
    .footerLogo {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .socialIcons {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footerMenu {
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .callButton {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .mailLinks {
        text-align: center;
        margin-bottom: 30px;
        flex-direction: column;
        gap: 12px;
    }
    
    .copyRight {
        padding: 20px 0;
    }
    
    .breadCrumb {
        padding: 15px 0;
    }
    
    .breadCrumb ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footerMenu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mailLinks {
        align-items: center;
    }
    
    .copyRight a {
        font-size: 12px;
    }
}

/* ============================================
   CONTAINER NEF (NEF specific container)
   ============================================ */
.container-nef {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
