/* ==========================================================================
   OMEGA SCIENTIFIC - UNIFIED BUTTON COMPONENT (buttons.css)
   Single common style page for all buttons (Header, Hero, Mobile Drawer, Modals)
   ========================================================================== */

.cssbuttons-io-button {
  background: linear-gradient(135deg, #0096c7 0%, #0077b6 50%, #004b87 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 0.9em;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: inset 0 0 1.6em -0.6em #003e7e, 0 6px 20px -3px rgba(0, 130, 203, 0.4);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding: 0.35em;
  padding-left: 1.2em;
  padding-right: 3.3em;
  cursor: pointer;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  user-select: none;
}

/* Left-Aligned Button Text Label */
.cssbuttons-io-button .btn-label {
  display: inline-block;
  text-align: left;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

/* Floating White Capsule Icon Container */
.cssbuttons-io-button .icon {
  background: #ffffff;
  position: absolute;
  right: 0.3em;
  top: 0.3em;
  bottom: 0.3em;
  width: 2.2em;
  height: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em rgba(0, 62, 126, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  height: 1.1em;
  color: #0077b6;
  transition: transform 0.3s ease;
}

/* Hover Expanding Effect */
.cssbuttons-io-button:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 1.6em -0.6em #003e7e, 0 10px 25px -2px rgba(0, 194, 255, 0.55);
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.15em);
}

.cssbuttons-io-button:active {
  transform: scale(0.97);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

/* Color Palette Variants (Exact Same Size, Typography & Left-Alignment) */
.cssbuttons-io-button.btn-primary {
  background: linear-gradient(135deg, #0096c7 0%, #0077b6 50%, #004b87 100%);
}

.cssbuttons-io-button.btn-secondary {
  background: linear-gradient(135deg, #005fa3 0%, #003e7e 60%, #002d62 100%);
  box-shadow: inset 0 0 1.6em -0.6em #001f44, 0 6px 20px -3px rgba(0, 62, 126, 0.4);
}

.cssbuttons-io-button.btn-secondary .icon svg {
  color: #004b87;
}

/* Header Enquiry Variant - Identical Common Styles */
.cssbuttons-io-button.btn-enquiry-header {
  background: linear-gradient(135deg, #0096c7 0%, #0077b6 50%, #004b87 100%);
}
