body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Custom Input Styles */
.custom-radio:checked + div {
  border-color: #f5a623;
  background-color: #fffbeb;
  color: #1a2744;
}

.custom-focus:focus-within {
  ring: 2px;
  ring-color: #f5a623;
  ring-offset: 2px;
}

.logo {
  height: 10rem;
  width: 10rem;
  display: block;
  object-fit: contain;
  object-position: center;
}

.map-container {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 220px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  margin-top: 12px;
}

.map-heading {
  margin-top: 20px;
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.is-open {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: none;
  }
}

.booking-grid {
  align-items: stretch;
}

.booking-left {
  height: 100%;
}

.map-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 12px;
}

/* Rozwijane szczegóły w kartach usług */
.details-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 300ms ease, opacity 300ms ease, transform 300ms ease;
  pointer-events: none;
}

.details-inner {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.service-card.is-active .details-content {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Opcjonalnie: zmiana koloru ikony w tle gdy karta jest aktywna */
/* .service-card.is-active .icon-box {
  background-color: #f5a623;
  color: white;
} */
