#header-logo, #footer-logo {
    opacity: 0;
    transition: opacity 0.1s ease;
}
#header-logo.loaded, #footer-logo.loaded {
    opacity: 1;
}

#header-logo {
    max-height: 30px;
    width: auto;
}

#footer-logo {
    max-height: 43px;
    width: auto;
}

/* Bootstrap Collapse Menü Stilleri */
.menu ul li {
    position: relative;
}

.menu ul li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu ul li > a i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.menu ul li > a[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.menu .collapse {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
}

.menu .collapse li {
    list-style: none;
    margin: 0;
}

.menu .collapse li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.menu .collapse li:last-child a {
    border-bottom: none;
}

.menu .collapse li a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Mobil menü için özel stiller */
.navigation-off-canvas .collapse {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-left: 20px;
    margin-top: 10px;
}

.navigation-off-canvas .collapse li a {
    padding: 5px 0;
    border-bottom: none;
    color: #666;
}

/* Footer menü için özel stiller */
.footer .collapse {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-left: 20px;
    margin-top: 10px;
}

.footer .collapse li a {
    padding: 5px 0;
    border-bottom: none;
    color: #ccc;
}

.footer .collapse li a:hover {
    color: #fff;
    background: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .navigation .menu {
        display: none;
    }
}

/* Footer Sosyal Medya Stilleri */
.footer .social-media {
    margin-top: 0;
}

.footer .social-links {
    display: flex !important;
    flex-direction: column;
}

.footer .social-link {
    display: block !important;
    color: #ccc;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 14px;
    border-bottom: 1px solid #333;
    background: transparent !important;
    margin-bottom: 5px;
}

.footer .social-link:hover {
    color: #fff;
    transform: translateX(5px);
    background: transparent !important;
}

.footer .social-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.footer .social-link.facebook i {
    color: #3b5998;
}

.footer .social-link.instagram i {
    color: #e4405f;
}

.footer .social-link.linkedin i {
    color: #0077b5;
}

.footer .social-link.twitter i {
    color: #1da1f2;
}

.footer .social-link.youtube i {
    color: #ff0000;
}

/* İletişim sayfası sosyal medya stilleri */
.social-media-links {
    margin-top: 15px;
}

.social-item {
    margin-bottom: 10px;
}

.social-item .social-link {
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.social-item .social-link:hover {
    background: #007bff;
    color: #fff;
    transform: translateX(5px);
}

.social-item .social-link i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}
