.hh-section-card,
.hh-panel,
.hh-stat-card,
.hh-table-wrap,
.hh-gallery-card,
.hh-summary-card {
  background: linear-gradient(180deg, var(--panelColor) 0%, var(--optionalColor) 100%);
  border-radius: 16px;
  border: 1px solid var(--borderColor);
  box-shadow: 0 18px 36px var(--shadowColor);
}

.hh-section-card,
.hh-panel,
.hh-table-wrap,
.hh-gallery-card,
.hh-summary-card {
  padding: 30px;
  margin-bottom: 30px;
}

.hh-stat-card {
  padding: 24px;
  margin-bottom: 30px;
  height: 100%;
}

.hh-stat-label {
  display: block;
  color: var(--paragraphColor);
  font-size: 14px;
  margin-bottom: 8px;
}

.hh-stat-value {
  color: var(--titleColor);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.hh-stat-meta {
  color: var(--paragraphColor);
  font-size: 14px;
  margin-top: 10px;
}

.hh-inline-meta,
.hh-stack-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.hh-inline-meta span,
.hh-stack-meta span {
  color: var(--paragraphColor);
  font-size: 14px;
}

.hh-stack-meta {
  flex-direction: column;
  gap: 10px;
}

.hh-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.hh-status-approved {
  background: rgba(161, 168, 156, 0.18);
  color: var(--titleColor);
}

.hh-status-pending {
  background: rgba(242, 155, 119, 0.18);
  color: var(--secondaryColor);
}

.hh-status-rejected {
  background: rgba(47, 53, 66, 0.1);
  color: var(--titleColor);
}

.hh-grid {
  display: grid;
  gap: 24px;
}

.hh-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hh-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hh-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hh-form-note,
.hh-muted,
.hh-warning-note {
  color: var(--paragraphColor);
  font-size: 14px;
}

.hh-warning-note {
  background: linear-gradient(90deg, rgba(234, 246, 244, 0.95) 0%, rgba(248, 216, 203, 0.85) 100%);
  border-left: 4px solid var(--secondaryColor);
  border-radius: 8px;
  padding: 14px 16px;
}

.hh-table-wrap {
  overflow-x: auto;
}

.hh-table {
  width: 100%;
  min-width: 760px;
}

.hh-table th {
  color: var(--titleColor);
  font-size: 14px;
  font-weight: 700;
}

.hh-table td {
  vertical-align: middle;
  color: var(--paragraphColor);
  font-size: 14px;
}

.hh-thumb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hh-thumb,
.hh-gallery-image {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--mutedColor);
}

.hh-gallery-image {
  width: 100%;
  height: 220px;
}

.hh-image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mutedColor);
  color: var(--paragraphColor);
  border-radius: 12px;
  min-height: 88px;
}

.hh-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hh-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hh-check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--borderColor);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--whiteColor) 0%, var(--optionalColor) 100%);
  color: var(--titleColor);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hh-check-option:hover {
  border-color: rgba(161, 168, 156, 0.9);
  box-shadow: 0 10px 24px var(--shadowColor);
  transform: translateY(-1px);
}

.hh-check-option input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.hh-check-option span {
  color: var(--titleColor);
  font-size: 14px;
  font-weight: 600;
}

.pac-container {
  margin-top: 8px;
  border: 1px solid var(--borderColor) !important;
  border-radius: 14px !important;
  background: var(--whiteColor) !important;
  box-shadow: 0 18px 36px var(--shadowColor) !important;
  font-family: var(--fontFamily) !important;
  z-index: 9999 !important;
  overflow: hidden;
  pointer-events: auto !important;
}

.pac-container:after {
  background-position: right 14px center !important;
  background-repeat: no-repeat !important;
}

.pac-item {
  position: relative;
  min-height: 44px;
  padding: 10px 14px !important;
  border-top: 1px solid var(--borderColor) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: var(--titleColor) !important;
  white-space: normal !important;
  cursor: pointer;
  pointer-events: auto !important;
}

.pac-item:first-child {
  border-top: 0 !important;
}

.pac-item:hover,
.pac-item-selected {
  background: var(--optionalColor) !important;
}

.pac-item span,
.pac-item-query {
  display: inline !important;
  color: inherit !important;
  font-family: var(--fontFamily) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-transform: none !important;
}

.pac-item-query {
  font-weight: 600 !important;
}

.pac-matched {
  font-weight: 700 !important;
}

.pac-item img,
.pac-icon {
  width: 0 !important;
  height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  display: none !important;
  background: none !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.hh-register-form .form-group {
  position: relative;
}

.hh-summary-list,
.hh-breakdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-summary-list li,
.hh-breakdown-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--borderColor);
  color: var(--paragraphColor);
}

.hh-summary-list span,
.hh-breakdown-list span {
  color: var(--paragraphColor);
}

.hh-summary-list strong,
.hh-breakdown-list strong {
  color: var(--titleColor);
}

.hh-summary-list li:last-child,
.hh-breakdown-list li:last-child {
  border-bottom: 0;
}

.hh-empty-state {
  padding: 40px 20px;
  text-align: center;
  color: var(--paragraphColor);
}

.hh-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.hh-config-card {
  border: 1px dashed rgba(223, 230, 233, 0.9);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(180deg, var(--whiteColor) 0%, var(--optionalColor) 100%);
}

@media only screen and (max-width: 991px) {
  .hh-grid-two,
  .hh-grid-three,
  .hh-grid-four {
    grid-template-columns: 1fr;
  }

  .hh-check-grid {
    grid-template-columns: 1fr;
  }

  .hh-page-actions {
    justify-content: flex-start;
  }
}
.hh-section-card h3,
.hh-gallery-card h4,
.hh-summary-card h3 {
  margin-bottom: 18px;
}

.hh-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hh-role-card {
  width: 100%;
  text-align: left;
  background: linear-gradient(180deg, var(--whiteColor) 0%, var(--optionalColor) 100%);
  border: 1px solid var(--borderColor);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.hh-role-card:hover,
.hh-role-card.is-active {
  border-color: var(--mainColor);
  box-shadow: 0 16px 30px var(--shadowColor);
  transform: translateY(-2px);
}

.hh-role-card strong {
  display: block;
  color: var(--titleColor);
  font-size: 22px;
  margin-bottom: 10px;
}

.hh-role-card p {
  margin-bottom: 0;
  color: var(--paragraphColor);
}

.hh-role-label {
  display: inline-block;
  color: var(--secondaryColor);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hh-register-form {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hh-register-form .form-group label {
  display: block;
  color: var(--titleColor);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

@media only screen and (max-width: 991px) {
  .hh-role-grid {
    grid-template-columns: 1fr;
  }
}

.hh-account-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hh-account-link {
  width: 100%;
  border: 1px solid var(--borderColor);
  border-radius: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--whiteColor) 0%, var(--optionalColor) 100%);
  color: var(--titleColor);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: all 0.3s ease;
}

.hh-account-link:hover,
.hh-account-link.is-active {
  background: linear-gradient(135deg, var(--mainColor) 0%, #7ec8bf 100%);
  border-color: var(--mainColor);
  box-shadow: 0 14px 28px var(--shadowColor);
  color: var(--whiteColor);
}

.hh-account-link.is-logout:hover,
.hh-account-link.is-logout:focus {
  background: linear-gradient(135deg, var(--secondaryColor) 0%, #f6b497 100%);
  border-color: var(--secondaryColor);
}

.hh-account-panel[hidden] {
  display: none !important;
}

.hh-account-lead {
  color: var(--paragraphColor);
  font-size: 15px;
  margin-bottom: 24px;
}

.hh-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hh-account-stat {
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 251, 0.95) 100%);
  border: 1px solid var(--borderColor);
}

.hh-account-stat h4,
.hh-favourites-panel .place-list-item .content h3 {
  color: var(--titleColor);
}

.hh-account-stat p,
.hh-complaint-history li,
.hh-favourites-panel .content p {
  color: var(--paragraphColor);
}

.hh-file-meta {
  display: block;
  margin-top: 8px;
  color: var(--paragraphColor);
  font-size: 13px;
}

.hh-stat-value-sm {
  font-size: 22px;
}

.hh-favourites-panel .place-list-item {
  margin-bottom: 30px;
}

.hh-complaint-history {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.hh-complaint-history li {
  padding: 14px 0;
  border-bottom: 1px solid var(--borderColor);
}

.hh-complaint-history li:last-child {
  border-bottom: 0;
}

.hh-complaint-history strong {
  display: block;
  color: var(--titleColor);
  margin-bottom: 4px;
}

.hh-helper-stat-grid .hh-stat-card {
  min-height: 100%;
}

.hh-helper-kyc-card {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 246, 244, 0.9) 100%);
  border: 1px solid var(--borderColor);
}

.hh-helper-kyc-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.hh-helper-kyc-head h4 {
  margin-bottom: 8px;
}

.hh-helper-code-box {
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(161, 168, 156, 0.14) 0%, rgba(234, 246, 244, 0.95) 100%);
  border: 1px solid rgba(161, 168, 156, 0.32);
}

.hh-helper-code-value {
  color: var(--titleColor);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hh-helper-document-card {
  height: 100%;
}

.hh-helper-document-card .hh-gallery-image,
.hh-helper-document-card .hh-image-fallback {
  height: 210px;
}

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

.hh-helper-mini-item {
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 251, 0.96) 100%);
  border: 1px solid var(--borderColor);
}

.hh-helper-mini-item strong {
  display: block;
  color: var(--titleColor);
  margin-bottom: 8px;
}

.hh-helper-mini-item span,
.hh-helper-mini-item small {
  display: block;
  color: var(--paragraphColor);
}

.admin-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-sidebar-wrap {
  position: sticky;
  top: 110px;
  z-index: 5;
}

.admin-sidebar-card,
.admin-sidebar-nav,
.admin-page-header,
.admin-card,
.admin-table-wrapper,
.admin-form-card,
.admin-detail-card {
  background: linear-gradient(180deg, var(--panelColor) 0%, var(--optionalColor) 100%);
  border: 1px solid var(--borderColor);
  border-radius: 18px;
  box-shadow: 0 18px 36px var(--shadowColor);
}

.admin-sidebar-card,
.admin-sidebar-nav,
.admin-page-header,
.admin-card,
.admin-table-wrapper,
.admin-form-card,
.admin-detail-card {
  padding: 24px;
  margin-bottom: 24px;
}

.admin-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-sidebar-link,
.admin-sidebar-group-button,
.admin-sidebar-sublink {
  width: 100%;
  border: 1px solid var(--borderColor);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 251, 0.96) 100%);
  color: var(--titleColor);
  transition: all 0.3s ease;
}

.admin-sidebar-link,
.admin-sidebar-sublink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.admin-sidebar-group-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  text-align: left;
}

.admin-sidebar-group-button span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.admin-sidebar-link:hover,
.admin-sidebar-link.is-active,
.admin-sidebar-group-button:hover,
.admin-sidebar-group-button.is-open,
.admin-sidebar-sublink:hover,
.admin-sidebar-sublink.is-active {
  background: linear-gradient(135deg, var(--mainColor) 0%, #7ec8bf 100%);
  border-color: var(--mainColor);
  color: var(--whiteColor);
}

.admin-sidebar-submenu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding-left: 14px;
}

.admin-sidebar-footer {
  margin-top: 16px;
}

.admin-sidebar-logout {
  width: 100%;
}

.admin-content {
  min-width: 0;
}

.admin-page-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.admin-page-head h3 {
  margin-bottom: 10px;
}

.admin-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-sidebar-toggle {
  display: none;
}

.admin-table-wrapper .hh-table {
  min-width: 900px;
}

.admin-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-table-actions .default-btn {
  padding: 10px 14px;
  font-size: 13px;
}

.admin-table-sort-button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-table-sort-button:hover {
  color: var(--secondaryColor);
}

.admin-sort-indicator {
  min-width: 12px;
  color: var(--secondaryColor);
  font-size: 12px;
}

.admin-photo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--mutedColor);
}

.admin-photo-fallback {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mutedColor);
  color: var(--paragraphColor);
  font-size: 12px;
}

.admin-inline-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-inline-user strong {
  display: block;
  color: var(--titleColor);
  margin-bottom: 4px;
}

.admin-inline-user span,
.admin-inline-user small {
  display: block;
  color: var(--paragraphColor);
}

.admin-filter-grid,
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-filter-toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-filter-toolbar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-filter-toolbar .form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 0;
  min-width: 0;
}

.admin-filter-grid .form-group label {
  display: block;
  color: var(--titleColor);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.admin-filter-toolbar .form-control,
.admin-filter-toolbar .nice-select {
  min-height: 52px;
}

.admin-filter-toolbar .nice-select {
  width: 100%;
  float: none;
  line-height: 50px;
}

.admin-filter-grid-helpers {
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
}

.admin-filter-actions {
  justify-content: flex-end;
}

.admin-filter-actions .admin-table-actions {
  align-items: stretch;
  flex-wrap: nowrap;
}

.admin-filter-actions .default-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 18px;
}

.admin-form-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-grid .form-group label,
.admin-form-grid-two .form-group label {
  display: block;
  color: var(--titleColor);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.admin-image-preview {
  width: 100%;
  min-height: 220px;
  border-radius: 16px;
  border: 1px dashed var(--borderColor);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 251, 0.96) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paragraphColor);
  overflow: hidden;
}

.admin-image-preview img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-kicker {
  display: inline-block;
  color: var(--secondaryColor);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.admin-form-card[hidden],
.admin-detail-card[hidden] {
  display: none !important;
}

.admin-section-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.admin-card-label {
  display: block;
  color: var(--paragraphColor);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-detail-text,
.admin-richtext-preview {
  white-space: pre-line;
  color: var(--paragraphColor);
}

.admin-richtext-preview {
  line-height: 1.8;
}

.admin-thumbnail {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--mutedColor);
}

.admin-thumbnail-link {
  display: inline-flex;
}

.admin-thumbnail-fallback {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--mutedColor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paragraphColor);
  font-size: 12px;
  text-align: center;
  padding: 8px;
}

.admin-attachment-list,
.admin-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-attachment-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--borderColor);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 251, 0.96) 100%);
  color: var(--titleColor);
  font-size: 14px;
}

.admin-link-button {
  color: var(--secondaryColor);
  font-weight: 600;
}

.admin-link-button:hover {
  color: var(--mainColor);
}

.admin-muted-copy {
  color: var(--paragraphColor);
  font-size: 14px;
}

.admin-empty-inline {
  color: var(--paragraphColor);
  font-style: italic;
}

.admin-image-frame {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--borderColor);
}

.admin-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.admin-review-modal .modal-content {
  border: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 251, 0.98) 100%);
  box-shadow: 0 30px 70px rgba(47, 53, 66, 0.14);
}

.admin-review-modal .modal-header,
.admin-review-modal .modal-footer {
  border-color: var(--borderColor);
}

.admin-doc-card {
  height: 100%;
}

.admin-status-select {
  max-width: 260px;
}

.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
  color: var(--paragraphColor) !important;
}

.dataTables_wrapper .dataTables_filter label,
.dataTables_wrapper .dataTables_length label {
  color: var(--paragraphColor);
  font-size: 14px;
  font-weight: 600;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
  min-height: 46px;
  border: 1px solid var(--borderColor);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 251, 0.98) 100%);
  color: var(--titleColor);
  padding: 10px 14px;
  margin-left: 8px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 999px !important;
  border: 1px solid var(--borderColor) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 251, 0.98) 100%) !important;
  color: var(--titleColor) !important;
  margin-left: 6px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border-color: var(--mainColor) !important;
  background: linear-gradient(135deg, var(--mainColor) 0%, #7ec8bf 100%) !important;
  color: var(--whiteColor) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

@media only screen and (max-width: 991px) {
  .hh-account-grid {
    grid-template-columns: 1fr;
  }

  .hh-helper-kyc-head {
    flex-direction: column;
  }

  .hh-helper-inline-list {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar-wrap {
    position: static;
  }

  .admin-sidebar-toggle {
    display: inline-flex;
  }

  .admin-sidebar-wrap {
    display: none;
  }

  body.admin-sidebar-open .admin-sidebar-wrap {
    display: block;
  }

  .admin-page-head {
    flex-direction: column;
  }

  .admin-filter-grid,
  .admin-form-grid,
  .admin-form-grid-two,
  .admin-detail-grid {
    grid-template-columns: 1fr;
  }

  .admin-filter-actions .admin-table-actions {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1199px) {
  .admin-filter-grid-helpers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .admin-filter-actions .admin-table-actions {
    flex-direction: column;
  }

  .admin-filter-actions .default-btn {
    width: 100%;
  }
}

/* Shared navigation refinements */
.gs-menu-logo {
  flex: 0 0 auto;
}

.gs-menu-logo img {
  display: block;
  width: 72px;
  height: 56px;
  object-fit: contain;
}

.main-nav .navbar {
  min-height: 72px;
}

.main-nav .user-btn a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--titleColor);
  font-size: 14px;
  font-weight: 700;
}

.gs-user-label {
  white-space: nowrap;
}

.gs-mobile-account-link {
  display: none;
}

/* Login and registration pages */
.hh-auth-page .inner-banner .inner-title {
  max-width: 760px;
  margin-inline: auto;
}

.hh-auth-page .inner-banner .inner-title p {
  max-width: 660px;
  margin: 14px auto 0;
}

.hh-auth-layout > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.hh-auth-intro {
  position: relative;
  overflow: hidden;
  flex: 1;
  background:
    radial-gradient(circle at 100% 0%, rgba(126, 200, 191, 0.22), transparent 38%),
    linear-gradient(145deg, var(--optionalColor) 0%, var(--whiteColor) 100%);
}

.hh-auth-intro::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(242, 155, 119, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hh-auth-form-card {
  height: 100%;
  border-top: 4px solid var(--mainColor);
}

.hh-auth-form-card .hh-register-form {
  max-width: 620px;
  margin-inline: auto;
}

.hh-auth-form-card .form-control,
.hh-register-panel .form-control {
  min-height: 54px;
  border-radius: 12px;
}

.hh-auth-form-card .user-all-btn,
.hh-register-panel .user-all-btn {
  min-height: 52px;
  padding: 13px 28px;
}

.hh-auth-form-card .account-desc {
  margin-top: 14px;
  margin-bottom: 0;
}

.hh-auth-links-card a,
.hh-auth-form-card .account-desc a {
  color: var(--secondaryColor);
  font-weight: 700;
}

.hh-role-picker {
  position: sticky;
  top: 92px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.hh-role-card {
  cursor: pointer;
}

.hh-role-description {
  display: block;
  color: var(--paragraphColor);
  line-height: 1.65;
}

.hh-role-card:focus-visible {
  outline: 3px solid rgba(126, 200, 191, 0.45);
  outline-offset: 3px;
}

@media only screen and (max-width: 1199px) {
  .gs-user-label {
    display: none;
  }

  .main-nav nav .navbar-nav .nav-item a {
    margin-left: 9px;
    margin-right: 9px;
  }
}

@media only screen and (max-width: 991px) {
  .hh-auth-section {
    padding-top: 64px !important;
    padding-bottom: 40px !important;
  }

  .hh-auth-intro {
    flex: initial;
  }

  .hh-role-picker {
    position: static;
  }

  .navbar-area,
  .mobile-nav.mean-container .mean-bar {
    min-height: 76px;
  }

  .mobile-nav.mean-container .mean-bar {
    padding-top: 10px;
    background: var(--whiteColor);
    box-shadow: 0 8px 24px rgba(47, 53, 66, 0.08);
  }

  .mobile-nav .logo {
    top: 8px;
    left: 16px;
  }

  .mobile-nav .logo img,
  .gs-menu-logo img {
    width: 62px !important;
    height: 54px !important;
    object-fit: contain;
  }

  .mean-container a.meanmenu-reveal {
    top: 7px;
    right: 8px;
    width: 44px;
    height: 44px;
    padding: 8px !important;
    border-radius: 12px;
    background: var(--mainColor);
  }

  .mean-container a.meanmenu-reveal span {
    width: 24px;
    margin: 4px auto 0;
  }

  .mean-container .mean-nav {
    margin-top: 66px;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 36px rgba(47, 53, 66, 0.12);
  }

  .mean-container .mean-nav ul li a {
    width: 100%;
    padding: 14px 20px;
    border-color: var(--borderColor);
    color: var(--titleColor);
    font-size: 15px;
    font-weight: 600;
  }

  .mean-container .mean-nav ul li a.active {
    color: var(--mainColor);
    background: rgba(126, 200, 191, 0.1);
  }

  .mean-container .mean-nav .gs-mobile-account-link {
    display: block;
  }

  .mean-container .mean-nav .gs-mobile-account-link a {
    color: var(--mainColor);
  }

  .mean-container .mean-nav .gs-mobile-register-link a {
    margin: 8px 16px 16px;
    width: calc(100% - 32px);
    border: 0;
    border-radius: 12px;
    background: var(--mainColor);
    color: var(--whiteColor);
    text-align: center;
  }

  .side-nav-responsive {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .navbar-area,
  .mobile-nav.mean-container .mean-bar {
    min-height: 76px;
  }

  .mobile-nav.mean-container .mean-bar {
    padding-top: 10px;
    background: var(--whiteColor);
    box-shadow: 0 8px 24px rgba(47, 53, 66, 0.08);
  }

  .mobile-nav .logo {
    top: 8px;
    left: 16px;
  }

  .mobile-nav .logo img,
  .gs-menu-logo img {
    width: 62px !important;
    height: 54px !important;
    object-fit: contain;
  }

  .mean-container a.meanmenu-reveal {
    top: 7px;
    right: 8px;
    width: 44px;
    height: 44px;
    padding: 8px !important;
    border-radius: 12px;
    background: var(--mainColor);
  }

  .mean-container a.meanmenu-reveal span {
    width: 24px;
    margin: 4px auto 0;
  }

  .mean-container .mean-nav {
    margin-top: 66px;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 36px rgba(47, 53, 66, 0.12);
  }

  .mean-container .mean-nav ul li a {
    width: 100%;
    padding: 14px 20px;
    border-color: var(--borderColor);
    color: var(--titleColor);
    font-size: 15px;
    font-weight: 600;
  }

  .mean-container .mean-nav ul li a.active {
    color: var(--mainColor);
    background: rgba(126, 200, 191, 0.1);
  }

  .mean-container .mean-nav .gs-mobile-account-link {
    display: block;
  }

  .mean-container .mean-nav .gs-mobile-account-link a {
    color: var(--mainColor);
  }

  .mean-container .mean-nav .gs-mobile-register-link a {
    margin: 8px 16px 16px;
    width: calc(100% - 32px);
    border: 0;
    border-radius: 12px;
    background: var(--mainColor);
    color: var(--whiteColor);
    text-align: center;
  }

  .side-nav-responsive {
    display: none;
  }

  .hh-auth-page .inner-banner .inner-title {
    padding-inline: 6px;
  }

  .hh-auth-page .inner-banner .inner-title h3 {
    font-size: 30px;
    line-height: 1.18;
  }

  .hh-auth-page .inner-banner .inner-title p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hh-auth-section {
    padding-top: 42px !important;
    padding-bottom: 24px !important;
  }

  .hh-auth-page .hh-section-card {
    padding: 22px 18px;
    margin-bottom: 20px;
    border-radius: 14px;
  }

  .hh-auth-page .hh-section-card h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hh-auth-page .hh-section-card h3 {
    font-size: 22px;
  }

  .hh-auth-page .hh-summary-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hh-auth-page .hh-summary-list strong {
    font-size: 14px;
  }

  .hh-role-grid {
    gap: 12px;
  }

  .hh-role-card {
    padding: 18px;
  }

  .hh-role-card strong {
    font-size: 19px;
  }

  .hh-auth-form-card .user-all-btn,
  .hh-register-panel .user-all-btn {
    width: 100%;
  }

  .hh-auth-form-card .account-desc {
    text-align: center;
  }

  .hh-auth-page .agree-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .hh-auth-page .agree-label input {
    flex: 0 0 auto;
    margin-top: 4px;
  }
}

@media only screen and (max-width: 374px) {
  .hh-auth-page .inner-banner .inner-title h3 {
    font-size: 26px;
  }

  .hh-auth-page .hh-section-card {
    padding-inline: 15px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--gs-background);
  color: var(--gs-text);
  font-size: 16px;
  line-height: 1.7;
}

body.gs-menu-open {
  overflow: hidden;
}

.container,
.container-max {
  max-width: var(--gs-container);
}

a,
button,
input,
select,
textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gs-focus) !important;
  outline-offset: 3px;
}

.gs-skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gs-heading);
  color: #fff;
  transform: translateY(-160%);
}

.gs-skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.switch-box {
  display: none !important;
}

.border-radius,
.default-btn {
  border-radius: var(--gs-radius-button);
}

.default-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  background: var(--gs-primary);
  font-weight: 700;
  line-height: 1.2;
}

.default-btn:hover,
.default-btn:focus {
  background: var(--gs-primary-hover);
  color: #fff;
}

.main-nav {
  padding: 0;
  border-bottom: 1px solid var(--gs-border);
  background: rgba(255, 255, 255, 0.98);
}

.main-nav .navbar {
  height: 76px;
  padding: 0 24px;
}

.main-nav nav .navbar-nav .nav-item {
  padding: 0;
}

.main-nav nav .navbar-nav .nav-item a {
  margin: 0 11px;
  color: var(--gs-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active {
  color: var(--gs-primary);
}

.gs-desktop-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 14px;
}

.gs-login-link {
  min-height: 44px;
  padding: 9px 13px;
  color: var(--gs-heading);
  font-weight: 700;
}

.gs-create-account {
  min-height: 46px;
  padding: 11px 18px;
  color: #fff;
}

.sticky-nav .main-nav {
  border-bottom-color: transparent;
  box-shadow: 0 8px 24px rgba(38, 51, 45, 0.08);
}

.inner-banner {
  min-height: 300px;
}

.inner-banner::before {
  background: rgba(38, 51, 45, 0.68);
}

.inner-banner .inner-title ul,
.inner-banner .banner-list {
  display: none;
}

.inner-banner .inner-title,
.inner-banner .inner-banner-title {
  padding-top: 110px;
  padding-bottom: 56px;
}

.inner-banner .inner-title h3,
.inner-banner .inner-banner-title h3 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
}

.hh-section-card,
.price-card,
.listing-section-right,
.contact-form,
.faq-accordion {
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-card);
  box-shadow: var(--gs-shadow);
}

.form-control,
.nice-select {
  min-height: 52px;
  border: 1px solid var(--gs-border) !important;
  border-radius: 10px !important;
  background: #fff;
  color: var(--gs-heading);
  font-size: 16px;
}

.form-control:focus {
  border-color: var(--gs-primary) !important;
  box-shadow: 0 0 0 4px rgba(102, 123, 106, 0.14) !important;
}

.gs-site-footer {
  padding: 64px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #17251f;
  color: #d8e2db;
}

.gs-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.8fr) repeat(3, minmax(120px, 0.72fr)) minmax(180px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.gs-footer-brand-link {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px !important;
}

.gs-footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.gs-footer-brand-link span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gs-footer-brand p {
  max-width: 360px;
  margin: 0 0 18px;
  color: #d8e2db;
  font-size: 15px;
  line-height: 1.7;
}

.gs-footer-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aebbb2;
  font-size: 13px;
  font-weight: 600;
}

.gs-footer-trust i {
  color: #e99678;
  font-size: 18px;
}

.gs-site-footer h2 {
  margin: 2px 0 18px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.gs-footer-links a {
  display: block;
  width: fit-content;
  min-height: 36px;
  margin-bottom: 3px;
  padding: 5px 0;
  color: #d8e2db;
  font-size: 15px;
  line-height: 1.65;
}

.gs-footer-links a:hover,
.gs-footer-links a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.gs-appearance-label {
  display: block;
  margin: 2px 0 6px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.gs-footer-appearance p {
  margin: 0 0 14px;
  color: #aebbb2;
  font-size: 13px;
  line-height: 1.5;
}

.gs-appearance-select {
  width: 100%;
  min-height: 44px;
  padding: 8px 36px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: #ffffff;
  color: #1f2a25;
  font-size: 14px;
  font-weight: 600;
}

.gs-appearance-select:focus-visible {
  outline-color: #e99678 !important;
}

.gs-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding: 23px 12px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gs-footer-bottom p,
.gs-footer-bottom span {
  margin: 0;
  color: #aebbb2;
  font-size: 13px;
}

.slider-area .slider-item {
  min-height: 620px;
}

.slider-area .slider-item::before {
  background: linear-gradient(90deg, rgba(30, 43, 36, 0.82) 0%, rgba(30, 43, 36, 0.42) 58%, rgba(30, 43, 36, 0.08) 100%);
}

.slider-content {
  max-width: 680px;
}

.slider-content h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5.4vw, 4.75rem);
  line-height: 1.03;
}

.slider-content p {
  max-width: 600px;
  font-size: 18px;
}

.gs-hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #f5c4ae;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gs-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--gs-radius-button);
  color: #fff;
  font-weight: 700;
}

.gs-secondary-btn:hover {
  border-color: #fff;
  background: #fff;
  color: var(--gs-heading);
}

.slider-content .gs-trust-line {
  margin-top: 18px;
  font-size: 14px;
}

.banner-form-area {
  position: relative;
  z-index: 3;
}

.category-bg,
.process-into,
.choose-width {
  border-radius: var(--gs-radius-card);
}

.hh-role-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 310px;
}

.hh-role-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(102, 123, 106, 0.12);
  color: var(--gs-primary);
  font-size: 28px;
}

.hh-role-action {
  width: 100%;
  margin-top: auto;
  color: #fff;
  pointer-events: none;
}

.hh-role-card.is-active {
  border-width: 2px;
  background: #f7faf6;
}

.gs-password-field {
  position: relative;
}

.gs-password-field .form-control {
  padding-right: 76px;
}

.gs-password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  min-width: 58px;
  min-height: 38px;
  padding: 6px 10px;
  border: 0;
  border-radius: 7px;
  background: #eef3ed;
  color: var(--gs-heading);
  font-weight: 700;
  transform: translateY(-50%);
}

.gs-registration-progress {
  margin: 24px 0 30px;
}

.gs-registration-progress > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gs-heading);
  font-size: 14px;
  font-weight: 700;
}

.gs-registration-progress [role="progressbar"] {
  height: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: #e5ebe4;
}

.gs-registration-progress [role="progressbar"] i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gs-primary);
  transition: width 0.25s ease;
}

.gs-registration-step {
  width: 100%;
}

.gs-registration-step[hidden] {
  display: none !important;
}

.gs-step-heading {
  margin-bottom: 24px;
}

.gs-step-heading > span {
  color: var(--gs-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gs-step-heading h3 {
  margin: 5px 0;
  font-size: 26px;
}

.gs-step-heading p {
  margin: 0;
}

.gs-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.gs-step-back {
  min-height: 48px;
  padding: 11px 22px;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-button);
  background: var(--gs-surface);
  color: var(--gs-heading);
  font-weight: 700;
}

.gs-step-next {
  margin-left: auto;
}

.gs-registration-review {
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--gs-border);
  border-radius: 12px;
  background: var(--optionalColor);
}

.gs-registration-review > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gs-border);
}

.gs-registration-review > div span {
  color: var(--gs-muted);
}

.gs-registration-review > div strong {
  max-width: 60%;
  color: var(--gs-heading);
  text-align: right;
  overflow-wrap: anywhere;
}

.price-card {
  height: 100%;
  padding: 30px;
  background: var(--gs-surface);
}

.pricing-area .row > [class*="col-"] {
  margin-bottom: 24px;
}

.listing-section-right {
  padding: 24px;
  background: var(--gs-surface);
}

.gs-mobile-filter-controls,
.gs-filter-actions {
  display: none;
}

.gs-required {
  color: var(--gs-error);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.place-list-item {
  overflow: hidden;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-card);
  box-shadow: var(--gs-shadow);
}

.blog-card,
.blog-card-bg {
  overflow: hidden;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-card);
  box-shadow: var(--gs-shadow);
}

.blog-article .article-content {
  max-width: 760px;
  margin-inline: auto;
}

.theme-dark {
  color-scheme: dark;
  --gs-bg-page: #17271f;
  --gs-bg-section: #22362b;
  --gs-bg-section-green: #22362b;
  --gs-bg-warm: #2d332c;
  --gs-surface: #22362b;
  --gs-surface-soft: #293e33;
  --gs-text-heading: #ffffff;
  --gs-text-body: #e3eae5;
  --gs-text-muted: #c6d2ca;
  --gs-text-subtle: #afbbb3;
  --gs-border: #405448;
  --gs-border-strong: #5b7063;
  --gs-background: var(--gs-bg-page);
  --gs-heading: var(--gs-text-heading);
  --gs-text: var(--gs-text-body);
  --gs-muted: var(--gs-text-muted);
  --titleColor: var(--gs-text-heading);
  --paragraphColor: var(--gs-text-body);
  --borderColor: var(--gs-border);
  --gs-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  --whiteColor: var(--gs-text-on-dark);
  --panelColor: var(--gs-surface);
  --optionalColor: var(--gs-surface-soft);
}

.theme-dark .main-nav,
.theme-dark .mobile-nav.mean-container .mean-bar,
.theme-dark .mean-container .mean-nav,
.theme-dark .hh-section-card,
.theme-dark .price-card,
.theme-dark .listing-section-right,
.theme-dark .form-control,
.theme-dark .nice-select {
  background: var(--gs-surface) !important;
  color: var(--gs-text);
}

.theme-dark .main-nav nav .navbar-nav .nav-item a,
.theme-dark .gs-login-link {
  color: var(--gs-heading);
}

@media only screen and (max-width: 1199px) {
  .main-nav nav .navbar-nav .nav-item a {
    margin-inline: 7px;
    font-size: 13px;
  }

  .gs-desktop-actions {
    gap: 6px;
    margin-left: 5px;
  }

  .gs-footer-grid {
    grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(140px, 0.8fr));
    gap: 34px 40px;
  }

  .gs-footer-appearance {
    max-width: 260px;
  }
}

@media only screen and (max-width: 991px) {
  .main-nav {
    display: none;
  }

  .slider-area .slider-item {
    min-height: 570px;
  }

  .inner-banner {
    min-height: 250px;
  }

  .gs-mobile-filter-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
  }

  .listing-widget-section .col-lg-4:has(.listing-section-right) {
    position: fixed;
    z-index: 2000;
    inset: 0 0 0 auto;
    width: min(92vw, 390px);
    padding: 0;
    background: var(--gs-surface);
    box-shadow: -20px 0 50px rgba(38, 51, 45, 0.2);
    transform: translateX(110%);
    transition: transform 0.25s ease;
  }

  body.gs-filters-open {
    overflow: hidden;
  }

  body.gs-filters-open .listing-widget-section .col-lg-4:has(.listing-section-right) {
    transform: translateX(0);
  }

  .listing-section-right {
    height: 100vh;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .gs-filter-actions {
    position: sticky;
    bottom: -24px;
    display: flex;
    gap: 10px;
    margin: 24px -24px -24px;
    padding: 16px 24px;
    border-top: 1px solid var(--gs-border);
    background: var(--gs-surface);
  }

  .gs-filter-actions button {
    flex: 1;
    min-height: 46px;
  }

  .gs-clear-filters {
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius-button);
    background: transparent;
    color: var(--gs-heading);
    font-weight: 700;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    padding-inline: 18px;
  }

  .pt-100,
  .ptb-100 {
    padding-top: 64px;
  }

  .pb-70,
  .ptb-100 {
    padding-bottom: 40px;
  }

  .mean-container .mean-nav {
    width: calc(100% - 24px);
    margin-inline: 12px;
    padding: 8px 0 14px;
    border: 1px solid var(--gs-border);
    background: var(--gs-surface);
  }

  .slider-area .slider-item {
    min-height: 520px;
  }

  .slider-content {
    padding-top: 105px;
    padding-bottom: 70px;
  }

  .slider-content h1 {
    font-size: clamp(2.3rem, 12vw, 3.35rem);
  }

  .slider-content p {
    font-size: 16px;
  }

  .gs-hero-actions {
    flex-direction: column;
  }

  .gs-hero-actions a {
    width: 100%;
  }

  .banner-form-area {
    margin-top: 0;
  }

  .inner-banner {
    min-height: 220px;
  }

  .inner-banner .inner-title,
  .inner-banner .inner-banner-title {
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .gs-footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .gs-site-footer {
    padding-top: 48px;
  }

  .gs-footer-brand p {
    max-width: 440px;
  }

  .gs-footer-links a {
    min-height: 40px;
    padding-block: 7px;
  }

  .gs-footer-appearance {
    width: 100%;
    max-width: 320px;
  }

  .gs-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 34px;
    padding-inline: 18px;
  }

  .hh-role-card {
    min-height: 0;
  }

  .hh-role-action {
    margin-top: 20px;
  }

  .gs-step-actions {
    flex-direction: column-reverse;
  }

  .gs-step-actions button {
    width: 100%;
  }

  .gs-registration-review > div {
    flex-direction: column;
    gap: 2px;
  }

  .gs-registration-review > div strong {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.slider-area .slider-item {
  background-image: none;
  overflow: hidden;
}

.gs-hero-picture,
.gs-hero-picture img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.gs-hero-picture img {
  object-fit: cover;
  object-position: center;
}

.slider-area .slider-item::before {
  z-index: 1;
}

.slider-area .slider-item .d-table {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .slider-area .slider-item {
    min-height: 520px;
  }

  .slider-area .slider-content {
    max-width: 620px;
    padding: 88px 20px 58px;
    text-align: left;
  }

  .slider-area .slider-content h1 {
    max-width: 580px;
    margin-inline: 0;
    font-size: clamp(2.25rem, 9vw, 2.85rem);
    line-height: 1.08;
  }

  .slider-area .slider-content p {
    font-size: clamp(1.05rem, 4.5vw, 1.2rem);
    line-height: 1.5;
  }

  .slider-area .slider-item::before {
    opacity: 1;
    background: linear-gradient(90deg, rgba(20, 31, 25, 0.86), rgba(20, 31, 25, 0.48) 75%, rgba(20, 31, 25, 0.24));
  }

  .gs-hero-picture img {
    object-position: 58% center;
  }
}

/* Privacy policy */
.gs-terms-hero {
  background-image: url("../img/inner-banner/terms-and-conditions.jpg");
  background-position: center 48%;
}

.gs-terms-hero::before {
  background: linear-gradient(
    90deg,
    var(--gs-overlay-strong) 0%,
    var(--gs-overlay-medium) 68%,
    var(--gs-overlay-strong) 100%
  );
}

.gs-policy-hero .inner-title {
  padding-bottom: 62px;
}

.gs-policy-hero .inner-title h1 {
  margin: 0 0 16px;
  color: var(--gs-text-on-dark) !important;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.08;
}

.gs-policy-eyebrow,
.gs-policy-dates {
  color: var(--gs-text-on-dark-muted) !important;
}

.gs-policy-eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gs-policy-dates {
  margin: 0;
  font-size: 15px;
}

.gs-policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 820px);
  gap: 64px;
  align-items: start;
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
  padding-block: 72px 88px;
}

.gs-policy-toc {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 128px);
  padding: 24px;
  overflow-y: auto;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-card);
  background: var(--gs-bg-section);
}

.gs-policy-toc h2 {
  margin: 0 0 14px;
  color: var(--gs-text-heading);
  font-size: 18px;
}

.gs-policy-toc ol {
  margin: 0;
  padding-left: 20px;
}

.gs-policy-toc li {
  margin-bottom: 7px;
  color: var(--gs-text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.gs-policy-toc a {
  color: var(--gs-primary-dark);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.gs-policy-toc a:hover,
.gs-policy-toc a:focus-visible {
  text-decoration-color: currentColor;
}

.gs-policy-article {
  min-width: 0;
  color: var(--gs-text-body);
  font-size: 17px;
  line-height: 1.78;
}

.gs-policy-article section {
  scroll-margin-top: 110px;
}

.gs-policy-article section + section {
  margin-top: 48px;
  padding-top: 8px;
  border-top: 1px solid var(--gs-border);
}

.gs-policy-article h2 {
  margin: 0 0 18px;
  color: var(--gs-text-heading);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  line-height: 1.3;
}

.gs-policy-article p {
  margin: 0 0 1.25em;
  color: var(--gs-text-body);
}

.gs-policy-article :is(ul, ol) {
  margin: 0 0 1.4em;
  padding-left: 1.5em;
}

.gs-policy-article li {
  margin-bottom: 0.7em;
  color: var(--gs-text-body);
}

.gs-policy-article a {
  color: var(--gs-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gs-policy-contact {
  padding: 28px;
  border: 1px solid var(--gs-border-strong);
  border-left: 5px solid var(--gs-primary);
  border-radius: var(--gs-radius-card);
  background: var(--gs-bg-section-green);
}

.gs-policy-contact address {
  margin: 0;
  color: var(--gs-text-body);
  font-style: normal;
  line-height: 1.9;
}

.gs-legal-warning {
  padding: 28px;
  border: 2px solid var(--gs-warning);
  border-radius: var(--gs-radius-card);
  background: var(--gs-bg-warm);
  box-shadow: 0 12px 28px rgba(29, 42, 36, 0.08);
}

.gs-policy-article section.gs-legal-warning + section,
.gs-policy-article section + section.gs-legal-warning {
  border-top: 2px solid var(--gs-warning);
}

.gs-legal-warning-label {
  margin: 0 0 8px !important;
  color: var(--gs-warning) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gs-acceptance-page {
  min-height: calc(100vh - 78px);
  padding: 72px 20px;
  background: var(--gs-bg-section);
}

.gs-acceptance-card {
  width: min(100%, 680px);
  margin-inline: auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-card);
  background: var(--gs-surface);
  box-shadow: var(--gs-shadow);
}

.gs-acceptance-card .gs-policy-eyebrow {
  color: var(--gs-primary-dark) !important;
}

.gs-acceptance-card h1 {
  margin-bottom: 18px;
  color: var(--gs-text-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
}

.gs-policy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0 20px;
  padding: 18px;
  border: 1px solid var(--gs-border-strong);
  border-radius: 12px;
  background: var(--gs-bg-section-green);
}

.gs-policy-checkbox input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.gs-policy-checkbox label {
  color: var(--gs-text-body);
  line-height: 1.6;
}

.gs-policy-checkbox a {
  color: var(--gs-primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 991px) {
  .gs-policy-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .gs-policy-toc {
    position: static;
    max-height: none;
    columns: 2;
    column-gap: 36px;
  }

  .gs-policy-toc h2 {
    column-span: all;
  }
}

@media (max-width: 575px) {
  .gs-policy-layout {
    width: min(calc(100% - 32px), 1180px);
    padding-block: 52px 64px;
  }

  .gs-policy-toc {
    columns: 1;
    padding: 20px;
  }

  .gs-policy-article {
    font-size: 16px;
  }

  .gs-policy-article section + section {
    margin-top: 38px;
  }

  .gs-policy-contact {
    padding: 22px 18px;
  }
}

/* Semantic text hierarchy */
.section-title > span,
.contact-form > span,
.faq-contact .contact-form > span,
.gs-hero-eyebrow {
  color: var(--gs-primary-dark);
}

.section-title h1,
.section-title h2,
.section-title h3,
.card-title,
.hh-stat-value,
.hh-account-stat h4,
.single-counter h3 {
  color: var(--gs-text-heading);
}

.section-title p,
.hh-stat-label,
.hh-stat-meta,
.hh-muted,
.hh-form-note,
.single-counter span {
  color: var(--gs-text-muted);
}

/* Reusable photograph treatment: every text-bearing image surface receives a
   controlled overlay and explicit on-dark text tokens. */
.inner-banner::before,
.video-area-bg::before,
.video-area-two::before {
  background: var(--gs-overlay-strong);
  opacity: 1;
}

.slider-area .slider-item::before {
  background: linear-gradient(
    90deg,
    var(--gs-overlay-strong) 0%,
    var(--gs-overlay-medium) 52%,
    var(--gs-overlay-light) 100%
  );
}

.inner-banner :is(h1, h2, h3, h4, p, li, a, i),
.slider-area .slider-content :is(h1, h2, h3, h4, p),
.video-area-bg .video-content :is(h1, h2, h3, h4, p),
.video-area-two .video-option :is(h1, h2, h3, h4, p, span),
.counter-area-three .single-counter :is(h3, span) {
  color: var(--gs-text-on-dark) !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.slider-area .slider-content .gs-hero-eyebrow {
  color: var(--gs-text-on-dark-muted) !important;
}

.city-item {
  overflow: hidden;
  border-radius: var(--gs-radius-card);
  background: var(--gs-bg-dark);
}

.city-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    var(--gs-overlay-medium) 0%,
    var(--gs-overlay-light) 48%,
    var(--gs-overlay-strong) 100%
  );
  pointer-events: none;
}

.city-item .city-content,
.city-item .city-location {
  z-index: 2;
}

.city-item .city-content :is(h3, p),
.city-item .city-location {
  color: var(--gs-text-on-dark) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.city-item .city-content i {
  border: 1px solid var(--gs-border);
  background: var(--gs-surface);
  color: var(--gs-primary-dark);
}

/* Icons and numbered steps stay visible on light surfaces. */
.process-card .icon-bg,
.process-card i::after,
.choose-card i::after {
  background: var(--gs-primary-soft);
}

.process-card i,
.choose-card i,
.process-card .process-number,
.process-item .process-item-number {
  color: var(--gs-primary-dark);
}

.process-card .process-number,
.process-item .process-item-number {
  font-weight: 700;
}

.process-card .process-number.active,
.process-item .process-item-number.active {
  color: var(--gs-accent-dark);
}

/* White glyphs are only used on sufficiently dark filled controls. */
.price-card .content i,
.category-box a i,
.category-box-card a i,
.listing-widget .title,
.blog-card .content .tag-btn,
.top-btn {
  background: var(--gs-primary-dark);
  color: var(--gs-text-on-dark);
}

.video-content .play-btn,
.video-option .video-btn .play-video {
  border: 2px solid var(--gs-text-on-dark);
  background: var(--gs-primary-dark);
  color: var(--gs-text-on-dark);
}

/* Surface text never inherits photograph or dark-section colours. */
.price-card,
.category-card,
.category-box,
.category-box-card,
.place-card .content,
.place-list-item .content,
.testimonial-item,
.contact-card,
.contact-form,
.listing-widget,
.listing-widget-side,
.blog-card .content,
.blog-widget,
.faq-item {
  color: var(--gs-text-body);
}

.price-card :is(h2, h3, h4),
.category-card :is(h2, h3, h4),
.category-box :is(h2, h3, h4),
.category-box-card :is(h2, h3, h4),
.place-card .content :is(h2, h3, h4),
.place-list-item .content :is(h2, h3, h4),
.testimonial-item :is(h2, h3, h4),
.contact-card :is(h2, h3, h4),
.contact-form :is(h2, h3, h4),
.listing-widget :is(h2, h3, h4),
.listing-widget-side :is(h2, h3, h4),
.blog-card .content :is(h2, h3, h4),
.blog-widget :is(h2, h3, h4),
.faq-item :is(h2, h3, h4) {
  color: var(--gs-text-heading);
  text-shadow: none;
}

.theme-dark .section-title > span,
.theme-dark .contact-form > span,
.theme-dark .faq-contact .contact-form > span {
  color: var(--gs-text-on-dark-muted);
}

/* FAQ content owns its layout instead of inheriting Bootstrap pagination/card rules. */
.gs-faq-content {
  padding: 72px 0;
  background: #fff;
}

.gs-faq-container {
  width: min(calc(100% - 40px), 1200px);
  margin-inline: auto;
}

.gs-faq-content .section-title {
  margin-bottom: 44px;
}

.gs-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 64px;
  align-items: start;
}

.gs-faq-grid .faq-item {
  min-width: 0;
  margin: 0;
}

.gs-faq-grid .faq-question {
  margin: 0 0 14px;
  color: #1f2a25;
  font-size: clamp(1.15rem, 1.5vw, 1.38rem);
  font-weight: 600;
  line-height: 1.35;
}

.gs-faq-grid .faq-answer {
  max-width: 100%;
  margin: 0;
  color: #44504a;
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.gs-faq-related {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid #dce4df;
}

.gs-faq-related a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 18px;
  border: 1px solid #82937f;
  border-radius: 9px;
  color: #33443b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.gs-faq-related a:hover,
.gs-faq-related a:focus-visible {
  background: #82937f;
  color: #fff;
}

/* Shared public-page alignment and overflow safeguards. */
body {
  overflow-x: clip;
}

main,
section,
article,
.container,
.container-fluid,
.row > * {
  min-width: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.form-control,
.form-select,
textarea,
input,
select {
  max-width: 100%;
}

.section-title,
.inner-title,
.inner-banner-title,
.contact-form,
.faq-contact,
.blog-card,
.listing-widget,
.listing-widget-side,
.price-card {
  overflow-wrap: anywhere;
}

.gs-site-footer a,
.footer-area a {
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .gs-faq-content {
    padding: 52px 0;
  }

  .gs-faq-container {
    width: min(calc(100% - 32px), 1200px);
  }

  .gs-faq-content .section-title {
    margin-bottom: 32px;
  }

  .gs-faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .gs-faq-related {
    align-items: stretch;
    margin-top: 38px;
  }

  .gs-faq-related a {
    width: 100%;
  }
}

body:not(.theme-dark) {
  background: var(--gs-bg-page);
  color: var(--gs-text-body);
}

body:not(.theme-dark) p,
body:not(.theme-dark) li,
body:not(.theme-dark) label {
  color: var(--gs-text-body);
}

body:not(.theme-dark) h1,
body:not(.theme-dark) h2,
body:not(.theme-dark) h3,
body:not(.theme-dark) h4,
body:not(.theme-dark) h5,
body:not(.theme-dark) h6 {
  color: var(--gs-text-heading);
}

/* Preserve the approved navigation structure while improving contrast. */
.main-nav,
.sticky-nav .main-nav {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: var(--gs-bg-dark);
}

.main-nav nav .navbar-nav .nav-item a,
.gs-login-link {
  color: var(--gs-text-on-dark);
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active,
.gs-login-link:hover,
.gs-login-link:focus {
  color: var(--gs-text-on-dark-muted);
}

.gs-create-account,
.main-nav .default-btn {
  background: var(--gs-primary);
  color: var(--gs-text-on-dark);
}

.gs-create-account:hover,
.gs-create-account:focus,
.main-nav .default-btn:hover,
.main-nav .default-btn:focus {
  background: var(--gs-primary-hover);
  color: var(--gs-text-on-dark);
}

.main-nav .gs-menu-logo img {
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.15));
}

/* Keep the image, protect the people on the right, and make copy readable. */
.slider-area .slider-item::before {
  background:
    linear-gradient(
      90deg,
      var(--gs-overlay-strong) 0%,
      var(--gs-overlay-medium) 42%,
      var(--gs-overlay-light) 74%,
      transparent 100%
    );
}

.slider-area .slider-content h1,
.slider-area .slider-content h1 b,
.slider-area .slider-content p,
.slider-area .slider-content .gs-trust-line {
  color: var(--gs-text-on-dark);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.slider-area .slider-content {
  max-width: 660px;
}

.gs-hero-eyebrow {
  color: var(--gs-text-on-dark-muted);
}

/* Light search surface */
body:not(.theme-dark) .banner-form-area {
  background: transparent;
}

body:not(.theme-dark) .banner-form {
  border: 1px solid var(--gs-border);
  background: var(--gs-surface);
  box-shadow: 0 18px 44px rgba(31, 42, 37, 0.14);
}

body:not(.theme-dark) .banner-form .form-group .form-control,
body:not(.theme-dark) .banner-form .nice-select,
body:not(.theme-dark) .banner-form .nice-select .list {
  background: var(--gs-surface);
  color: var(--gs-text-heading);
}

body:not(.theme-dark) .banner-form .nice-select {
  border: 1px solid var(--gs-border) !important;
}

body:not(.theme-dark) .banner-form .form-group .form-control::placeholder {
  color: var(--gs-text-muted);
  opacity: 1;
}

/* Public content remains light; only the header, footer and deliberate CTAs are dark. */
body:not(.theme-dark) .category-area,
body:not(.theme-dark) .place-list-area,
body:not(.theme-dark) .listing-widget-section,
body:not(.theme-dark) .pricing-area,
body:not(.theme-dark) .faq-area,
body:not(.theme-dark) .faq-section,
body:not(.theme-dark) .contact-area,
body:not(.theme-dark) .user-section,
body:not(.theme-dark) .listing-area,
body:not(.theme-dark) .blog-area,
body:not(.theme-dark) .team-area,
body:not(.theme-dark) .cart-wraps-area,
body:not(.theme-dark) .checkout-area,
body:not(.theme-dark) .hh-auth-section {
  background: var(--gs-bg-page) !important;
}

body:not(.theme-dark) .process-area,
body:not(.theme-dark) .choose-area-two,
body:not(.theme-dark) .application-area,
body:not(.theme-dark) .testimonial-area,
body:not(.theme-dark) .city-area {
  background-color: var(--gs-bg-section) !important;
}

body:not(.theme-dark) .category-bg,
body:not(.theme-dark) .process-into,
body:not(.theme-dark) .choose-width {
  border: 1px solid var(--gs-border);
  background: var(--gs-bg-section-green) !important;
  box-shadow: none;
}

body:not(.theme-dark) .category-card,
body:not(.theme-dark) .category-box,
body:not(.theme-dark) .category-box-card,
body:not(.theme-dark) .place-list-item,
body:not(.theme-dark) .place-list-item .content,
body:not(.theme-dark) .place-card .content,
body:not(.theme-dark) .price-card,
body:not(.theme-dark) .listing-section-right,
body:not(.theme-dark) .listing-widget,
body:not(.theme-dark) .listing-widget-side,
body:not(.theme-dark) .listing-widget-into .listing-right-form,
body:not(.theme-dark) .contact-card,
body:not(.theme-dark) .contact-form,
body:not(.theme-dark) .faq-accordion .accordion-item,
body:not(.theme-dark) .faq-contact .contact-form,
body:not(.theme-dark) .blog-card,
body:not(.theme-dark) .blog-card .content,
body:not(.theme-dark) .blog-widget,
body:not(.theme-dark) .hh-section-card,
body:not(.theme-dark) .hh-role-card,
body:not(.theme-dark) .hh-config-card,
body:not(.theme-dark) .gs-registration-review {
  border-color: var(--gs-border) !important;
  background: var(--gs-surface) !important;
  color: var(--gs-text-body) !important;
  box-shadow: 0 12px 30px rgba(31, 42, 37, 0.08);
}

body:not(.theme-dark) .category-card {
  min-height: 245px;
  padding: 28px 22px;
  border: 1px solid #dce4df;
  border-radius: 16px;
}

body:not(.theme-dark) .category-card a i {
  color: var(--gs-primary-dark);
}

body:not(.theme-dark) .category-card a h3,
body:not(.theme-dark) .category-box a h3,
body:not(.theme-dark) .category-box-card h3 a,
body:not(.theme-dark) .place-card .content h3,
body:not(.theme-dark) .price-card h2,
body:not(.theme-dark) .price-card h3,
body:not(.theme-dark) .listing-widget .title,
body:not(.theme-dark) .faq-accordion .accordion-title,
body:not(.theme-dark) .blog-card h3 a {
  color: var(--gs-text-heading) !important;
}

body:not(.theme-dark) .category-card p,
body:not(.theme-dark) .price-card li,
body:not(.theme-dark) .listing-widget p,
body:not(.theme-dark) .faq-item p,
body:not(.theme-dark) .blog-card p {
  color: var(--gs-text-body) !important;
}

body:not(.theme-dark) .form-control,
body:not(.theme-dark) .form-select,
body:not(.theme-dark) .nice-select,
body:not(.theme-dark) textarea,
body:not(.theme-dark) input {
  border-color: var(--gs-border) !important;
  background-color: var(--gs-surface) !important;
  color: var(--gs-text-heading) !important;
}

body:not(.theme-dark) .nice-select .list,
body:not(.theme-dark) .nice-select .option {
  background: var(--gs-surface);
  color: var(--gs-text-heading);
}

body:not(.theme-dark) .nice-select .option:hover,
body:not(.theme-dark) .nice-select .option.focus,
body:not(.theme-dark) .nice-select .option.selected {
  background: var(--gs-bg-section-green) !important;
  color: var(--gs-text-heading) !important;
}

body:not(.theme-dark) .section-title span,
body:not(.theme-dark) .hh-role-label,
body:not(.theme-dark) .gs-step-heading > span {
  color: var(--gs-primary-dark);
}

/* The optional dark theme remains explicit and readable. */
body.theme-dark {
  color-scheme: dark;
}

@media only screen and (max-width: 991px) {
  .mobile-nav.mean-container .mean-bar {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background: #17251f;
  }

  .mean-container a.meanmenu-reveal {
    background: #92a18f;
  }

  .mean-container a.meanmenu-reveal span {
    background: #ffffff;
  }

  body:not(.theme-dark) .mean-container .mean-nav {
    border-color: #dce4df;
    background: #ffffff;
  }

  body:not(.theme-dark) .mean-container .mean-nav ul li a {
    color: #1f2a25;
  }
}

@media only screen and (max-width: 767px) {
  .slider-area .slider-item::before {
    background:
      linear-gradient(
        90deg,
        rgba(18, 37, 30, 0.86) 0%,
        rgba(18, 37, 30, 0.64) 58%,
        rgba(18, 37, 30, 0.28) 100%
      );
  }
}

/* Final footer colour guard: page theme rules must not reduce footer contrast. */
body:not(.theme-dark) .gs-site-footer,
body.theme-dark .gs-site-footer {
  background: #17251f;
  color: #d8e2db;
}

body:not(.theme-dark) .gs-site-footer h2,
body:not(.theme-dark) .gs-site-footer .gs-footer-brand-link span,
body:not(.theme-dark) .gs-site-footer .gs-appearance-label,
body.theme-dark .gs-site-footer h2,
body.theme-dark .gs-site-footer .gs-footer-brand-link span,
body.theme-dark .gs-site-footer .gs-appearance-label {
  color: #ffffff;
}

body:not(.theme-dark) .gs-site-footer .gs-footer-brand p,
body:not(.theme-dark) .gs-site-footer .gs-footer-links a,
body.theme-dark .gs-site-footer .gs-footer-brand p,
body.theme-dark .gs-site-footer .gs-footer-links a {
  color: #d8e2db;
}

body:not(.theme-dark) .gs-site-footer .gs-footer-trust,
body:not(.theme-dark) .gs-site-footer .gs-footer-appearance p,
body:not(.theme-dark) .gs-site-footer .gs-footer-bottom p,
body:not(.theme-dark) .gs-site-footer .gs-footer-bottom span,
body.theme-dark .gs-site-footer .gs-footer-trust,
body.theme-dark .gs-site-footer .gs-footer-appearance p,
body.theme-dark .gs-site-footer .gs-footer-bottom p,
body.theme-dark .gs-site-footer .gs-footer-bottom span {
  color: #aebbb2;
}

body:not(.theme-dark) .gs-site-footer .gs-footer-links a:hover,
body:not(.theme-dark) .gs-site-footer .gs-footer-links a:focus-visible,
body.theme-dark .gs-site-footer .gs-footer-links a:hover,
body.theme-dark .gs-site-footer .gs-footer-links a:focus-visible {
  color: #ffffff;
}
/* Shared responsive navigation. Kept independent of the legacy meanmenu plugin. */
.gs-mobile-header,
.gs-mobile-drawer,
.gs-menu-backdrop {
  display: none;
}

@media (max-width: 1023px) {
  body.gs-menu-open {
    overflow: hidden;
  }

  .navbar-area {
    position: relative;
    z-index: 1000;
    min-height: 78px;
  }

  .navbar-area .main-nav,
  .navbar-area .mobile-nav,
  .navbar-area .side-nav-responsive {
    display: none !important;
  }

  .gs-mobile-header {
    position: relative;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 78px;
    padding: 7px 16px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(31, 42, 37, 0.09);
  }

  .gs-mobile-header .logo {
    display: inline-flex;
    align-items: center;
    min-width: 52px;
    min-height: 56px;
  }

  .gs-mobile-header .logo img {
    display: block;
    width: 64px !important;
    height: 56px !important;
    object-fit: contain;
  }

  .gs-menu-button,
  .gs-menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #dce4df;
    border-radius: 10px;
    background: #82937f;
    color: #fff;
    cursor: pointer;
  }

  .gs-menu-button {
    flex-direction: column;
    gap: 5px;
  }

  .gs-menu-button span {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .gs-menu-button:focus-visible,
  .gs-menu-close:focus-visible,
  .gs-mobile-drawer a:focus-visible {
    outline: 3px solid #33443b;
    outline-offset: 3px;
  }

  .gs-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: block;
    background: rgba(31, 42, 37, 0.45);
    opacity: 0;
    transition: opacity 180ms ease;
  }

  .gs-menu-backdrop[hidden] {
    display: none;
  }

  .gs-menu-open .gs-menu-backdrop {
    opacity: 1;
  }

  .gs-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    width: min(360px, 100vw);
    max-height: 100dvh;
    min-height: 100dvh;
    padding: 18px 22px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    color: #1f2a25;
    box-shadow: -18px 0 42px rgba(31, 42, 37, 0.18);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }

  .gs-menu-open .gs-mobile-drawer {
    transform: translateX(0);
    visibility: visible;
  }

  .gs-drawer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
  }

  .gs-menu-close {
    border-color: #dce4df;
    background: #fff;
    color: #1f2a25;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
  }

  .gs-drawer-links {
    display: flex;
    flex-direction: column;
  }

  .gs-drawer-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid #eef2ef;
    color: #1f2a25;
    font-size: 16px;
    font-weight: 600;
  }

  .gs-drawer-links a:hover,
  .gs-drawer-links a.active {
    color: #6f816d;
  }

  .gs-drawer-actions {
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid #dce4df;
  }

  .gs-drawer-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border-radius: 9px;
    background: #82937f;
    color: #fff !important;
    font-weight: 700;
  }

  .gs-drawer-primary:hover {
    background: #6f816d;
  }

  .gs-drawer-actions p {
    margin: 15px 0 0;
    color: #66736c;
    text-align: center;
    font-size: 14px;
  }

  .gs-drawer-actions p a {
    color: #33443b;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

@media (min-width: 1024px) {
  .navbar-area .main-nav {
    display: block !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gs-mobile-drawer,
  .gs-menu-backdrop {
    transition: none;
  }
}

/* Final surface boundary: these selectors intentionally follow legacy theme
   compatibility rules so light-theme inheritance cannot recolour image copy. */
body:not(.theme-dark) .inner-banner :is(h1, h2, h3, h4, p, li, a, i),
body:not(.theme-dark) .slider-area .slider-content :is(h1, h2, h3, h4, p),
body:not(.theme-dark) .video-area-bg .video-content :is(h1, h2, h3, h4, p),
body:not(.theme-dark) .video-area-two .video-option :is(h1, h2, h3, h4, p, span),
body:not(.theme-dark) .city-item :is(h1, h2, h3, h4, p),
body:not(.theme-dark) .counter-area-three .single-counter :is(h3, span) {
  color: var(--gs-text-on-dark) !important;
}

body:not(.theme-dark) .city-item .city-content i {
  background: var(--gs-surface);
  color: var(--gs-primary-dark);
}

/* Public article detail */
.gs-article-hero {
  position: relative;
  display: grid;
  min-height: clamp(300px, 36vw, 440px);
  isolation: isolate;
  overflow: hidden;
  background: var(--gs-bg-dark);
}

.gs-article-hero-fallback {
  background:
    radial-gradient(circle at 82% 20%, rgba(127, 146, 124, 0.32), transparent 34%),
    linear-gradient(135deg, var(--gs-bg-dark), var(--gs-bg-dark-soft));
}

.gs-article-hero-image,
.gs-article-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gs-article-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.gs-article-hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, var(--gs-overlay-strong), var(--gs-overlay-medium));
}

.gs-article-hero-content {
  width: min(calc(100% - 40px), var(--gs-container));
  margin: auto;
  padding-block: 72px;
}

.gs-article-kicker,
.gs-article-meta {
  color: var(--gs-text-on-dark-muted) !important;
}

.gs-article-kicker {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gs-article-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: var(--gs-text-on-dark) !important;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.06;
  text-wrap: balance;
}

.gs-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  font-size: 15px;
}

.gs-blog-detail-section {
  padding: 72px 0 82px;
  background: var(--gs-bg-page);
}

.gs-blog-message,
.gs-blog-article-container {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.gs-related-articles {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}

.gs-blog-article-container {
  color: var(--gs-text-body);
}

.gs-article-lead {
  margin: 0 0 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gs-border);
  color: var(--gs-text-heading) !important;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.65;
}

.gs-article-content {
  color: var(--gs-text-body);
  font-size: 18px;
  line-height: 1.75;
}

.gs-article-content p {
  margin: 0 0 1.4em;
}

.gs-article-content p:first-of-type::first-letter {
  float: none;
  margin: 0;
  color: inherit;
  font: inherit;
}

.gs-article-content :is(h2, h3, h4) {
  color: var(--gs-text-heading);
  line-height: 1.25;
}

.gs-article-content h2 {
  margin: 2em 0 0.75em;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.gs-article-content h3 {
  margin: 1.6em 0 0.65em;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}

.gs-article-content :is(ul, ol) {
  margin: 0 0 1.5em;
  padding-left: 1.5em;
}

.gs-article-content blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--gs-primary);
  background: var(--gs-bg-section-green);
  color: var(--gs-text-heading);
}

.gs-article-content a,
.gs-article-back a {
  color: var(--gs-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gs-article-content img {
  position: static !important;
  display: block;
  float: none !important;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 32px auto;
  border-radius: 14px;
}

.gs-article-back {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--gs-border);
}

.gs-related-articles {
  margin-top: 64px;
  padding-top: 42px;
  border-top: 1px solid var(--gs-border);
}

.gs-related-articles > h2 {
  margin-bottom: 24px;
  color: var(--gs-text-heading);
  font-size: 1.65rem;
}

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

.gs-related-card {
  overflow: hidden;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-card);
  background: var(--gs-surface);
}

.gs-related-image,
.gs-blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gs-bg-section-green);
}

.gs-related-image img,
.gs-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gs-blog-image-fallback {
  background:
    radial-gradient(circle at 70% 20%, rgba(127, 146, 124, 0.38), transparent 35%),
    linear-gradient(135deg, var(--gs-bg-dark), var(--gs-bg-dark-soft));
}

.gs-related-card > div {
  padding: 17px;
}

.gs-related-card time {
  color: var(--gs-text-muted);
  font-size: 13px;
}

.gs-related-card h3 {
  margin: 7px 0 0;
  font-size: 17px;
  line-height: 1.35;
}

.gs-related-card h3 a {
  color: var(--gs-text-heading);
}

.gs-article-skeleton span {
  display: block;
  height: 18px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--gs-bg-section-green);
}

.gs-article-skeleton span:first-child {
  width: 62%;
  height: 30px;
}

.gs-article-skeleton span:last-child {
  width: 78%;
}

.gs-article-error {
  padding: 42px;
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-card);
  text-align: center;
}

@media (max-width: 767px) {
  .gs-article-hero {
    min-height: clamp(280px, 82vw, 340px);
  }

  .gs-article-hero-content,
  .gs-blog-message,
  .gs-blog-article-container,
  .gs-related-articles {
    width: min(calc(100% - 32px), 820px);
  }

  .gs-article-hero-content {
    padding-block: 52px;
  }

  .gs-blog-detail-section {
    padding: 52px 0 62px;
  }

  .gs-article-content {
    font-size: 17px;
  }

  .gs-related-grid {
    grid-template-columns: 1fr;
  }

  .gs-article-error {
    padding: 30px 20px;
  }
}
