/* --- NEW THEME PREMIUM DARK MODE --- */
body, html {
    background-color: #0a0a0a !important;
    color: #ffffff !important;
}

/* Sayfa Başlıklarını Sarı Yapalım */
h1, h2, h3, strong {
    color: #ffcc00 !important;
}

/* Menü Linklerini Güzelleştir */
.mainNav1 a, .navigation a {
    color: #ffffff !important;
    transition: 0.3s;
}

.mainNav1 a:hover {
    color: #ffcc00 !important;
}

/* İçerik Alanını Temizle */
#content, #wrapper, .gutter {
    background: transparent !important;
    border: none !important;
}

/* BUTON EFEKTİ (YENİDEN) */
.taxi-call-btn {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    color: #000 !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
    animation: pulse 2s infinite;
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}