/* =========================
   GLOBAL
========================= */

:root {
    --bs-primary: #3b5998;
    --bs-primary-rgb: 59, 89, 152;
    --bs-warning: #ffa700;
    --bs-warning-rgb: 255, 167, 0;
    --bs-success: #008744;
    --bs-success-rgb: 0, 135, 68;
    --bs-danger: #d62d20;
    --bs-danger-rgb: 214, 45, 32;
    --bs-link-color: #3b5998;
    --bs-link-hover-color: #2f477b;
    --bs-body-font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url('/images/login-register.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* overlay */
body::before {
    content: "";
    position: fixed; 
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);

    z-index: 0;
    pointer-events: none; 
}

.modal-backdrop {
    z-index: 0 !important;
}

.contact-card {
    max-width: 500px;
    margin: auto;
}

/* container */
.main-container {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* =========================
   NAVBAR (MODERN)
========================= */
.navbar {
    z-index: 3;
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,0.4) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* links */
.navbar-nav .nav-link {
    position: relative;
    padding: 8px 14px;
    border-radius: 10px;
    color: #fff !important;
    font-size: 14px;
    transition: 0.3s;
}

/* hover */
.navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.15);
}

/* underline animation */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

/* active */
.navbar-nav .active {
    background: rgba(255,255,255,0.2);
}

/* highlight */
.navbar-nav .highlight {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #000 !important;
    font-weight: 500;
}

.navbar-nav .highlight:hover {
    transform: scale(1.05);
}

/* hamburger */
.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* mobile menu */
@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 10px;
        margin-top: 10px;
    }

    .navbar-nav {
        gap: 6px;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: left;
    }
}

/* =========================
   LOGO
========================= */
.logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 5px;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* =========================
   CARD (GLASS)
========================= */
.card {
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: none;
    color: #fff;
}

/* inputs */
.form-control {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
}

.form-control::placeholder {
    color: #ddd;
}

/* button */
.btn-custom {
    border-radius: 12px;
    padding: 12px;
}

/* =========================
   STATS
========================= */
.stat-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px;
    color: #fff;
    transition: 0.3s;
}

.stat-box i {
    font-size: 18px;
    opacity: 0.8;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

.stat-box:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.15);
}

/* =========================
   BARO SLIDER
========================= */

.slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;

    animation: scroll 35s linear infinite;
}

/* 🔥 LOGO */
.slider-track img {
    width: 60px;
    height: 60px;
    object-fit: contain;

    background: #fff;
    border-radius: 10px;
    padding: 6px;

    transition: transform 0.3s ease;
}

/* hover */
.slider-track img:hover {
    transform: scale(1.15);
}
.slider-track:hover {
    animation-play-state: paused;
}
/* 🔥 ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .slider-track {
        gap: 8px;
    }

    .slider-track img {
        width: 45px;
        height: 45px;
    }
}

/* 💻 LARGE */
@media (min-width: 1200px) {
    .slider-track img {
        width: 70px;
        height: 70px;
    }
}

/* =========================
   FOOTER
========================= */
.bottom-area {
    text-align: center;
    padding-bottom: 10px;
    z-index: 2;
}

footer {
    z-index: 3;
}

/* =========================
   KVKK
========================= */
.kvkk-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 15px;
}

.kvkk-card {
    max-width: 900px;
    width: 100%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    color: #fff;
}

.kvkk-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.kvkk-content {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.kvkk-content::-webkit-scrollbar {
    width: 6px;
}

.kvkk-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

/* =========================
   HARİTA (CITY)
========================= */
.city {
    fill: #CCCCCC;
    stroke: white;
    stroke-width: 0.5;
    transition: all .3s ease-out;
    cursor: pointer;
}

.city:hover {
    fill: #a9a9a9;
}

.cityD {
    fill: red;
    stroke: white;
    stroke-width: 0.5;
    cursor: pointer;
}
#svg-turkey-map path:hover {
    fill: #000 !important; /* siyah */
    transition: 0.2s;
}

.show-city-name {
    background-color: #f39c12;
    border-radius: 10px;
    color: #fff;
    position: absolute;
    padding: 10px 15px;
    opacity: 0;
    visibility: hidden;
}

.il-isimleri {
    position: absolute;
    z-index: 2;
}





/* =========================
   GÜNLÜK ÇAĞRILAR
========================= */



.call-list {
    max-height: 60vh; /* ekranın %60'ı */
    overflow-y: auto;
    padding-right: 5px;
}

/* satır */
.call-row {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 12px;
    color: #fff;
    margin-bottom: 10px;
    transition: 0.3s;
}

.call-row:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* scrollbar (şık) */
.call-list::-webkit-scrollbar {
    width: 6px;
}

.call-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}
