body {
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

main {
    flex: 1;
}

footer {
    flex-shrink: 0;
    background-color: #1f282c;
    color: #b0b8be;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #2e383d;
}

footer a {
    color: #b0b8be; /* Menü linkleri için daha açık bir ton */
    text-decoration: none;
    font-weight: 500;
    margin-right: 12px;
}

footer a:hover {
    color: #fff; /* Hover için canlı ama koyu zeminle dengeli bir mavi tonu */
    text-decoration: underline;
}


.navbar {
    background-color: #ffffff;
}

.navbar-brand {
    color: #1f282c;
    font-weight: 600;
    font-size: 24px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: #1f282c;
    padding: 8px 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    font-weight: 700;
    color: #1eb0cd;
}

/* Aktif menü rengi kırmızı */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active:hover {
    font-weight: 700;
    color: #1eb0cd !important;
}

.dropdown-menu {
    background-color: #1f282c;
    border: none;
    border-radius: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 0;
    z-index: 1000;
}

.nav-item.dropdown.show .dropdown-menu {
    display: block;
}

.dropdown-item {
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #1eb0cd;
    color: #ffffff;
}

.navbar-toggler {
    border: 2px solid #1eb0cd;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border-color: #1eb0cd;
}

.navbar-nav .nav-item {
    margin-right: 20px;
}

.customer-reviews .card {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  background: #fff;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-reviews .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* Üçgen ya da çıkıntı yok, tamamen kaldırıldı */

.customer-reviews .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.customer-reviews .card-text {
  flex-grow: 1;
  font-size: 1rem;
  color: #444;
}

.customer-reviews h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.customer-reviews small {
  color: #666;
}

.customer-reviews .text-warning {
  font-size: 1.2rem;
}

.customer-reviews .text-muted {
  font-size: 1.2rem;
}
