h2.page-header {
  margin: 10px 0 25px 0;
  padding-bottom: 15px;
}

.user-baseinfo {
  margin-bottom: 25px;
}

.user-baseinfo table tr td {
  color: #999;
}

@media (min-width: 992px) {

  .user-center .avatar-text,
  .user-center .avatar-img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
    line-height: 150px;
    font-size: 70px;
  }

  .user-center .avatar-img {
    font-size: 0;
  }

  .user-center .avatar-img img {
    height: 150px;
    width: 150px;
    border-radius: 150px;
  }
}

.sidebar-toggle {
  display: none;
}

@media (max-width: 991px) {
  .sidenav {
    position: fixed;
    top: 50px;
    z-index: 1029;
    height: calc(100vh - 50px);
    padding: 20px 0 20px 0;
    min-width: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    width: 250px;
    left: -250px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 20px;
    bottom: 70px;
    border-radius: 50%;
    background: #eee;
    font-size: 22px;
    padding: 10px;
    line-height: 30px;
    height: 50px;
    width: 50px;
    text-align: center;
    z-index: 999999;
  }
}

body.sidebar-open .sidenav {
  left: 0;
  width: 250px;
  box-shadow: 0 6px 27px rgba(0, 0, 0, 0.075);
}

body.sidebar-open .sidebar-toggle i:before {
  content: "\f00d";
}

/* Categories Row Scrollbar Hide */
.categories-row::-webkit-scrollbar {
  display: none;
}

.categories-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body.ukrh-body {
  background-color: #ffffff;
  /* Clean white */
  color: #1c1c1e;
  /* Almost black text */
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
}

/* Remove animated glowing blobs for clean light theme */
body.ukrh-body::before,
body.ukrh-body::after {
  display: none;
}

.ukrh-content {
  padding-top: 60px;
  /* Reduced for the new hero */
  padding-bottom: 32px;
  min-height: calc(100vh - 120px);
}

/* Navbar */
.ukrh-navbar.navbar {
  background: #1c1c1e;
  /* Black navbar */
  border-bottom: none;
  box-shadow: none;
  padding: 10px 0;
}

.ukrh-navbar .navbar-brand {
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ukrh-navbar .navbar-brand::before {
  content: "\f005";
  /* fa-star */
  font-family: 'FontAwesome';
  color: #00b67a;
  /* Trustpilot green */
  font-size: 24px;
}

.ukrh-navbar .navbar-brand span {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: initial;
}

.ukrh-navbar .navbar-nav>li>a {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
  padding: 15px 15px;
}

.ukrh-navbar .navbar-nav>li>a:hover,
.ukrh-navbar .navbar-nav>li>a:focus {
  color: #e2e8f0;
  background-color: transparent;
}

.ukrh-navbar .navbar-nav .dropdown-toggle {
  color: #ffffff;
}

.btn-for-business {
  background: #0056ff;
  /* Trustpilot blue */
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 8px 24px !important;
  margin: 7px 0 7px 0 !important;
  font-weight: 600;
  transition: background 0.3s;
  display: block !important;
  line-height: 20px !important;
  height: 36px !important;
}

.btn-for-business:hover {
  background: #0043ce;
}

/* Navbar Dropdown Override for Tech Theme */
.ukrh-navbar .navbar-nav .open .dropdown-menu {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 10px;
}

.ukrh-navbar .navbar-nav .open .dropdown-menu>li>a {
  color: #475569;
  padding: 10px 20px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ukrh-navbar .navbar-nav .open .dropdown-menu>li>a i {
  color: #64748b;
  width: 16px;
  text-align: center;
}

.ukrh-navbar .navbar-nav .open .dropdown-menu>li>a:hover {
  color: #0f172a;
  background: #f1f5f9;
  padding-left: 20px;
}

/* Gradient Text Utility -> Solid Color for clean look */
.text-gradient {
  color: #1c1c1e;
  background: none;
  -webkit-text-fill-color: initial;
  display: inline-block;
}

.ukrh-search {
  margin: 8px 0;
  width: 360px;
  display: none;
  /* Hide navbar search in this layout */
}

.ukrh-search input {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ukrh-search input:focus {
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(59, 130, 246, 0.2);
  color: #0f172a;
}

@media (max-width: 991px) {
  .ukrh-search {
    width: 100%;
    padding: 0 15px;
  }
}

.ukrh-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ukrh-card::before {
  display: none;
}

.ukrh-card+.ukrh-card {
  margin-top: 16px;
}

.ukrh-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.ukrh-card a {
  color: #2563eb;
  transition: color 0.3s;
}

.ukrh-card a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Home Hero */
.ukrh-hero-wrap {
  background-color: #fdfaf6;
  /* Cream hero background */
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  border-bottom: 1px solid #e2e8f0;
}

.ukrh-hero-wrap::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: #00b67a;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 0;
}

.ukrh-hero {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ukrh-hero h1 {
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #1c1c1e;
}

.ukrh-hero .ukrh-muted {
  font-size: 20px;
  margin-bottom: 40px;
  color: #475569;
}

/* Big Search Bar */
.hero-search-form {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.hero-search-form input {
  height: 64px;
  border-radius: 999px;
  padding-left: 24px;
  padding-right: 70px;
  font-size: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-search-form input:focus {
  border-color: #0056ff;
  box-shadow: 0 4px 12px rgba(0, 86, 255, 0.15), 0 0 0 3px rgba(0, 86, 255, 0.2);
}

.hero-search-form button {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0056ff;
  color: #fff;
  border: none;
  font-size: 18px;
  transition: background 0.3s;
}

.hero-search-form button:hover {
  background: #0043ce;
}

.ukrh-muted {
  color: #64748b;
}

.ukrh-stars {
  color: #f59e0b;
  /* Golden stars */
  text-shadow: none;
}

.ukrh-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.ukrh-section-title {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  margin: 32px 0 16px;
  color: #0f172a;
}

.ukrh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 991px) {
  .ukrh-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.ukrh-category {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  color: #1e293b;
}

.ukrh-category:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  text-decoration: none;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ukrh-footer {
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 40px 0;
  margin-top: 60px;
}

.ukrh-footer a {
  color: #64748b;
  transition: color 0.3s;
}

.ukrh-footer a:hover {
  color: #0f172a;
  text-decoration: none;
}

/* Primary Button - Professional Blue */
.btn-glow {
  background: #2563eb;
  border: 1px solid #1d4ed8;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-glow:hover,
.btn-glow:focus,
.btn-glow:active {
  background: #1d4ed8;
  border-color: #1e40af;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
  color: #ffffff !important;
}

/* Custom form inputs */
.form-control {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(59, 130, 246, 0.2);
  color: #0f172a;
}

.input-lg {
  border-radius: 8px;
  height: 50px;
}

.btn-lg {
  border-radius: 8px;
  height: 50px;
}

/* Pagination */
.pagination>li>a,
.pagination>li>span {
  background-color: #ffffff;
  border-color: #e2e8f0;
  color: #475569;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
  background-color: #f8fafc;
  border-color: #e2e8f0;
  color: #94a3b8;
}

/* User Center Overrides for Light Theme */
.user-section,
.login-section {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  color: #1e293b;
}

.logon-tab a {
  color: #64748b;
}

.logon-tab a.active {
  color: #0f172a;
  border-bottom-color: #2563eb !important;
}

.user-baseinfo table tr td {
  color: #475569;
}

.panel,
.panel-default,
.panel-heading {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  color: #1e293b;
}

.list-group-item {
  background: transparent;
  border-color: #e2e8f0;
  color: #475569;
}

.list-group-item.active {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.nav-tabs>li>a {
  color: #64748b;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
  background-color: #f8fafc;
  border-color: #e2e8f0;
  color: #0f172a;
}

/* Form Validation Overrides for Modern Clean Theme */
.form-group {
  position: relative;
}

.msg-box.n-right,
.msg-box.n-bottom,
.msg-box.n-top,
.msg-box.n-left {
  position: relative !important;
  display: block !important;
  margin: 6px 0 0 0 !important;
  padding: 0 !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
}

.msg-wrap {
  position: relative !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.msg-wrap .n-icon {
  display: none !important;
  /* Hide old sprite icons */
}

.n-error .msg-wrap {
  color: #ef4444 !important;
  /* Tailwind Red 500 */
  font-size: 13px;
  font-weight: 500;
}

.n-error .msg-wrap::before {
  content: "\f071";
  /* fa-exclamation-triangle */
  font-family: "FontAwesome";
  color: #ef4444;
  font-size: 12px;
}

.n-ok .msg-wrap {
  color: #10b981 !important;
  /* Tailwind Emerald 500 */
  font-size: 13px;
}

.n-ok .msg-wrap::before {
  content: "\f00c";
  /* fa-check */
  font-family: "FontAwesome";
  color: #10b981;
  font-size: 12px;
}

.has-error .form-control {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.has-success .form-control {
  border-color: #10b981 !important;
  box-shadow: none !important;
}