:root {
  --bg: #f1f4f8;
  --text: #121722;
  --muted: #586173;
  --primary: #ed2c00;
  --primary-dark: #c92600;
  --card: #ffffff;
  --border: #d7dde8;
  --shadow: 0 18px 42px rgba(21, 30, 47, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fafbfd, var(--bg));
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-card {
  width: min(720px, 100%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.status-line {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff3ef;
  border: 1px solid #ffd4c8;
  color: #a3391f;
  font-size: 0.8rem;
  font-weight: 600;
}

.company-logo {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.tag {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 60ch;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-list a span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-list a strong {
  font-size: 1rem;
}

.contact-list a:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(237, 44, 0, 0.12);
}

.chatbot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 26px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid #e54b26;
  background: linear-gradient(130deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(237, 44, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(237, 44, 0, 0.3);
}

.copyright {
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* Hide built-in floating widget button; we open it from our CTA */
.b24-widget-button-position-fixed {
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 640px) {
  .page {
    padding: 16px;
  }

  .contact-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

}
