﻿:root {
  --ucc-ink: #1a1b1f;
  --ucc-black: #0e0f11;
  --ucc-muted: #4b525c;
  --ucc-muted-dark: #c7c2b8;
  --ucc-line: #d8d1c7;
  --ucc-panel: #fffaf1;
  --ucc-paper: #ffffff;
  --ucc-lime: #d9ff47;
  --ucc-coral: #ff621d;
  --ucc-coral-dark: #c9341d;
  --ucc-teal: #0c7f75;
  --ucc-blue: #315bff;
  --ucc-violet: #7b49ff;
  --ucc-shadow: 0 24px 70px rgba(20, 20, 20, 0.12);
}

body {
  color: #ffffff;
  background: var(--ucc-ink);
}

a {
  color: inherit;
}

.ucc-page {
  overflow: hidden;
}

.custom-cursor__cursor,
.custom-cursor__cursor-two {
  opacity: 0;
  visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor__cursor {
    width: 34px;
    height: 34px;
    border: 1px solid var(--ucc-coral);
    border-radius: 50%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999991;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
    mix-blend-mode: difference;
    opacity: 1;
    visibility: visible;
  }

  .custom-cursor__cursor-two {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999992;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0);
    background: var(--ucc-coral);
    box-shadow: 0 0 18px rgba(255, 98, 29, 0.65);
    opacity: 1;
    visibility: visible;
    transition: width 0.22s ease, height 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
  }

  .custom-cursor__cursor.custom-cursor__hover {
    width: 64px;
    height: 64px;
    background: rgba(255, 98, 29, 0.18);
    border-color: #ffffff;
  }

  .custom-cursor__cursor.click {
    width: 24px;
    height: 24px;
    background: rgba(255, 98, 29, 0.28);
  }

  .custom-cursor__cursor-two.custom-cursor__innerhover {
    width: 26px;
    height: 26px;
    opacity: 0.35;
  }
}

.ucc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 15, 17, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ucc-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ucc-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0;
  color: #ffffff;
}

.ucc-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ucc-black);
  background: var(--ucc-coral);
  box-shadow: inset -8px -8px 0 #ffffff;
  font-size: 12px;
  letter-spacing: 0;
}

.ucc-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}

.ucc-menu a:hover {
  color: var(--ucc-coral);
}

.ucc-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ucc-black);
  background: #ffffff;
  font-weight: 800;
}

.ucc-header__cta:hover {
  color: var(--ucc-black);
  transform: translateY(-2px);
}

.ucc-hero {
  position: relative;
  min-height: 790px;
  padding: 86px 0 110px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 98, 29, 0.26), transparent 24%),
    radial-gradient(circle at 86% 30%, rgba(217, 255, 71, 0.18), transparent 20%),
    linear-gradient(135deg, #1a1b1f 0%, #0e0f11 100%);
}

.ucc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.ucc-hero__shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.38;
}

.ucc-hero__shape--one {
  right: 8%;
  top: 11%;
  width: 138px;
}

.ucc-hero__shape--two {
  left: 5%;
  bottom: 14%;
  width: 110px;
}

.ucc-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.ucc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.ucc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: var(--ucc-coral);
  box-shadow: 0 0 0 6px rgba(201, 52, 29, 0.16);
}

.ucc-hero__title {
  max-width: 850px;
  margin: 0 0 22px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 94px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.ucc-hero__title,
.ucc-hero__title span:not(.ucc-hero__highlight),
.ucc-hero__title div {
  color: #ffffff !important;
}

.ucc-hero__highlight {
  display: inline-block;
  padding: 0 16px 8px;
  color: var(--ucc-black);
  background: var(--ucc-coral);
  border-radius: 34px;
  transform: rotate(-1.4deg);
}

.ucc-hero__highlight,
.ucc-hero__highlight span {
  color: var(--ucc-black) !important;
}

.ucc-hero__title .ucc-hero__highlight,
.ucc-hero__title .ucc-hero__highlight span {
  color: var(--ucc-black) !important;
}

.ucc-hero__text {
  max-width: 630px;
  margin: 0 0 32px;
  color: var(--ucc-muted-dark);
  font-size: 20px;
  line-height: 1.55;
}

.ucc-search {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  max-width: 940px;
  padding: 12px;
  border: 2px solid var(--ucc-ink);
  border-radius: 26px;
  background: var(--ucc-paper);
  box-shadow: 12px 12px 0 var(--ucc-ink);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ucc-search:focus-within {
  transform: translateY(-4px);
  box-shadow: 16px 16px 0 var(--ucc-coral);
}

.ucc-search__field {
  position: relative;
}

.ucc-search input,
.ucc-search select {
  width: 100%;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid var(--ucc-line);
  border-radius: 16px;
  outline: none;
  background: #fffdf8;
  color: var(--ucc-ink);
  font-weight: 750;
}

.ucc-search input::placeholder {
  color: #22262c;
  opacity: 1;
}

.ucc-search button {
  min-height: 64px;
  padding: 0 28px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: var(--ucc-coral-dark);
  font-weight: 900;
}

.ucc-search button:hover {
  background: var(--ucc-black);
}

.ucc-search--results {
  margin-top: 30px;
  box-shadow: 12px 12px 0 var(--ucc-coral);
}

.ucc-hero__art {
  position: relative;
  min-height: 540px;
}

.ucc-hero__photo {
  position: absolute;
  overflow: hidden;
  border: 4px solid var(--ucc-ink);
  background: #fff;
  box-shadow: var(--ucc-shadow);
}

.ucc-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ucc-hero__photo--main {
  inset: 40px 0 34px 66px;
  border-radius: 44px;
  transform: rotate(3deg);
}

.ucc-hero__photo--small {
  left: 0;
  bottom: 0;
  width: 220px;
  height: 245px;
  border-radius: 30px;
  transform: rotate(-8deg);
}

.ucc-hero__badge {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--ucc-ink);
  background: var(--ucc-lime);
  border: 3px solid var(--ucc-ink);
  font-weight: 900;
  line-height: 1.1;
  animation: uccFloat 5s ease-in-out infinite;
}

.ucc-hero__badge strong {
	font-size: 48px;
}

.ucc-section {
  position: relative;
  padding: 110px 0;
}

.ucc-section--paper {
  background: #fff;
  color: var(--ucc-ink);
}

.ucc-section--ink {
  color: #fff;
  background: var(--ucc-black);
}

.ucc-section:not(.ucc-section--paper):not(.ucc-section--ink) {
  color: #ffffff;
  background: var(--ucc-ink);
}

.ucc-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.ucc-section__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--ucc-coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.ucc-section--paper .ucc-section__eyebrow {
  color: var(--ucc-coral-dark);
}

.ucc-section__title {
  margin: 0;
  max-width: 760px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 54px;
  line-height: 1.06;
  font-weight: 850;
  letter-spacing: 0;
  color: #ffffff;
}

.ucc-section--paper .ucc-section__title {
  color: var(--ucc-ink) !important;
}

.ucc-section--ink .ucc-section__title,
.ucc-section:not(.ucc-section--paper):not(.ucc-section--ink) .ucc-section__title {
  color: #ffffff !important;
}

.ucc-section__copy {
  max-width: 430px;
  margin: 0;
  color: var(--ucc-muted);
  line-height: 1.7;
  font-weight: 600;
}

.ucc-section--ink .ucc-section__eyebrow {
  color: var(--ucc-lime);
}

.ucc-section:not(.ucc-section--paper):not(.ucc-section--ink) .ucc-section__copy,
.ucc-section--ink .ucc-section__copy {
  color: var(--ucc-muted-dark);
}

.ucc-section:not(.ucc-section--paper):not(.ucc-section--ink) .ucc-section__eyebrow {
  color: var(--ucc-coral);
}

.ucc-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.ucc-category-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 8px;
  isolation: isolate;
  background: #111;
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ucc-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.18));
  transition: opacity 0.45s ease, box-shadow 0.55s ease;
}

.ucc-category-card::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  z-index: 2;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  opacity: 0;
  background: var(--ucc-coral);
  transform: translateY(70px) scale(0.7);
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.ucc-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.ucc-category-card:hover img {
  transform: scale(1.12) rotate(1deg);
}

.ucc-category-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.ucc-category-card:hover::after {
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.22);
}

.ucc-category-card:hover::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ucc-category-card__name {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
}

.ucc-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ucc-listing-card {
  position: relative;
  min-height: 238px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ucc-listing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(217, 255, 71, 0.32), rgba(201, 52, 29, 0.1));
  transition: opacity 0.35s ease;
}

.ucc-listing-card::after {
  content: "";
  position: absolute;
  inset: -80px;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--ucc-mouse-x, 50%) var(--ucc-mouse-y, 50%), rgba(255, 98, 29, 0.18), transparent 28%);
  transition: opacity 0.35s ease;
}

.ucc-listing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: var(--ucc-shadow);
}

.ucc-listing-card:hover::before {
  opacity: 1;
}

.ucc-listing-card:hover::after {
  opacity: 1;
}

.ucc-listing-card__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  transform: translateZ(22px);
}

.ucc-listing-card__logo {
  width: 152px;
  height: 152px;
  margin-bottom: 30px;
  border-radius: 32px;
  border: 1px solid var(--ucc-line);
  object-fit: contain;
  background: #fbf7ef;
}

.ucc-listing-card__title {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 900;
  color: var(--ucc-ink);
}

.ucc-listing-card__title a:hover {
  color: var(--ucc-coral);
}

.ucc-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ucc-teal);
  font-weight: 900;
}

.ucc-card-link::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.ucc-card-link:hover::after {
  transform: translateX(4px) rotate(45deg);
}

.ucc-card-link:hover {
  color: var(--ucc-coral);
}

.ucc-why {
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 94, 58, 0.1), transparent 34%),
    #111;
}

.ucc-why__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.ucc-why__panel {
  position: relative;
  min-height: 520px;
}

.ucc-why__image {
  position: absolute;
  inset: 0 36px 36px 0;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid #fff;
}

.ucc-why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ucc-why__stat {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 245px;
  padding: 28px;
  border-radius: 8px;
  color: var(--ucc-ink);
  background: var(--ucc-lime);
  box-shadow: 12px 12px 0 var(--ucc-coral);
}

.ucc-why__stat strong {
  display: block;
  font-size: 54px;
  line-height: 1;
}

.ucc-why .ucc-section__copy {
  color: #c9c9c9;
}

.ucc-reason-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.ucc-reason-list li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, border-color 0.45s ease, background-color 0.45s ease;
}

.ucc-reason-list li::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0;
  background: var(--ucc-coral);
  transform: translateY(60px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.ucc-reason-list li:hover {
  transform: translateX(12px);
  border-color: rgba(255, 98, 29, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.ucc-reason-list li:hover::after {
  opacity: 0.22;
  transform: translateY(0);
}

.ucc-reason-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ucc-ink);
  background: #fff;
  font-weight: 900;
}

.ucc-reason-list h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.ucc-reason-list p {
  margin: 0;
  color: #c9c9c9;
  line-height: 1.55;
}

.ucc-featured-wrap {
  position: relative;
  padding: 34px;
  border: 2px solid var(--ucc-ink);
  border-radius: 8px;
  background: var(--ucc-lime);
  box-shadow: 14px 14px 0 var(--ucc-ink);
}

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

.ucc-featured-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  position: relative;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.ucc-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 98, 29, 0.22), transparent 38%);
  transition: opacity 0.45s ease;
}

.ucc-featured-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.ucc-featured-card:hover::after {
  opacity: 1;
}

.ucc-featured-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: contain;
  transition: transform 0.75s ease, filter 0.75s ease;
}

.ucc-featured-card:hover img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.05);
}

.ucc-featured-card__body {
  padding: 20px;
}

.ucc-featured-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--ucc-ink);
}

.ucc-faq {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
}

.ucc-faq__item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  transition: border-color 0.35s ease, padding-left 0.35s ease;
}

.ucc-faq__item:hover {
  padding-left: 12px;
  border-color: var(--ucc-coral-dark);
}

.ucc-faq__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ucc-ink);
  font-size: 22px;
  font-weight: 900;
  transition: color 0.3s ease;
}

.ucc-faq__item:hover .ucc-faq__button {
  color: var(--ucc-coral-dark);
}

.ucc-faq__button span {
  font-size: 30px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.ucc-faq__item.is-open .ucc-faq__button span {
  transform: rotate(45deg);
}

.ucc-faq__answer {
  display: none;
  padding: 0 38px 22px 0;
  color: var(--ucc-muted);
  line-height: 1.75;
  font-weight: 600;
}

.ucc-faq__item.is-open .ucc-faq__answer {
  display: block;
}

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

.ucc-blog-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.18);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.ucc-blog-card__image {
  position: relative;
  overflow: hidden;
}

.ucc-blog-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  box-shadow: inset 10px 10px 0 320px rgba(0, 0, 0, 0.48);
  transition: opacity 0.55s ease;
}

.ucc-blog-card__image::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -48px;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0;
  background: var(--ucc-coral);
  transform: translateY(80px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.ucc-blog-card__image img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.ucc-blog-card:hover img {
  transform: scale(1.1);
}

.ucc-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.18);
}

.ucc-blog-card:hover .ucc-blog-card__image::before,
.ucc-blog-card:hover .ucc-blog-card__image::after {
  opacity: 1;
}

.ucc-blog-card:hover .ucc-blog-card__image::after {
  transform: translateY(0);
}

.ucc-blog-card__body {
  padding: 26px;
}

.ucc-blog-card__meta {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--ucc-coral-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ucc-blog-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--ucc-ink);
}

.ucc-testimonial {
  position: relative;
  overflow: hidden;
}

.ucc-testimonial::before {
  content: "City... Voices";
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.055);
  font-size: 138px;
  font-weight: 900;
  line-height: 1;
}

.ucc-testimonial-slider {
  padding-bottom: 62px;
}

.ucc-testimonial-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 30px;
  padding: 38px;
  border-radius: 8px;
  background: #fff;
  color: var(--ucc-ink);
}

.ucc-testimonial-card img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
}

.ucc-testimonial-card blockquote {
  margin: 0 0 24px;
  font-size: 27px;
  line-height: 1.35;
  font-weight: 800;
}

.ucc-testimonial-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.ucc-testimonial-card span {
  color: var(--ucc-muted);
  font-weight: 700;
}

.ucc-testimonial .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
}

.ucc-testimonial .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--ucc-lime);
}

.ucc-footer {
  padding: 34px 0;
  background: #fbf7ef;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.ucc-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ucc-muted);
  font-weight: 700;
}

.ucc-reveal {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.ucc-reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes uccFloat {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-16px) rotate(4deg);
  }
}

@media (max-width: 1199px) {
  .ucc-hero__title {
    font-size: 74px;
  }

  .ucc-category-grid,
  .ucc-listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 991px) {
  .ucc-menu,
  .ucc-header__cta {
    display: none;
  }

  .ucc-hero {
    min-height: auto;
    padding-top: 70px;
  }

  .ucc-hero__grid,
  .ucc-why__grid,
  .ucc-faq {
    grid-template-columns: 1fr;
  }

  .ucc-hero__art {
    min-height: 500px;
  }

  .ucc-search {
    grid-template-columns: 1fr;
  }

  .ucc-section__head {
    display: block;
  }

  .ucc-section__copy {
    margin-top: 16px;
  }

  .ucc-blog-grid,
  .ucc-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ucc-nav {
    min-height: 70px;
  }

  .ucc-logo {
    font-size: 20px;
  }

  .ucc-hero {
    padding: 54px 0 74px;
  }

  .ucc-hero__title {
    font-size: 48px;
  }

  .ucc-hero__text {
    font-size: 17px;
  }

  .ucc-search {
    border-radius: 18px;
    box-shadow: 7px 7px 0 var(--ucc-ink);
  }

  .ucc-hero__art {
    min-height: 390px;
  }

  .ucc-hero__photo--main {
    inset: 28px 0 45px 34px;
    border-radius: 26px;
  }

  .ucc-hero__photo--small {
    width: 150px;
    height: 170px;
  }

  .ucc-hero__badge {
    width: 112px;
    height: 112px;
    font-size: 13px;
  }

  .ucc-section {
    padding: 74px 0;
  }

  .ucc-section__title {
    font-size: 36px;
  }

  .ucc-category-grid,
  .ucc-listing-grid,
  .ucc-featured-grid,
  .ucc-blog-grid {
    grid-template-columns: 1fr;
  }

  .ucc-category-card {
    min-height: 190px;
  }

  .ucc-why__panel {
    min-height: 430px;
  }

  .ucc-why__stat {
    width: 196px;
  }

  .ucc-featured-wrap {
    padding: 18px;
    box-shadow: 7px 7px 0 var(--ucc-ink);
  }

  .ucc-testimonial-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .ucc-testimonial-card blockquote {
    font-size: 22px;
  }

  .ucc-footer__inner {
    display: block;
  }
}

/*--------------------------------------------------------------
# Single Listing
--------------------------------------------------------------*/
.is-hidden {
  display: none !important;
}

.ucc-single-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 48px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 98, 29, 0.26), transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(217, 255, 71, 0.13), transparent 22%),
    linear-gradient(135deg, #1a1b1f 0%, #0e0f11 100%);
}

.ucc-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
}

.ucc-single-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
}

.ucc-single-hero__media {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}

.ucc-single-hero__logo {
  width: 184px;
  height: 184px;
  border-radius: 34px;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: #fff;
}

.ucc-single-hero__cover {
  overflow: hidden;
  height: 176px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(1.2deg);
}

.ucc-single-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ucc-single-hero__category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.ucc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 850;
  font-size: 13px;
}

.ucc-pill--accent {
  color: #0e0f11;
  background: var(--ucc-coral);
  border-color: var(--ucc-coral);
}

.ucc-pill--verify {
  color: #0e0f11;
  background: var(--ucc-lime);
  border-color: var(--ucc-lime);
}

.ucc-pill--qualified {
  color: #17120a;
  background: linear-gradient(135deg, #ffe08a 0%, #d4a018 100%);
  border-color: rgba(255, 220, 120, 0.76);
  box-shadow: 0 10px 26px rgba(212, 160, 24, 0.22);
}

.ucc-qualified-emblem {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #5a3900;
  background: rgba(255, 255, 255, 0.62);
}

.ucc-qualified-emblem::before {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
  background: #7a4b00;
}

.ucc-qualified-emblem::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(122, 75, 0, 0.34);
}

.ucc-single-hero__title {
  max-width: 870px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

.ucc-rating-row,
.ucc-meta-row,
.ucc-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ucc-rating-row {
  margin-bottom: 18px;
}

.ucc-stars {
  color: #ffbf2e;
  letter-spacing: 2px;
  font-size: 18px;
}

.ucc-stars--rating {
  position: relative;
  display: inline-block;
  color: #d8d1c7;
  white-space: nowrap;
}

.ucc-stars--rating::before {
  content: "\2605\2605\2605\2605\2605";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rating-percent, 100%);
  overflow: hidden;
  color: #ffbf2e;
  white-space: nowrap;
  pointer-events: none;
  display: inline-block; 
  width: var(--rating-percent, 100%);
}

.ucc-review-count,
.ucc-address {
  color: var(--ucc-muted-dark);
  font-weight: 750;
}

.ucc-meta-row {
  margin-bottom: 28px;
}

.ucc-action-row a,
.ucc-action-row button,
.ucc-sidebar-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.ucc-action-row a:hover,
.ucc-action-row button:hover {
  color: #0e0f11;
  background: #fff;
  transform: translateY(-3px);
}

.ucc-action-row .ucc-action-primary {
  color: #fff;
  background: var(--ucc-coral-dark);
  border-color: var(--ucc-coral-dark);
}

.ucc-claim-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  color: #0e0f11;
  background: var(--ucc-lime);
  box-shadow: 12px 12px 0 var(--ucc-coral);
}

.ucc-claim-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.08;
}

.ucc-claim-card p {
  margin: 0 0 18px;
  color: #1a1b1f;
  font-weight: 750;
}

.ucc-claim-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: #0e0f11;
  font-weight: 900;
}

.ucc-single-main {
  padding: 72px 0 110px;
  color: #fff;
  background: var(--ucc-ink);
}

.ucc-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 32px;
  align-items: start;
}

.ucc-single-tabs {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px;
  border-radius: 8px;
  background: #0e0f11;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ucc-single-tabs button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.ucc-single-tabs button.is-active,
.ucc-single-tabs button:hover {
  color: #0e0f11;
  background: var(--ucc-coral);
}

.ucc-tab-panel {
  display: none;
}

.ucc-tab-panel.is-active {
  display: block;
}

.ucc-single-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 30px;
  border-radius: 8px;
  color: var(--ucc-ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.ucc-single-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
}

.ucc-single-card__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ucc-single-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--ucc-coral-dark);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.ucc-single-card h2,
.ucc-single-card h3 {
  color: var(--ucc-ink);
  letter-spacing: 0;
}

.ucc-single-card h2 {
  margin: 0px 0px 15px 0px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
}

.ucc-single-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.ucc-single-card p {
  color: #3f4650;
  line-height: 1.7;
  font-weight: 650;
}

.ucc-tag-row,
.ucc-mini-grid,
.ucc-fact-grid,
.ucc-gallery-grid,
.ucc-review-grid,
.ucc-score-grid {
  display: grid;
  gap: 14px;
}

.ucc-tag-row {
  display: flex;
  flex-wrap: wrap;
}

.ucc-profile-lines {
  display: grid;
  gap: 14px;
}

.ucc-profile-lines div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  color: var(--ucc-ink);
  background: #f7f3ea;
  border: 1px solid #e1dbcf;
}

.ucc-profile-lines span {
  color: var(--ucc-coral-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ucc-profile-lines strong {
  color: var(--ucc-ink);
  font-size: 18px;
  line-height: 1.35;
}

.ucc-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--ucc-ink);
  background: #f4f0e8;
  font-weight: 850;
}

.ucc-tag strong {
  margin-left: 8px;
  color: var(--ucc-coral-dark);
}

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

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

.ucc-icon-item {
  padding: 18px;
  border-radius: 8px;
  background: #f7f3ea;
  border: 1px solid #e1dbcf;
}

.ucc-icon-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 14px;
}

.ucc-icon-item span,
.ucc-trust-chips span {
  display: block;
  margin-bottom: 7px;
  color: var(--ucc-coral-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ucc-icon-item strong,
.ucc-trust-chips strong {
  display: block;
  color: var(--ucc-ink);
  font-size: 17px;
  line-height: 1.28;
}

.ucc-trust-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ucc-trust-chips div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 999px;
  background: #fff7df;
  border: 1px solid rgba(212, 160, 24, 0.38);
}

.ucc-trust-chips img {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.ucc-mini-item,
.ucc-fact-item,
.ucc-hour-row,
.ucc-review-card,
.ucc-qa-item {
  border-radius: 8px;
  background: #f7f3ea;
  border: 1px solid #e1dbcf;
}

.ucc-mini-item,
.ucc-fact-item {
  padding: 18px;
}

.ucc-mini-item span,
.ucc-fact-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--ucc-coral-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ucc-mini-item strong,
.ucc-fact-item strong {
  display: block;
  color: var(--ucc-ink);
  font-size: 18px;
  line-height: 1.25;
}

.ucc-fact-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ucc-hours-list {
  display: grid;
  gap: 8px;
}

.ucc-hour-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  color: var(--ucc-ink);
  font-weight: 800;
}

.ucc-offer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  color: #0e0f11;
  background: var(--ucc-lime);
}

.ucc-offer-card strong {
  font-size: 26px;
  line-height: 1.1;
}

.ucc-offer-card a,
.ucc-map-card a,
.ucc-review-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ucc-coral-dark);
  font-weight: 900;
}

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

.ucc-gallery-link {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  background: #111;
}

.ucc-gallery-link img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  transition: transform 0.65s ease, opacity 0.65s ease;
}

.ucc-gallery-link::after {
  content: "View";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -40%);
  opacity: 0;
  color: #0e0f11;
  background: var(--ucc-coral);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 900;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.ucc-gallery-link:hover img {
  transform: scale(1.1);
  opacity: 0.55;
}

.ucc-gallery-link:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.ucc-map-card iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(1) contrast(1.1);
}

.ucc-map-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.ucc-review-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.ucc-review-score {
  display: grid;
  place-items: center;
  min-height: 190px;
  border-radius: 8px;
  text-align: center;
  color: #0e0f11;
  background: var(--ucc-coral);
}

.ucc-review-score strong {
  display: block;
  font-size: 64px;
  line-height: 1;
}

.ucc-breakdown {
  display: grid;
  gap: 10px;
}

.ucc-breakdown-row {
  display: grid;
  grid-template-columns: 70px 1fr 42px;
  gap: 12px;
  align-items: center;
  color: var(--ucc-ink);
  font-weight: 850;
}

.ucc-breakdown-bar {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: #e7e0d5;
}

.ucc-breakdown-bar span {
  display: block;
  height: 100%;
  width: var(--value, 0%);
  background: var(--ucc-coral-dark);
}

.ucc-score-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

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

.ucc-review-card {
  padding: 20px;
}

.ucc-review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ucc-review-reply {
  margin-top: 14px;
  padding: 14px;
  border-left: 4px solid var(--ucc-coral-dark);
  background: #fff;
  color: #3f4650;
  font-weight: 650;
}

.ucc-review-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  color: #0e0f11;
  background: var(--ucc-lime);
  margin-bottom:20px;
}

.ucc-qa-list {
  display: grid;
  gap: 12px;
}

.ucc-qa-item {
  padding: 18px;
}

.ucc-qa-item strong {
  display: block;
  color: var(--ucc-ink);
  margin-bottom: 8px;
}

.ucc-single-sidebar {
  position: sticky;
  top: 118px;
}

.ucc-sidebar-card {
  margin-bottom: 18px;
  padding: 24px;
  border-radius: 8px;
  color: var(--ucc-ink);
  background: #fff;
}

.ucc-sidebar-card h3 {
  margin: 0 0 18px;
  color: var(--ucc-ink);
  font-size: 22px;
  font-weight: 900;
}

.ucc-sidebar-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ucc-sidebar-list li {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5ded2;
  color: #3f4650;
  font-weight: 750;
}

.ucc-sidebar-list span {
  color: var(--ucc-coral-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ucc-sidebar-card__cta {
  width: 100%;
  margin-top: 16px;
  color: #fff;
  background: var(--ucc-coral-dark);
}

.ucc-social-links {
  display: grid;
  gap: 10px;
}

.ucc-social-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  padding: 0 7px;
  border-radius: 8px;
  color: var(--ucc-ink);
  background: #f7f3ea;
  font-weight: 850;
}

.ucc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.ucc-lightbox.is-open {
  display: grid;
}

.ucc-lightbox__inner {
  position: relative;
  max-width: min(980px, 94vw);
}

.ucc-lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 8px;
}

.ucc-lightbox button {
  position: absolute;
  right: 0;
  top: -52px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #0e0f11;
  background: var(--ucc-coral);
  font-weight: 900;
}

.ucc-lightbox span {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1199px) {
  .ucc-single-hero__grid,
  .ucc-single-layout {
    grid-template-columns: 1fr;
  }

  .ucc-single-sidebar,
  .ucc-single-tabs {
    position: static;
  }

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

@media (max-width: 767px) {
  .ucc-single-hero__title {
    font-size: 44px;
  }

  .ucc-single-hero__media,
  .ucc-review-summary,
  .ucc-offer-card,
  .ucc-map-card__footer,
  .ucc-review-cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .ucc-single-hero__cover {
    height: 210px;
  }

  .ucc-mini-grid,
  .ucc-icon-grid,
  .ucc-fact-grid,
  .ucc-gallery-grid,
  .ucc-review-grid,
  .ucc-score-grid {
    grid-template-columns: 1fr;
  }

  .ucc-trust-chips {
    grid-template-columns: 1fr;
  }

  .ucc-single-card {
    padding: 22px;
  }
}

.ucc-single-hero__grid--simple {
  grid-template-columns: 1fr;
}

.ucc-single-hero__grid--simple .ucc-single-hero__media {
  grid-template-columns: 92px;
}

.ucc-hours-dropdown summary {
  cursor: pointer;
  color: var(--ucc-ink);
  font-weight: 900;
}

.ucc-sidebar-hours {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.ucc-sidebar-hours div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #e5ded2;
}

.ucc-sidebar-hours span {
  color: var(--ucc-coral-dark);
}

.ucc-social-links--icons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ucc-social-links--icons a {
  justify-content: flex-start;
  gap: 10px;font-size:12px;
}


.ucc-google-business-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: end center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #fff7df;
  border: 1px solid rgba(255, 98, 29, 0.26);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.ucc-google-business-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 6px;
  height: 9px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(90deg, var(--ucc-coral-dark) 0 28%, var(--ucc-gold) 28% 56%, var(--ucc-lime) 56% 78%, #0e0f11 78% 100%);
}

.ucc-google-business-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  height: 12px;
  border-radius: 2px 2px 5px 5px;
  background: #0e0f11;
}

.ucc-google-business-icon > span {
  position: relative;
  z-index: 2;
  width: 6px;
  height: 7px;
  margin-bottom: 6px;
  border-radius: 2px 2px 0 0;
  background: var(--ucc-coral);
}
.ucc-social-links--icons i,.ucc-social-links--icons span {
  width: auto;
  color: var(--ucc-coral-dark);
  text-align: left;
}

.ucc-footer--full {
  color: #fff;
  background: var(--ucc-black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ucc-footer-main,
.ucc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ucc-footer-bottom{text-align:center;display: block;}
.ucc-footer-main {
  padding: 34px 0;
}

.ucc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

.ucc-footer-links a {
  color: #fff;
}

.ucc-footer-links a:hover {
  color: var(--ucc-coral);
}

.ucc-footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ucc-muted-dark);
  font-weight: 700;
}

@media (max-width: 767px) {
  .ucc-footer-main,
  .ucc-footer-bottom {
    display: grid;
    justify-content: stretch;
  }

  .ucc-social-links--icons {
    grid-template-columns: 1fr;
  }
}

.ucc-external-line {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e1dbcf;
}

.ucc-external-line a {
  color: var(--ucc-coral-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/*--------------------------------------------------------------
# Category Listing
--------------------------------------------------------------*/
.ucc-category-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 98, 29, 0.28), transparent 25%),
    radial-gradient(circle at 88% 24%, rgba(217, 255, 71, 0.16), transparent 22%),
    linear-gradient(135deg, #1a1b1f 0%, #0e0f11 100%);
}

.ucc-category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 54px 54px;
}

.ucc-category-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1050px;
}

.ucc-category-hero__title {
  max-width: 900px;
  margin: 0 0 20px;
  color: #fff;
  font-size: 76px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.ucc-category-hero__title span {
  display: inline-block;
  padding: 0 14px 7px;
  border-radius: 28px;
  color: #0e0f11;
  background: var(--ucc-coral);
  transform: rotate(-1deg);
}

.ucc-category-hero__copy {
  max-width: 700px;
  margin: 0 0 30px;
  color: var(--ucc-muted-dark);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 650;
}

.ucc-category-page {
  color: #fff;
  background: var(--ucc-ink);
}

.ucc-category-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -36px;
  position: relative;
  z-index: 3;
}

.ucc-category-stats--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 650px;
}

.ucc-category-stat {
  min-height: 126px;
  padding: 22px;
  border-radius: 8px;
  color: var(--ucc-ink);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.ucc-category-stat strong {
  display: block;
  margin-bottom: 7px;
  font-size: 34px;
  line-height: 1;
}

.ucc-category-stat span {
  color: #4b525c;
  font-weight: 800;
}

.ucc-category-grid--full {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ucc-category-grid--full .ucc-category-card {
  min-height: 178px;
}

.ucc-category-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.ucc-category-tools__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ucc-category-tools__chips a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 850;
}

.ucc-category-tools__chips a:hover {
  color: #0e0f11;
  background: var(--ucc-coral);
}

.ucc-category-band {
  padding: 42px;
  border-radius: 8px;
  color: #0e0f11;
  background: var(--ucc-lime);
  box-shadow: 14px 14px 0 var(--ucc-coral);
}

.ucc-category-band h2 {
  color: #0e0f11;
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.1;
}

.ucc-category-band p {
  max-width: 760px;
  margin: 0;
  color: #1a1b1f;
  font-weight: 750;
  line-height: 1.7;
}

@media (max-width: 1199px) {
  .ucc-category-grid--full {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .ucc-category-hero__title {
    font-size: 54px;
  }

  .ucc-category-stats,
  .ucc-category-grid--full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .ucc-category-hero {
    padding: 64px 0 58px;
  }

  .ucc-category-hero__title {
    font-size: 42px;
  }

  .ucc-category-stats,
  .ucc-category-grid--full {
    grid-template-columns: 1fr;
  }

  .ucc-category-band {
    padding: 26px;
    box-shadow: 8px 8px 0 var(--ucc-coral);
  }
}

/*--------------------------------------------------------------
# Category Single Listing
--------------------------------------------------------------*/
.ucc-category-single-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 70px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 98, 29, 0.28), transparent 24%),
    linear-gradient(135deg, #1a1b1f 0%, #0e0f11 100%);
}

.ucc-category-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 54px 54px;
}

.ucc-category-single-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.ucc-category-single-hero__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 68px;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: 0;
}

.ucc-category-single-hero__copy {
  max-width: 680px;
  margin: 0;
  color: var(--ucc-muted-dark);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 650;
}

.ucc-category-single-main {
  padding: 72px 0 110px;
  color: #fff;
  background: var(--ucc-ink);
}

.ucc-category-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: start;
}

.ucc-category-results-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.ucc-category-results-head h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.08;
}

.ucc-category-results-head p {
  max-width: 420px;
  margin: 0;
  color: var(--ucc-muted-dark);
  font-weight: 650;
  line-height: 1.65;
}

.ucc-listing-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ucc-category-sidebar {
  position: sticky;
  top: 112px;
  border-radius: 8px;
  background: #fff;
  color: var(--ucc-ink);
  overflow: hidden;
}

.ucc-category-sidebar__head {
  padding: 22px 22px 18px;
  color: #fff;
  background: #0e0f11;
}

.ucc-review-write-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin:0px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ucc-coral-dark);
  font-weight: 900;
}

.ucc-review-write-btn:hover {
  color: #fff;
  background: var(--ucc-black);
}

.ucc-review-score__stars {
  margin: 6px 0 4px;
  font-size: 21px;
}

.ucc-category-sidebar__head h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.15;
}

.ucc-category-sidebar__list {
  max-height: 720px;
  overflow: auto;
  margin: 0;
  padding: 10px;
  list-style: none;
}

.ucc-category-sidebar__list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ucc-ink);
  font-weight: 850;
}

.ucc-category-sidebar__list a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.ucc-category-sidebar__list a:hover,
.ucc-category-sidebar__list a.is-active {
  color: #0e0f11;
  background: var(--ucc-coral);
}

@media (max-width: 1199px) {
  .ucc-category-single-layout {
    grid-template-columns: 1fr;
  }

  .ucc-category-sidebar {
    position: static;
  }

  .ucc-listing-grid--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ucc-category-single-hero__title {
    font-size: 42px;
  }

  .ucc-category-results-head {
    display: block;
  }

  .ucc-category-results-head p {
    margin-top: 12px;
  }

  .ucc-listing-grid--archive {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Blog Archive Pages
--------------------------------------------------------------*/
.ucc-blog-archive-section {
  padding-top: 78px;
  padding-bottom: 110px;
}

.ucc-blog-grid--archive .ucc-blog-card__body p {
  margin: 0 0 18px;
  color: var(--ucc-muted);
  font-weight: 650;
  line-height: 1.62;
}

.ucc-blog-grid--archive .ucc-blog-card {
  height: 100%;
}

/*--------------------------------------------------------------
# Simple Blog Single
--------------------------------------------------------------*/
.ucc-blog-single-simple {
  padding: 70px 0 90px;
  color: var(--ucc-ink);
  background: #fbf7ef;
}

.ucc-blog-single-simple__article {
  max-width: 900px;
  margin: 0 auto;
}

.ucc-blog-single-simple__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
  border: 2px solid var(--ucc-ink);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--ucc-coral);
}

.ucc-blog-single-simple__image img{width:100%;}

.ucc-blog-single-simple h1 {
  margin: 48px 0 24px;
  color: var(--ucc-ink);
  font-size: 54px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.ucc-blog-single-simple p {
  margin: 0 0 20px;
  color: #2b3037;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}

@media (max-width: 767px) {
  .ucc-blog-single-simple {
    padding: 42px 0 64px;
  }

  .ucc-blog-single-simple h1 {
    margin-top: 34px;
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Simple Contact Form
--------------------------------------------------------------*/
.ucc-contact-simple {
  padding: 86px 0 110px;
  color: var(--ucc-ink);
  background: #fbf7ef;
}

.ucc-contact-hero .ucc-category-hero__inner::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 10%;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 98, 29, 0.42) 0 38%, transparent 39%);
  animation: ucc-float 4.8s ease-in-out infinite;
}

.ucc-contact-simple__form {
  max-width: 720px;
  margin: 0 auto;
  padding: 34px;
  border: 2px solid var(--ucc-ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 12px 12px 0 var(--ucc-coral);
}

.ucc-contact-simple__field {
  margin-bottom: 18px;
}

.ucc-contact-simple label {
  display: block;
  margin-bottom: 8px;
  color: var(--ucc-ink);
  font-weight: 900;
}

.ucc-contact-simple input,
.ucc-contact-simple textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 8px;
  padding: 15px 16px;
  outline: none;
  color: var(--ucc-ink);
  background: #fffdf8;
  font-weight: 650;
}

.ucc-contact-simple textarea {
  resize: vertical;
}

.ucc-contact-simple input:focus,
.ucc-contact-simple textarea:focus {
  border-color: var(--ucc-coral-dark);
  box-shadow: 0 0 0 3px rgba(255, 98, 29, 0.16);
}

.ucc-contact-simple button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--ucc-coral-dark);
  font-weight: 900;
}

.ucc-contact-simple button:hover {
  background: var(--ucc-black);
}

@media (max-width: 767px) {
  .ucc-contact-simple {
    padding: 58px 0 78px;
  }

  .ucc-contact-simple__form {
    padding: 24px;
  }

  .ucc-contact-hero .ucc-category-hero__inner::after {
    display: none;
  }
}

/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.ucc-services-hero {
  padding: 92px 0 86px;
  color: #fff;
  background: radial-gradient(circle at 18% 20%, rgba(255, 98, 29, 0.32), transparent 25%), linear-gradient(135deg, #16171a 0%, #0d0e10 100%);
  overflow: hidden;
}

.ucc-services-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: center;
}

.ucc-services-hero h1,
.ucc-services-split h2,
.ucc-services-cta h2 {
  margin: 0 0 20px;
  font-size: 62px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.ucc-services-hero p,
.ucc-services-split p {
  max-width: 700px;
  margin: 0;
  color: var(--ucc-muted-dark);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 650;
}

.ucc-services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ucc-services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--ucc-coral-dark);
  font-weight: 900;
}

.ucc-services-btn:hover {
  color: #fff;
  background: #353940;
}

.ucc-services-btn--light {
  color: var(--ucc-ink);
  background: #fff;
}

.ucc-services-btn--light:hover {
  color: #fff;
  background: #333;
}

.ucc-services-hero__panel,
.ucc-services-business-card {
  padding: 30px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 14px 14px 0 var(--ucc-coral);
}

.ucc-services-hero__panel span,
.ucc-services-business-card strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.ucc-services-hero__panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ucc-services-hero__panel li {
  display: flex;
  gap: 12px;
  color: #fff;
  font-weight: 800;
}

.ucc-services-hero__panel i {
  color: var(--ucc-coral);
  margin-top: 4px;
}

.ucc-services-section {
  padding: 86px 0;
}

.ucc-services-section--paper {
  color: var(--ucc-ink);
  background: #fbf7ef;
}

.ucc-services-section--ink {
  color: #fff;
  background: var(--ucc-ink);
}

.ucc-services-section--cream {
  color: var(--ucc-ink);
  background: #fffdf8;
}

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

.ucc-service-card {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ucc-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.ucc-service-card i {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--ucc-coral-dark);
  font-size: 22px;
}

.ucc-service-card h3,
.ucc-services-steps h3 {
  margin: 0 0 12px;
  color: var(--ucc-ink);
  font-size: 23px;
  font-weight: 900;
}

.ucc-service-card p,
.ucc-services-steps p {
  margin: 0;
  color: var(--ucc-muted);
  font-weight: 650;
  line-height: 1.65;
}

.ucc-services-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.ucc-services-split--reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.ucc-services-checks {
  display: grid;
  gap: 16px;
}

.ucc-services-checks div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 850;
}

.ucc-services-checks i {
  color: var(--ucc-coral);
}

.ucc-services-business-card {
  display: grid;
  gap: 12px;
  border-color: var(--ucc-ink);
  background: #fff;
}

.ucc-services-business-card strong {
  color: var(--ucc-ink);
}

.ucc-services-business-card span {
  padding: 13px 16px;
  border-radius: 8px;
  color: var(--ucc-ink);
  background: #fbf7ef;
  font-weight: 900;
}

.ucc-services-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ucc-services-steps article {
  padding: 28px;
  border: 2px solid var(--ucc-ink);
  border-radius: 8px;
  background: #fff;
}

.ucc-services-steps span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--ucc-coral-dark);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.ucc-services-cta {
  padding: 90px 0;
  color: #fff;
  background: var(--ucc-black);
}

.ucc-services-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ucc-services-cta .ucc-services-hero__actions {
  justify-content: center;
}

@media (max-width: 991px) {
  .ucc-services-hero__grid,
  .ucc-services-split,
  .ucc-services-split--reverse {
    grid-template-columns: 1fr;
  }

  .ucc-services-grid,
  .ucc-services-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ucc-services-hero h1,
  .ucc-services-split h2,
  .ucc-services-cta h2 {
    font-size: 40px;
  }

  .ucc-services-grid,
  .ucc-services-steps {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Simple Sitemap
--------------------------------------------------------------*/
.ucc-sitemap-simple {
  min-height: 100vh;
  padding: 70px 0 90px;
  color: var(--ucc-ink);
  background: #fbf7ef;
}

.ucc-sitemap-simple__section + .ucc-sitemap-simple__section {
  margin-top: 44px;
}

.ucc-sitemap-simple h1,
.ucc-sitemap-simple h2 {
  margin: 0 0 22px;
  color: var(--ucc-ink);
  font-weight: 900;
  letter-spacing: 0;
}

.ucc-sitemap-simple h1 {
  font-size: 48px;
}

.ucc-sitemap-simple h2 {
  font-size: 36px;
}

.ucc-sitemap-simple__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ucc-sitemap-simple__links--categories {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ucc-sitemap-simple__links a {
  display: block;
  padding: 13px 15px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  color: var(--ucc-ink);
  background: #fff;
  font-weight: 850;
}

.ucc-sitemap-simple__links a:hover {
  color: #fff;
  background: var(--ucc-coral-dark);
}

@media (max-width: 991px) {
  .ucc-sitemap-simple__links,
  .ucc-sitemap-simple__links--categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .ucc-sitemap-simple__links,
  .ucc-sitemap-simple__links--categories {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# 404 Page
--------------------------------------------------------------*/
.ucc-error-page {
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding: 90px 0;
  color: #fff;
  background: radial-gradient(circle at 18% 20%, rgba(255, 98, 29, 0.28), transparent 24%), linear-gradient(135deg, #16171a 0%, #0d0e10 100%);
}

.ucc-error-page__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ucc-error-page__code {
  display: block;
  color: var(--ucc-coral);
  font-size: 132px;
  line-height: 0.9;
  font-weight: 900;
}

.ucc-error-page h1 {
  margin: 18px 0 18px;
  color: #fff;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.ucc-error-page p { 
  margin: 0 auto;
  color: var(--ucc-muted-dark);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 650;
}

.ucc-error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.ucc-error-page__actions .ucc-services-btn { 
	min-width: 160px; 
}

@media (max-width: 767px) {
  .ucc-error-page__code {
    font-size: 92px;
  }

  .ucc-error-page h1 {
    font-size: 38px;
  }
}

@media only screen and (min-width: 991px){

.ucc-menu{display:flex !important;}
}

.ucc-menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
}

@media only screen and (max-width: 991px) {
 .custom-logo-link.ucc-logo {
	padding: 10px 0px;
}
    .ucc-menu-toggle {
        display: block;color:#fff !important;
    }
    .ucc-menu{display:none;flex-direction:column;}

    .ucc-menu { 
        position: absolute;
	width: 100%;
	left: 0px;
	top: 95px;
	background: #000;
	text-align: center;
	padding: 20px;
    }

    .ucc-menu.active {
        display: flex;
    }

    .ucc-menu li {
        width: 100%;
    }

    .ucc-menu li a {
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid #e5e5e5;
    }
}



