html, body {
    height: 100%;
    margin: 0;
}

/* Body'yi bir kutu gibi düşünelim */
body {
    display: flex;
    flex-direction: column;
}

/* Main alanına 'bulduğun tüm boşluğu kapla' diyoruz */
main {
    flex: 1;
}

/* Footer her zaman en altta kalacak */
footer {
    margin-top: auto;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
/* Navbar İlk Hali */
.navbar {
    transition: all 0.4s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
}
nav.navbar {
    background-color: #0d47a1;
}
/* Kaydırıldığındaki Hali */
.navbar-scrolled {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    background-color: rgba(13, 71, 161, 0.95) !important; /* Hafif şeffaf koyu mavi */
    backdrop-filter: blur(10px); /* Arka planı hafif bulanıklaştırır (Modern görünüm) */
}

.hover-shadow:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* WhatsApp Genel Stil */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Mobil Arama Barı Stil */
.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #dc3545; /* Bootstrap Red */
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.mobile-call-bar a {
    display: block;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Mobil Uyumluluk Ayarları */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 85px; /* Arama barının üzerinde durması için yükselttik */
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    body {
        padding-bottom: 60px; /* Sayfanın en alt içeriği barın altında kalmasın */
    }
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important; /* Üzerine gelince sarımtırak bir renk ile dikkat çeker */
    transition: 0.3s;
}