/* GENEL AYARLAR */
body { background-color: #f8f9fa; overflow-x: hidden; }

/* SLIDER TASARIMI */
#gunduzSlider { height: 500px; background: #000; position: relative; }

.slider-container {
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slider-blur {
    position: absolute;
    width: 115%; height: 115%;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.4);
    z-index: 1;
}

.slider-img {
    position: relative;
    z-index: 2;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* Resmin kesilmesini engeller */
}

.carousel-caption {
    z-index: 3;
    bottom: 20%;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.9);
}

/* CANLI HİZMET BUTONLARI */
.service-animated-btn {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none !important;
    color: #333;
    font-weight: 700;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-animated-btn:hover {
    background: #00468b;
    color: #fff !important;
    transform: translateY(-5px);
    border-color: #ffcc00;
}

.icon-box {
    width: 45px; height: 45px;
    background: #ffcc00;
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center; justify-content: center;
    margin-right: 15px;
    transition: 0.5s;
}

.service-animated-btn:hover .icon-box {
    transform: rotate(360deg);
    background: #fff;
    color: #00468b;
}

.underline {
    width: 50px; height: 4px;
    background: #ffcc00;
    margin-top: 10px;
}

.arrow-icon { margin-left: auto; transition: 0.3s; opacity: 0.5; }
.service-animated-btn:hover .arrow-icon { opacity: 1; transform: translateX(5px); }

/* MOBİL AYAR */
@media (max-width: 768px) {
    #gunduzSlider, .slider-container { height: 350px; }
    .btn-text { font-size: 0.85rem; }
    .icon-box { width: 35px; height: 35px; min-width: 35px; }
}
.btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text {
    line-height: 1.2;
    margin-bottom: 2px;
}

.service-animated-btn:hover .text-primary {
    color: #ffcc00 !important; /* Mavi arka planda sarı yazı parlasın */
}/* SOL ÜST BİLGİ KUTUSU */
.slider-info-box {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10; /* Resmin önünde dursun */
}

.info-content {
    background: rgba(0, 0, 0, 0.5); /* Siyah şeffaf arka plan */
    backdrop-filter: blur(10px); /* Cam efekti */
    padding: 15px 20px;
    border-left: 5px solid #ffcc00; /* Sol taraf sarı şerit */
    border-radius: 0 15px 15px 0;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.1rem;
}

/* MOBİLDE KÜÇÜLTME */
@media (max-width: 768px) {
    .slider-info-box {
        top: 10px;
        left: 10px;
    }
    .info-content {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
.info-content {
    max-width: 250px; /* Kutunun genişliğini sabitler, tren gibi uzamaz */
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-left: 4px solid #ffcc00;
    border-radius: 0 10px 10px 0;
    color: white;
}

.info-item span {
    white-space: nowrap; /* Yazının taşmasını engeller */
    overflow: hidden;
    text-overflow: ellipsis; /* Sığmazsa üç nokta koyar */
}
/* SAĞ ALT WHATSAPP BUTONU */
.fixed-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.fixed-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    background-color: #128c7e;
}

.fixed-whatsapp i {
    font-size: 24px;
}

.wa-text {
    font-weight: bold;
    font-size: 14px;
}

/* NAVBAR İLETİŞİM BUTONUNU GİZLEME (Eğer HTML'den silmediysen) */
.nav-link[href*="wa.me"] {
    display: none;
}.info-content {
    min-width: 200px;
    background: rgba(0, 0, 0, 0.7); /* Bir tık daha koyulaştırdım ki yazılar net okunsun */
    backdrop-filter: blur(8px);
    padding: 12px 15px;
    border-left: 4px solid #ffcc00;
    border-radius: 0 12px 12px 0;
}

.info-item small a:hover {
    text-decoration: underline !important;
    color: #fff !important;
}