/* Hero Section */
.emoset_hero_section {
  background: linear-gradient(to right, #f4f4f4, #fff);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.emoset_hero_section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.emoset_hero_section .relative {
  z-index: 2;
}

/* Search Box */
.emoset_search_box_outer,
.emoset_search_box_container {
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
}
.emoset_search_box_container {
  display: flex;
  align-items: center;
  padding: 20px 10px 10px;
  margin: 20px auto;
  width: 90%;
}
.emoset_search_box_text_container {
  text-align: left;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
}
.emoset_search_box_txt-white {
  color: #fff;
}

/* Header */
.emoset_logo-dom {
  font-weight: bold;
  font-size: 1.2em;
}
.emoset_logo-box img {
  max-width: 48px;
  border-radius: 8px;
}

/* Footer Property */
.emoset_footer_wrapper {
  background: #f9f9f9;
  color: #333;
  padding: 32px 0 0 0;
}
.emoset_footer_container {
  max-width: 1200px;
  margin: 0 auto;
}
.emoset_footer_wrapper h4 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 12px;
}
.emoset_footer_wrapper ul {
  list-style: none;
  padding: 0;
}
.emoset_footer_wrapper a {
  color: #377F87;
  text-decoration: none;
}
.emoset_footer_wrapper a:hover {
  text-decoration: underline;
  color: #005f6b;
}
.emoset_footer_wrapper .fab {
  font-size: 1.2em;
  margin-right: 8px;
}

/* Utility */
.bg-primary {
  background: #377F87;
}
.text-primary {
  color: #377F87;
}
.text-primary-700 {
  color: #005f6b;
}
.rounded {
  border-radius: 6px;
}
.p-2 {
  padding: 8px;
}
.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}
.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.gap-6 {
  gap: 24px;
}

/* Utility classes mirip Tailwind agar plugin tetap optimal tanpa Tailwind */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-1 { z-index: 1; }
.container { max-width: 1200px; margin-left: auto; margin-right: auto; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex { display: flex; }
.text-center { text-align: center; }
.font-bold { font-weight: bold; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.my-4 { margin-top: 16px; margin-bottom: 16px; }
.mt-4 { margin-top: 16px; }
.text-lg { font-size: 1.125em; }
.text-3xl { font-size: 2em; }
.md\:text-5xl { font-size: 3em; }
.md\:text-2xl { font-size: 1.5em; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:text-primary-700:hover { color: #005f6b; }
.space-x-4 > *:not(:last-child) { margin-right: 16px; }
.space-y-2 > *:not(:last-child) { margin-bottom: 8px; }
.uppercase { text-transform: uppercase; }
.text-gray-600 { color: #666; }
.text-gray-900 { color: #222; }
.text-gray-500 { color: #888; }
.bg-gray-50 { background: #f9f9f9; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-2 { padding: 8px; }
.p-4 { padding: 16px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.pt-4 { padding-top: 16px; }
.pt-6 { padding-top: 24px; }
.lg\:px-6 { padding-left: 24px; padding-right: 24px; }
.lg\:pt-6 { padding-top: 24px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-6 { gap: 24px; }
@media (max-width: 768px) {
  .emoset_footer_container {
    padding: 0 12px;
  }
  .emoset_hero_section {
    min-height: 300px;
    padding: 10px;
  }
  .md\:text-5xl { font-size: 2em; }
  .md\:text-2xl { font-size: 1.125em; }
}