/* ---- Global colors / panels ---- */
:root {
  --page-bg: #000000;
  --panel-bg: #0b1220;
  --panel-border: rgba(255, 255, 255, 0.06);
  --muted: #9ca3af;
  --accent: #ffffff;
  --accent-blue: #3b82f6;
  --accent-red: #b91c1c;
}

/* ================================================= */
/* ===== NEW: Animated Misty Background Effect ===== */
/* ================================================= */
html {
  /* The gradient: multiple shades of dark grey/black */
  background: linear-gradient(-45deg, #000000, #0a0a0a, #020202, #111111)!important;
  /* Make the gradient huge so the color shifts are slow */
  background-size: 400% 400%;
  /* The animation: 'mistyEffect' runs for 20s, infinitely */
  animation: mistyEffect 20s ease infinite;
  color: var(--accent) !important;
}

@keyframes mistyEffect {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Basic reset */
* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  /* Make body transparent to see the html animation */
  background: transparent;
  color: var(--accent);
  -webkit-font-smoothing: antialiased;
}

/* layout */
.max-w-6xl { max-width: 1100px; margin: 0 auto; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.two-col { display: block; }
@media(min-width: 768px) {
  .two-col {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
  }
}

/* Headings */
.h1 { font-size: 28px; margin: 0 0 8px; font-weight: 700; color: #fff; }
.muted-sub { color: var(--muted); font-size: 14px; margin: 6px 0; }

/* panels */
.form-panel,
.card-quick {
  background: var(--panel-bg);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--panel-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

/* inputs */
.input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--panel-border);
  color: var(--accent);
  font-size: 15px;
  transition: all 0.2s ease;
}
.input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--panel-bg);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
.label-small {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* checkboxes as pills */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s ease;
}
.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}
.checkbox-label input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent-red);
}
.checkbox-label span {
  font-weight: 500;
  font-size: 14px;
}

/* tag */
.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-blue);
  border: 1px solid var(--accent-blue);
  color: #fff;
  margin-right: 6px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
}

/* buttons */
.btn-primary {
  background: var(--accent-red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  transition: all .2s ease;
}
.btn-primary:hover {
  background: #991b1b; /* Darker red */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}
.link-call {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
  text-decoration: none;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.link-call:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* right column content */
.card-quick h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 10px;
}
.muted-list {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.brand-block img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}
.brand-info .brand-title {
  font-size: 16px;
  color: var(--accent);
  font-weight: 700;
}

/* actions area */
.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.small-muted { color: var(--muted); font-size: 13px; }
.right-actions { display: flex; gap: 12px; align-items: center; }

/* alerts */
.alert { border-radius: 8px; padding: 16px; margin: 12px 0; }
.alert.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #a7f3d0;
  font-weight: 500;
}
.alert.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fecaca;
  font-weight: 500;
}

/* floating whatsapp */
.whatsapp-fab {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform .12s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab img { width: 30px; height: 30px; display: block; }

/* responsive tweaks */
@media(max-width: 767px) {
  .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .right-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}