/* Footer Genel Stiller */
.footer-brand .brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-brand .brand-icon svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
}

.footer-brand .brand-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    z-index: 1;
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.footer-brand span {
    font-family: var(--font-primary);
}

/* Footer Bağlantılar */
.footer a.text-muted {
    transition: color 0.3s ease;
}

.footer a.text-muted:hover {
    color: var(--primary-color) !important;
}

/* Footer Sosyal Medya İkonları */
.footer .bi-facebook:hover {
    color: #1877f2 !important;
}

.footer .bi-twitter:hover {
    color: #1da1f2 !important;
}

.footer .bi-instagram:hover {
    color: #e4405f !important;
}

.footer .bi-linkedin:hover {
    color: #0077b5 !important;
}

/* Abone Ol Butonu ve Form */
.footer-subscribe-btn {
    height: 58px !important;  /* input yüksekliğiyle eşit */
    width: 100% !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
}

/* Form ve input alanlarının border-radius değerleri */
.footer .form-control {
    border-radius: 0.375rem !important; /* Buton ile aynı border-radius değeri */
}

/* Cookie Consent Bar */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    z-index: 1050;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    opacity: 0;
}

.cookie-consent-bar.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-text {
    margin-right: 20px;
    margin-bottom: 10px;
    color: #4b5563;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: none;
}

/* Responsive Düzenlemeler */
@media (max-width: 767.98px) {
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .footer-subscribe-btn {
        height: 46px !important;
        margin-top: 8px !important;
    }
    
    .form-floating > .form-control {
        height: 46px !important;
        padding-top: 1rem !important;
        padding-bottom: 0.25rem !important;
    }
    
    .form-floating > label {
        padding-top: 0.5rem !important;
    }
}