/* custom styles */
body {
  font-family: "Kanit", "Noto Sans Thai", system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.brand-logo {
  color: #0d3b8c;
}

.nav-link {
  font-weight: 500;
}

.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 60%, #dbeafe 100%);
}

.text-blue-900 {
  color: #0b2f6b;
}

.hero-card {
  border-top: 4px solid #dc3545;
}

.about-box {
  background: #eff6ff;
  border-left: 4px solid #0d6efd;
}

.feature-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.7rem 0.9rem;
}

.product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  font-weight: 500;
  height: 100%;
  transition: all 0.2s ease;
}

.product-card:hover {
  border-color: #0d6efd;
  transform: translateY(-2px);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.step-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc3545;
  color: #fff;
  font-weight: 700;
}

.contact-section {
  background: linear-gradient(120deg, #0d3b8c 0%, #0d6efd 55%, #dc3545 100%);
}

.detail-chip {
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 0.75rem;
  padding: 0.7rem 0.9rem;
  color: #1f2937;
}

.quote-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem;
}

.mockup-image-box {
  min-height: 180px;
  border: 2px dashed #94a3b8;
  background: #f8fafc;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 500;
}

/* Fix Bootstrap/Tailwind .collapse class conflict */
.navbar .collapse {
  visibility: visible;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse.collapse {
    display: flex !important;
    visibility: visible !important;
  }
}
