/* GENEL */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
}

/* HEADER LOGO ve NAVBAR */
.navbar-brand {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar .nav-link {
  color: #333;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #0d6efd;
}

/* ÜST BİLGİ (Koyu Şerit) */
header.bg-dark {
  font-size: 0.9rem;
}

/* SLIDER */
.carousel-inner img {
  object-fit: cover;
  height: 500px;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 0.5rem;
}

/* HİZMET KUTULARI */
.card {
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: scale(1.03);
}

/* HİZMET ALANLARI (ikonlar) */
.card-body img {
  max-height: 80px;
}

/* BAŞLIKLAR */
h2 {
  font-weight: 600;
  color: white;
}

/* ARAÇ KARTLARI */
.card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.card .card-text {
  font-size: 0.95rem;
}

/* HARİTA */
iframe {
  border: none;
  border-radius: 8px;
}

/* FOOTER */
footer {
  background-color: #212529;
  color: #fff;
  font-size: 0.9rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

/* BUTONLAR */
.btn-danger, .btn-success, .btn-outline-primary {
  font-weight: 500;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: white;
}
