/* ============================================================
   HUPFAST COMPONENTS — components.css
   Reusable UI components with Default Light Mode & Dual Theme Support
   ============================================================ */

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  line-height: 1;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}

/* Primary Button — Brand Gradient with Glow */
.btn-primary {
  background: var(--brand-gradient);
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(41, 82, 227, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 82, 227, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(41, 82, 227, 0.3);
}

/* Secondary Button — Adaptive */
.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-1px);
}

/* Hero Secondary Button — High Contrast in Light & Dark Mode */
.btn-secondary-light {
  background: #ffffff;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-xs);
}

.btn-secondary-light:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue) !important;
  transform: translateY(-1px);
}

html[data-theme="dark"] .btn-secondary-light {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] .btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--brand-blue);
  border-color: transparent;
  padding-inline: 10px;
}

.btn-ghost:hover {
  color: var(--brand-violet);
  background: rgba(41, 82, 227, 0.06);
}

/* Button Sizes */
.btn-sm {
  font-size: var(--text-xs);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  font-size: var(--text-base);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: var(--font-bold);
}

.btn .btn-icon {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

[dir="ltr"] .btn:hover .btn-icon {
  transform: translateX(3px);
}

[dir="rtl"] .btn:hover .btn-icon {
  transform: translateX(-3px);
}

/* ── Navigation Bar ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: var(--z-sticky);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), backdrop-filter var(--transition-base);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--nav-border-scrolled);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* ── Dual Logo Display Rules ─────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  height: 38px;
}

.nav-logo .logo-img {
  height: 34px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* In Light Mode: Show Color Logo, Hide White Logo */
.nav-logo .logo-color {
  display: block !important;
}
.nav-logo .logo-white {
  display: none !important;
}

/* In Dark Mode: Show White Logo, Hide Color Logo */
html[data-theme="dark"] .nav-logo .logo-color {
  display: none !important;
}
html[data-theme="dark"] .nav-logo .logo-white {
  display: block !important;
}

/* ── Nav Links ───────────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: var(--font-medium);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--brand-blue);
  background: rgba(41, 82, 227, 0.05);
}

.nav-link.active {
  color: var(--brand-blue) !important;
  font-weight: var(--font-bold);
}

html[data-theme="dark"] .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
html[data-theme="dark"] .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
html[data-theme="dark"] .nav-link.active {
  color: var(--brand-blue-light) !important;
}

/* ── Nav Right Controls ──────────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* ── Language Switcher Capsule ───────────────────────────────── */
.lang-switch-capsule {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 2px;
  gap: 2px;
  transition: all var(--transition-fast);
}

html[data-theme="dark"] .lang-switch-capsule {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.lang-pill-btn {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: var(--font-semibold);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

html[data-theme="dark"] .lang-pill-btn {
  color: rgba(255, 255, 255, 0.7);
}

.lang-pill-btn:hover {
  color: var(--text-primary);
}

html[data-theme="dark"] .lang-pill-btn:hover {
  color: #ffffff;
}

.lang-pill-btn.active {
  color: #ffffff !important;
  background: var(--brand-gradient);
  box-shadow: 0 2px 8px rgba(41, 82, 227, 0.35);
  font-weight: var(--font-bold);
}

/* ── Theme Switcher Button ───────────────────────────────────── */
.theme-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border-medium);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

html[data-theme="dark"] .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.theme-toggle-btn:hover {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  background: rgba(41, 82, 227, 0.08);
}

.theme-toggle-btn svg {
  width: 17px;
  height: 17px;
}

html[data-theme="dark"] .theme-icon-sun { display: block; }
html[data-theme="dark"] .theme-icon-moon { display: none; }
html[data-theme="light"] .theme-icon-sun { display: none; }
html[data-theme="light"] .theme-icon-moon { display: block; }
:root:not([data-theme="dark"]) .theme-icon-sun { display: none; }
:root:not([data-theme="dark"]) .theme-icon-moon { display: block; }

/* ── Mobile Nav Toggle ───────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 6px;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
}

html[data-theme="dark"] .nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

html[data-theme="dark"] .nav-toggle span {
  background: #ffffff;
}

.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 75%; }
.nav-toggle span:nth-child(3) { width: 90%; }

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  width: 100%;
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 100%;
}

/* ── Mobile Nav Drawer ───────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset-inline: 0;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  z-index: var(--z-sticky);
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

[dir="ltr"] .mobile-nav {
  transform: translateX(-100%);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-inner {
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: var(--brand-blue);
}

.mobile-nav-bottom {
  padding: var(--space-6) var(--space-5);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  border-top: 1px solid var(--border);
  background: var(--bg-tertiary);
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── Pillars ─────────────────────────────────────────────────── */
.pillar-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.pillar-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(41, 82, 227, 0.25);
  flex-shrink: 0;
}

.pillar-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: var(--font-bold);
  color: var(--badge-text);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pillar-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pillar-check-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.pillar-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

/* ── Product Cards ───────────────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.product-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card-preview {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
}

.product-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: var(--font-bold);
  color: var(--badge-text);
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.product-name {
  font-size: 22px;
  font-weight: var(--font-extrabold);
  color: var(--text-primary);
}

.product-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: var(--leading-normal);
  flex: 1;
}

.capability-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-1);
}

.capability-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  padding: 4px 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.capability-tag .dot {
  width: 5px;
  height: 5px;
  background: var(--brand-blue);
  border-radius: 50%;
}

/* ── UI Preview Mockups ──────────────────────────────────────── */
.ui-frame {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  position: relative;
}

.ui-topbar {
  height: 32px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-inline: 12px;
}

.ui-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.ui-dot.red    { background: #ef4444; }
.ui-dot.yellow { background: #f59e0b; }
.ui-dot.green  { background: #10b981; }

.ui-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ui-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ui-metric {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ui-metric-num {
  font-size: 16px;
  font-weight: var(--font-bold);
  color: var(--brand-blue);
}

.ui-metric-label {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: var(--font-semibold);
}

.ui-chart-bar {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 55px;
  padding: 6px 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.ui-bar {
  flex: 1;
  background: var(--brand-gradient);
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
}

/* ── Industry Tabs ───────────────────────────────────────────── */
.industry-nav-wrap {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: var(--space-3);
  scrollbar-width: none;
}
.industry-nav-wrap::-webkit-scrollbar { display: none; }

.industry-pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: var(--font-semibold);
  color: var(--text-secondary);
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  background: var(--bg-card);
}

.industry-pill:hover {
  color: var(--text-primary);
  border-color: var(--brand-blue);
}

.industry-pill.active {
  color: #ffffff;
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(41, 82, 227, 0.3);
}

/* ── Form Inputs ─────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.form-label {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  font-size: var(--text-sm);
  font-family: inherit;
  color: var(--text-primary);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #040711;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-12);
  padding-bottom: var(--space-8);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-9);
  padding-bottom: var(--space-9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Footer ALWAYS uses logo-w.png */
.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--leading-normal);
  max-width: 32ch;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.social-icon {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 12px;
  font-weight: var(--font-bold);
  letter-spacing: 0.05em;
  color: #38bdf8;
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Dark Enterprise Section Contrast Fix ───────────────────── */
.enterprise-dark-section,
.enterprise-dark-section .section-heading,
.enterprise-dark-section .section-heading.light,
html[data-theme="light"] .enterprise-dark-section .section-heading,
html[data-theme="light"] .enterprise-dark-section .section-heading.light {
  color: #ffffff !important;
}

.enterprise-dark-section .section-subheading,
.enterprise-dark-section .section-subheading.light,
html[data-theme="light"] .enterprise-dark-section .section-subheading,
html[data-theme="light"] .enterprise-dark-section .section-subheading.light {
  color: rgba(255, 255, 255, 0.85) !important;
}

.enterprise-dark-section h4 {
  color: #ffffff !important;
}

.enterprise-dark-section p {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ── Partners / Integration Platforms Section ───────────────── */
.partners-section {
  padding-block: var(--space-8);
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.partners-title-sm {
  font-size: 13px;
  font-weight: var(--font-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue-light);
  margin-bottom: var(--space-5);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin-inline: auto;
  align-items: center;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  width: 100%;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-blue-light);
  box-shadow: var(--shadow-md);
}

.partner-logo-img {
  height: 34px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: none;
}

.partner-name {
  font-size: 14px;
  font-weight: var(--font-bold);
  color: var(--text-primary);
}

.partner-badge {
  font-size: 11px;
  font-weight: var(--font-semibold);
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand-blue-light);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

/* ── Interactive Full-Width Booking Card ─────────────────────── */
.booking-card-full {
  width: 100%;
  max-width: 960px;
  margin: var(--space-6) auto 0;
  padding: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: start;
}

.booking-step-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.slots-wrap {
  margin-top: 16px;
  margin-bottom: 24px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.slot-pill {
  padding: 11px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 13px;
  font-weight: var(--font-bold);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slot-pill:hover:not(.booked):not(.disabled):not(:disabled) {
  border-color: var(--brand-blue-light);
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-blue-light);
  transform: translateY(-1px);
}

.slot-pill.active,
.slot-pill.selected {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4) !important;
}

.slot-pill.booked,
.slot-pill.disabled,
.slot-pill:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  text-decoration: line-through;
  border-color: var(--border);
}


/* ── Mobile and Tablet Responsive Styles ─────────────────────── */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding-inline: 16px;
  }
  #nav-cta {
    display: none; /* Hide button on mobile header to prevent overlap */
  }
  .nav-logo .logo-img {
    height: 30px;
    max-width: 130px;
  }
  .lang-pill-btn {
    padding: 4px 9px;
    font-size: 11px;
  }
  .theme-toggle-btn {
    width: 32px;
    height: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
