/* Footer Stilleri */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Başlık Stilleri */
.footer .title-md {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem;
}

.footer .title-md::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Link Stilleri */
.footer-links {
    text-align: center;
}

.footer-link {
    transition: var(--transition);
    opacity: 0.9;
    display: inline-block;
    padding: 5px 10px;
    margin: 2px 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.footer-menu-item {
    text-align: center;
}

.footer-link:hover {
    opacity: 1;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* İletişim Bilgileri */
.footer-contact {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.footer-contact li {
    margin-bottom: 15px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer-contact i {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
    display: inline-block;
}

/* Alt Menü */
.footer-submenu {
    transition: height 0.3s ease;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}

.footer-submenu.active {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.footer-submenu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    padding: 4px 0;
    font-weight: 400;
    display: inline-block;
}

/* Hakkımızda Metni */
.footer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Sosyal Medya İkonları */
.social-icon {
    font-size: 1.5rem;
    transition: var(--transition);
    display: inline-block;
    margin: 0 10px;
    padding: 5px;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: #ffffff !important;
    text-decoration: none !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Sabit Butonlar */
.contact-buttons {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.contact-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    text-decoration: none !important;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.whatsapp-button {
    background: #25D366;
}

.phone-button {
    background: #dc3545;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .contact-buttons {
        left: 1rem;
        bottom: 1rem;
    }
    
    .contact-button {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Scroll Top Button */
.btn-scroll-top {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.btn-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
    background: #000;
}

.btn-scroll-top i {
    font-size: 1.2rem;
}

/* Telif Hakkı Bölümü */
.copyright-section {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-section small {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .copyright-section small {
        font-size: 0.8rem;
    }
}
