:root {
  color-scheme: light;
  --color-bg-body: #f8fafc;
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
  --color-primary: #2563eb;
  --color-primary-soft: #dbeafe;
  --color-primary-dark: #1d4ed8;
  --color-accent: #0ea5e9;
  --radius-xl: 1.25rem;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16.5px;
  line-height: 1.5;
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.hero-title,
.section-title,
.brand-text-title,
.step-title,
.btn-pill-primary,
.btn-pill-outline,
.btn-full-primary,
.btn-fleet-nav,
.btn-contact-primary {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}
/* Top bar */
.top-bar {
  background: var(--color-primary);
  color: #e0f2fe;
  font-size: 11px;
}
.top-bar a {
  color: #e0f2fe;
  font-weight: 600;
}
.top-bar a:hover {
  color: #f9fafb;
}
.top-bar-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 6px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}
/* Header / nav */
.site-header {
  z-index: 1040;
}
#mainNav {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.nav-scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background-color: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(18px);
}
.brand-text-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.brand-text-subtitle {
  font-size: 11px;
  color: #64748b;
}
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.nav-link-custom {
  font-size: 14px;
  font-weight: 500;
  color: #1f2933;
  padding: 0;
}
.nav-link-custom:hover {
  color: var(--color-primary-dark);
}
.btn-pill-primary {
  border-radius: 999px;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 0.45rem 1.4rem;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}
.btn-pill-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}
.btn-pill-outline {
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background-color: #fff;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 0.45rem 1.4rem;
}
.btn-pill-outline:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}
.mobile-toggle-btn {
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  padding: 0.4rem 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.mobile-toggle-lines span {
  display: block;
  height: 2px;
  background-color: #020617;
  border-radius: 999px;
}
.mobile-toggle-lines span:first-child {
  width: 20px;
  margin-bottom: 4px;
}
.mobile-toggle-lines span:last-child {
  width: 16px;
}
#mobileMenu {
  display: none;
}
#mobileMenu.show {
  display: block;
}
/* Hero section */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
          to right,
          rgba(0, 0, 0, 0.75),
          rgba(0, 0, 0, 0.25)
  );
}
.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(226, 232, 240, 0.4);
  color: #e5f3ff;
  font-size: 12px;
  font-weight: 500;
}
.badge-hero-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}
.hero-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #f9fafb;
}
.hero-text {
  font-size: 15px;
  color: #e5f3ff;
  max-width: 32rem;
}
.hero-stats dt {
  font-weight: 600;
  color: #f9fafb;
  font-size: 13px;
}
.hero-stats dd {
  margin-bottom: 0;
  color: #e5e7eb;
  font-size: 13px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.form-label-small {
  font-size: 11px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.15rem;
}
.form-control-quiet {
  font-size: 14px;
  border-radius: 0.6rem;
  border-color: #cbd5e1;
  padding: 0.45rem 0.75rem;
}
.form-control-quiet::placeholder {
  color: #94a3b8;
}
.form-control-quiet:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
}
.btn-full-primary {
  border-radius: 999px;
  border: none;
  width: 100%;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 0.55rem 1rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
.btn-full-primary:hover {
  background-color: var(--color-primary-dark);
  color: #fff;
}
.hero-note {
  font-size: 11px;
  color: #6b7280;
}
.map-btn {
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  padding: 0.2rem 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.map-btn-icon {
  width: 14px;
  height: 14px;
  display: block;
  color: #1f2937;
}
.map-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}
/* Sections */
.section-light {
  background-color: #ffffff;
}
.section-muted {
  background-color: #f1f5f9;
}
.section-title {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.section-lead {
  color: var(--color-text-muted);
  max-width: 40rem;
  font-size: 14.5px;
}
.card-feature {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
.card-feature img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  object-position: 50% 60%;
  display: block;
}
.card-feature-body {
  padding: 1.1rem 1.3rem 1.3rem;
}
.card-feature h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #0f172a;
}
.card-feature p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
/* Services: force 5 cards in one row on large screens */
@media (min-width: 1200px) {
  #dokad-jezdzimy .row.g-3.g-md-4 > [class*="col-"] {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.card-service {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  height: 100%;
  overflow: hidden;
}
.card-service-media {
  position: relative;
}
.card-service img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.card-service-country {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}
.card-service-body {
  padding: 1.1rem 1.3rem 1.3rem;
}
.card-service h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #0f172a;
}
.card-service p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.card-service ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}
.card-service li {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 0.15rem;
}
/* Fleet scroller */
.fleet-scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
}
.fleet-card {
  min-width: 260px;
  max-width: 280px;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  flex-shrink: 0;
}
.fleet-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.fleet-card-body {
  padding: 1rem 1.1rem 1.1rem;
  font-size: 14px;
}
.fleet-card-body h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
.fleet-card-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}
.fleet-card-body ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}
.fleet-card-body li {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 0.15rem;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.btn-fleet-nav {
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #1e293b;
  font-size: 12px;
  padding: 0.25rem 0.85rem;
}
.btn-fleet-nav:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}
/* Schedule / how to order */
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 3px;
}
.step-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.1rem;
}
.step-text {
  font-size: 14px;
  color: var(--color-text-muted);
}
.schedule-card-img {
  height: 260px;
  object-fit: cover;
  object-position: 50% 35%;
  width: 100%;
}
.schedule-card {
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.16);
}
/* Reviews & FAQ */
.review-card,
.faq-card {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  padding: 1.2rem 1.3rem;
  font-size: 14px;
  height: 100%;
}
.faq-question {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}
.faq-icon {
  margin-left: 0.75rem;
  font-size: 18px;
  color: #94a3b8;
}
.faq-answer {
  font-size: 14px;
  color: var(--color-text-muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}
.faq-answer.open {
  max-height: 260px;
  opacity: 1;
  margin-top: 0.35rem;
}
.hidden {
  display: none !important;
}
/* Contact section */
.contact-section {
  background-color: #020617;
  color: #e5e7eb;
}
.contact-section h2,
.contact-section h3 {
  color: #f9fafb;
}
.contact-muted {
  color: #94a3b8;
  font-size: 13px;
}
.contact-card {
  border-radius: 1.4rem;
  border: 1px solid #1f2937;
  background-color: rgba(15, 23, 42, 0.85);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 1.6rem 1.8rem;
}
.contact-form-label {
  font-size: 11px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.15rem;
}
.contact-input,
.contact-textarea,
.contact-select {
  font-size: 14px;
  border-radius: 0.6rem;
  border: 1px solid #374151;
  padding: 0.45rem 0.75rem;
  background-color: rgba(15, 23, 42, 0.7);
  color: #f9fafb;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #6b7280;
}
.contact-input:focus,
.contact-textarea:focus,
.contact-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.55);
  outline: none;
  background-color: #020617;
  color: #f9fafb;
}
/* Pola daty w formularzu kontaktowym – natywne zachowanie */
.contact-input[type="date"] {
  color-scheme: dark;
}
.contact-checkbox {
  width: 14px;
  height: 14px;
  margin-top: 2px;
}
.btn-contact-primary {
  border-radius: 999px;
  background-color: #3b82f6;
  border: none;
  color: #f9fafb;
  font-size: 14px;
  font-weight: 600;
  padding: 0.55rem 1.5rem;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}
.btn-contact-primary:hover {
  background-color: #60a5fa;
  color: #ffffff;
}
.map-placeholder {
  border-radius: 1.2rem;
  border: 1px solid #1f2937;
  background-color: #020617;
  font-size: 12px;
  color: #9ca3af;
}
/* Form validation helper classes (zastępnik Tailwind) */
.border-red-500 {
  border-color: #ef4444 !important;
}
.ring-1 {
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.6);
}
.ring-red-400 {
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.7);
}
.ring-blue-300 {
  box-shadow: 0 0 0 1px rgba(147, 197, 253, 0.8);
}
.bg-red-100 {
  background-color: #fee2e2;
}
.border-red-200 {
  border-color: #fecaca;
}
.text-red-800 {
  color: #991b1b;
}
.bg-blue-100 {
  background-color: #dbeafe;
}
.border-blue-300 {
  border-color: #93c5fd;
}
.text-blue-800 {
  color: #1e40af;
}
.bg-green-100 {
  background-color: #dcfce7;
}
.border-green-300 {
  border-color: #86efac;
}
.text-green-800 {
  color: #166534;
}
/* Alert box */
#formAlert {
  font-size: 11px;
  border-radius: 0.75rem;
}
/* Cookie banner */
.cookie-banner {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 360px;
  background-color: #0f172a;
  color: #e5e7eb;
  padding: 1.05rem 1.25rem 1.1rem;
  border-radius: 1rem;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.7);
  font-size: 13px;
  line-height: 1.5;
  z-index: 1050;
}
.cookie-banner p {
  margin-bottom: 0.5rem;
}
.cookie-banner a {
  color: #bfdbfe;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner a:hover {
  color: #e5efff;
}
.cookie-banner .cookie-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.35rem;
}
.cookie-banner .btn-pill-primary {
  padding: 0.3rem 0.9rem;
  font-size: 12px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.5);
}
@media (max-width: 575.98px) {
  .cookie-banner {
    right: 0.75rem;
    left: 0.75rem;
    max-width: none;
  }
}
/* Map picker modal */
.map-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}
.map-modal {
  background: #ffffff;
  border-radius: 1rem;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.4);
  overflow: hidden;
}
.map-modal-header {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.map-modal-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.map-modal-close {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
}
.map-modal-close:hover {
  color: #4b5563;
}
.map-modal-body {
  padding: 0;
}
.map-search-bar {
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.map-search-input {
  flex: 1;
  font-size: 13px;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  padding: 0.3rem 0.6rem;
}
.map-search-input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.35);
}
.map-search-btn {
  font-size: 13px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: none;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
}
.map-search-btn:hover {
  background-color: var(--color-primary-dark);
  color: #ffffff;
}
.map-search-results {
  max-height: 160px;
  overflow-y: auto;
  padding: 0.25rem 1.25rem 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 13px;
  background-color: #f9fafb;
}
.map-search-result {
  padding: 0.3rem 0.25rem;
  cursor: pointer;
  border-radius: 0.35rem;
}
.map-search-result:hover {
  background-color: #e5edff;
}
.map-search-result-main {
  font-weight: 500;
  color: #111827;
}
#mapPicker {
  width: 100%;
  height: 320px;
}
.map-modal-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #e5e7eb;
  font-size: 12px;
  color: #6b7280;
}
.map-modal-footer #mapUseAddressBtn {
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .map-modal-footer #mapUseAddressBtn {
    margin-left: 0.75rem;
  }
}
/* Section fade-in animation */
.section-fade {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Footer */
footer {
  border-top: 1px solid #e2e8f0;
  background-color: #ffffff;
  font-size: 12px;
  color: #6b7280;
}
footer a {
  color: #6b7280;
}
footer a:hover {
  color: #111827;
}
/* Utilities */
.text-xs {
  font-size: 11px;
}
.text-sm {
  font-size: 13px;
}
.w-100p {
  width: 100%;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.social-link-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  background-color: #020617;
  font-size: 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-link-circle:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
  text-decoration: none;
}
/* Inline address suggestions under inputs */
.address-suggestions {
  margin-top: 0.25rem;
  border-radius: 0.6rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  font-size: 13px;
  max-height: 180px;
  overflow-y: auto;
  z-index: 20;
}
.address-suggestion {
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}
.address-suggestion + .address-suggestion {
  border-top: 1px solid #e5e7eb;
}
.address-suggestion:hover {
  background-color: #eff6ff;
}
/* Phone country selector in contact form */
.country-select-wrapper {
  position: relative;
}
.country-btn {
  border-radius: 0.6rem 0 0 0.6rem;
  border: 1px solid #374151;
  background-color: #020617;
  color: #e5e7eb;
  padding: 0.35rem 0.6rem;
  font-size: 12px;
}
.country-btn:hover {
  background-color: #020617;
  border-color: #4b5563;
  color: #ffffff;
}
.country-flag {
  font-size: 14px;
  line-height: 1;
}
.country-dial {
  font-size: 12px;
}
/* Hide dial text inside country button so user sees only the flag */
.country-btn .country-dial {
  display: none;
}
.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  min-width: 220px;
  max-height: 260px;
  overflow-y: auto;
  background-color: #020617;
  border-radius: 0.75rem;
  border: 1px solid #374151;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  padding: 0.35rem 0.4rem;
  font-size: 13px;
  color: #e5e7eb;
  z-index: 40;
}
.country-dropdown-section + .country-dropdown-section {
  border-top: 1px solid #111827;
  margin-top: 0.3rem;
  padding-top: 0.3rem;
}
.country-dropdown-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}
.country-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.2rem 0.45rem;
  background: transparent;
  border: none;
  color: inherit;
  text-align: left;
  border-radius: 0.45rem;
  cursor: pointer;
}
.country-option:hover {
  background-color: #111827;
}
.country-option-main {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.country-name {
  font-size: 13px;
}
.country-option .country-dial {
  font-size: 12px;
  color: #9ca3af;
}
@media (max-width: 767.98px) {
  .hero-card {
    margin-top: 1.8rem;
  }
}
/* Date picker modal */
.date-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}
.date-modal {
  background: #ffffff;
  border-radius: 1rem;
  width: 320px;
  max-width: 90vw;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.38);
  overflow: hidden;
  font-size: 13px;
}
.date-modal-header {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f9fafb;
}
.date-modal-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.date-modal-close {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
}
.date-modal-close:hover {
  color: #4b5563;
}
.date-modal-body {
  padding: 0.5rem 0.75rem 0.75rem;
  background-color: #ffffff;
}
.date-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
.date-month-label {
  font-weight: 600;
  font-size: 13px;
  color: #0f172a;
}
.date-nav-btn {
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #0f172a;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 0;
  cursor: pointer;
}
.date-nav-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}
.date-calendar-grid {
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 0.4rem 0.45rem 0.45rem;
}
.date-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 0.25rem;
}
.date-weekdays span {
  padding: 0.1rem 0;
}
.date-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}
.date-day {
  border-radius: 999px;
  border: 1px solid transparent;
  background-color: #ffffff;
  padding: 0.2rem 0;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  color: #0f172a;
  min-height: 26px;
}
.date-day:hover {
  border-color: var(--color-primary-soft);
  background-color: #e0efff;
}
.date-day.disabled {
  cursor: default;
  background-color: transparent;
  border-color: transparent;
  color: #cbd5e1;
}
.date-day.empty {
  cursor: default;
  background-color: transparent;
  border-color: transparent;
}
.date-day.today {
  border-color: var(--color-primary);
  background-color: #eff6ff;
  font-weight: 600;
}
.date-day.selected {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
}