html {
  position: relative;
  min-height: 100%;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--color-primary, #B91C1C);
}

body {
  margin-bottom: 60px;
}

/* Cookie consent bar (KVKK) */
.cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  z-index: 1050;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.cookie-consent-bar a { color: #86b7fe; }
.cookie-consent-bar .btn-primary { white-space: nowrap; }

/* Skip-to-content link */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-primary, #B91C1C);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.skip-to-content:focus {
  left: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Contact map embed - iframe fills container */
.contact-map-embed .ratio iframe { width: 100%; height: 100%; left: 0; top: 0; position: absolute; }