/* Güncellenmiş Koyu Tema Footer Stili */
.main-footer {
    background: #2A2A2A;
    color: #E0E0E0;
    padding: 36px 0; /* 40px'ten 36px'e düşürüldü (%10 küçültme) */
    position: relative;
    margin-top: 60px;
    width: 100%;
    clear: both;
    z-index: 11;
    border-top: 1px solid #3A3A3A;
	min-height: 200px;
    margin-top: auto; /* Bu önemli */
}

.footer-title {
	color: #fff;
}

.view-wrapper {
    flex: 1; /* İçerik az olsa bile tüm alanı kaplar */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer-container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

/* Footer Marka Alanı */
.footer-brand {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
	filter: grayscale(1) brightness(1.9);
}

.footer-slogan {
    color: #A0A0A0;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    color: #E0E0E0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-brand .copyright {
    display: none; /* Orijinal copyright gizlendi */
}

/* Footer Linkleri */
.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: #FFFFFF;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 120px;
    height: 3px;
    background: #3d70b2;
    border-radius: 3px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #A0A0A0;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

/* İletişim Bilgileri */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #A0A0A0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info i {
    width: 16px;
    height: 16px;
    color: #3d70b2;
}

/* Bülten Formu */
.footer-newsletter {
    max-width: 300px;
    position: relative;
}

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #3A3A3A;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    background: #3A3A3A;
    color: #E0E0E0;
    transition: border 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #3d70b2;
}

.newsletter-form input::placeholder {
    color: #7A7A7A;
}

.subscribe-btn {
    background: #3d70b2;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-btn:hover {
    background: #5596e6;
}

.newsletter-text {
    color: #7A7A7A;
    font-size: 12px;
    line-height: 1.5;
}

.copyright {
    font-size: 13px;
    color: #7A7A7A;
    margin-top: 60px; /* CSS'deki ::after'dan bu kuralı taşıdık */
    display: block; /* Zaten <p> elementi block olduğu için gerek yok */
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-newsletter {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter {
        grid-column: span 1;
    }
    
    .footer-links {
        margin-bottom: 20px;
    }
}

/* Modal (arka plan) */
.modal-sozlesme {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
	
}

/* Modal içerik */
.modal-sozlesme .modal-content {
    background-color: #fefefe;
    margin: 50px auto; /* Üstten boşluk ve yatayda ortalama */
    padding: 20px;
    border-radius: 8px;
    width: 85%; /* Ekran genişliğinin %85'ini kaplasın */
    max-height: 80vh; /* Ekran yüksekliğinin %80'ini kaplasın */
    overflow-y: auto; /* Dikey kaydırma çubuğu ekle */
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

/* Kapat butonu */
.modal-sozlesme .modal-content .close {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-sozlesme .modal-content .close:hover,
.modal-sozlesme .modal-content .close:focus {
    color: black;
    text-decoration: none;
}

/* Modal içindeki başlık için stil */
.modal-sozlesme .modal-content h1 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-right: 30px; /* Kapat butonuna yer açmak için */
	font-weight:bold;
	font-size: 28px;
	
}

/* Modal içindeki başlık için stil */
.modal-sozlesme .modal-content h2 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-right: 30px; /* Kapat butonuna yer açmak için */
	font-weight:bold;
	font-size: 24px;
}

/* Modal içindeki paragraflar için stil */
.modal-sozlesme .modal-content p {
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.5;
}