/* =========================================================
   Unik shared section system — reuse on every page
   Brand: #074f78 | Font: Poppins (loaded globally)
   ========================================================= */

:root {
  --unik-radius-img: 1.25rem;
  --unik-radius-card: 1.15rem;
  --unik-section-y: clamp(2.75rem, 4.5vw, 4.25rem);
  --unik-icon-box: 3rem;
  --unik-icon-box-sm: 2.5rem;
}

/* Unified section rhythm */
.unik-section,
main > section.unik-section {
  padding-top: var(--unik-section-y) !important;
  padding-bottom: var(--unik-section-y) !important;
}

/* One pill style everywhere */
.unik-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .4rem .95rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.12) !important;
  color: #074f78 !important;
  line-height: 1.2;
}

html[data-bs-theme="dark"] .unik-pill {
  background: rgba(7, 79, 120, 0.35) !important;
  color: #9fd0ef !important;
}

/* Consistent rounded images sitewide — exclude brand logos */
img:not(.navbar-brand-item):not(.footer-logo),
.rounded,
.rounded-2,
.rounded-3,
.rounded-4,
.card-img-scale-wrapper,
.unik-about-swiper,
.unik-about-swiper img,
.team-card img,
.service-hero-img,
.swiper-slide img:not(.navbar-brand-item):not(.footer-logo) {
  border-radius: var(--unik-radius-img) !important;
}

.navbar-brand-item,
.footer-logo,
.navbar-brand img,
.unik-footer .footer-logo {
  border-radius: 0 !important;
}

/* Perfectly centered icon wells */
.unik-icon,
.category-icon,
.unik-service-icon,
.unik-advantage-icon,
.icon-md,
.icon-lg,
.icon-xl,
.service-cta-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
}

.unik-icon svg.lucide,
.category-icon svg.lucide,
.unik-service-icon svg.lucide,
.unik-advantage-icon svg.lucide,
.icon-md svg.lucide,
.icon-lg svg.lucide,
.icon-xl svg.lucide {
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.category-icon {
  width: var(--unik-icon-box);
  height: var(--unik-icon-box);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: .65rem !important;
  border-radius: 50%;
  background: rgba(7, 79, 120, 0.12);
  color: #074f78;
}

.category-icon svg.lucide {
  width: 1.35rem;
  height: 1.35rem;
}

.icon-md {
  width: var(--unik-icon-box-sm);
  height: var(--unik-icon-box-sm);
  min-width: var(--unik-icon-box-sm);
  padding: 0 !important;
  border-radius: 50% !important;
}

.icon-md svg.lucide {
  width: 1.15rem;
  height: 1.15rem;
}

/* Compact service cards */
.unik-service-card {
  height: auto !important;
  min-height: 0 !important;
  padding: 1.15rem 1.1rem !important;
  border-radius: var(--unik-radius-card) !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: var(--bs-body-bg);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}

.unik-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.08);
}

.unik-service-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .85rem;
  margin-bottom: .85rem !important;
  background: rgba(7, 79, 120, 0.12);
  color: #074f78;
}

.unik-service-link {
  color: #074f78;
  margin-top: auto;
}

.unik-service-list li {
  display: flex;
  align-items: center;
}

/* Testimonials: scope tall padding away from hub/feature cards */
.testimonial-swiper .category-card {
  min-height: 0 !important;
  height: auto !important;
  padding: 1.25rem 1.15rem !important;
  justify-content: flex-start;
}

.testimonial-swiper .testimonial-text {
  min-height: 0 !important;
  margin-bottom: 1rem;
}

.x-small {
  font-size: 0.75rem;
  line-height: 1.4;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.unik-advantage-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.unik-advantage-icon svg.lucide {
  width: 1.4rem;
  height: 1.4rem;
  color: #fff;
}

/* Compact category / feature cards — no tall empty space */
.category-card {
  height: auto !important;
  min-height: 0 !important;
  padding: 1rem 0.9rem !important;
  border-radius: var(--unik-radius-card) !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: var(--bs-body-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.category-card.feature-card {
  align-items: stretch;
  text-align: left;
  padding: 1.1rem 1.15rem !important;
}

.category-card h3,
.category-card .h6 {
  margin-bottom: .35rem !important;
}

.category-card p {
  margin-bottom: 0 !important;
  font-size: .78rem;
  line-height: 1.4;
}

.category-card.bg-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #074f78, #0a628f) !important;
  color: #ffffff !important;
}

.category-card.bg-primary h3,
.category-card.bg-primary .h6,
.category-card.bg-primary p {
  color: #ffffff !important;
}

/* Dark theme: unified canvas (one surface, cards for depth) */
html[data-bs-theme="dark"] {
  --bs-body-bg: #12171c;
  --bs-body-bg-rgb: 18, 23, 28;
  --bs-secondary-bg: #1a222b;
  --bs-tertiary-bg: #1a222b;
  --bs-border-color: rgba(255, 255, 255, 0.08);
  --unik-section-y: clamp(2.75rem, 4.5vw, 4.25rem);
  color-scheme: dark;
}

html[data-bs-theme="dark"] body,
html[data-bs-theme="dark"] main {
  background: #12171c !important;
  background-image: none !important;
}

html[data-bs-theme="dark"] .unik-section,
html[data-bs-theme="dark"] .unik-about-section,
html[data-bs-theme="dark"] .unik-services-section,
html[data-bs-theme="dark"] .unik-advantage-section,
html[data-bs-theme="dark"] .unik-why-section,
html[data-bs-theme="dark"] .unik-testimonials-section,
html[data-bs-theme="dark"] #industries,
html[data-bs-theme="dark"] #team,
html[data-bs-theme="dark"] section.bg-light,
html[data-bs-theme="dark"] .bg-light,
html[data-bs-theme="dark"] .py-5.bg-light,
html[data-bs-theme="dark"] .py-lg-8.bg-light,
html[data-bs-theme="dark"] .bg-mode,
html[data-bs-theme="dark"] .service-features-band {
  background-color: #12171c !important;
  background-image: none !important;
}

/* Flatten parallax strips so they match the page canvas */
html[data-bs-theme="dark"] .unik-advantage-section,
html[data-bs-theme="dark"] .unik-stats-section,
html[data-bs-theme="dark"] .bg-parallax {
  background-image: none !important;
  background-color: #12171c !important;
  background-attachment: scroll !important;
}

html[data-bs-theme="dark"] .unik-advantage-overlay,
html[data-bs-theme="dark"] .unik-stats-section .unik-stats-overlay {
  background: #12171c !important;
  opacity: 1 !important;
}

html[data-bs-theme="dark"] .unik-advantage-card {
  background: #1e272f !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html[data-bs-theme="dark"] .unik-advantage-icon {
  background: rgba(7, 79, 120, 0.4) !important;
  color: #9fd0ef !important;
}

html[data-bs-theme="dark"] .unik-advantage-icon svg.lucide {
  color: #9fd0ef !important;
}

html[data-bs-theme="dark"] .unik-advantage-title,
html[data-bs-theme="dark"] .unik-advantage-card h3,
html[data-bs-theme="dark"] .unik-advantage-card h5 {
  color: #f3f7fa !important;
}

html[data-bs-theme="dark"] .unik-advantage-card p {
  color: #a9b4bf !important;
}

html[data-bs-theme="dark"] .unik-pill.unik-advantage-badge,
html[data-bs-theme="dark"] .unik-advantage-section .unik-pill {
  background: rgba(7, 79, 120, 0.35) !important;
  color: #9fd0ef !important;
}

html[data-bs-theme="dark"] .category-card,
html[data-bs-theme="dark"] .unik-service-card,
html[data-bs-theme="dark"] .unik-about-card {
  background-color: #1e272f !important;
  border-color: rgba(255, 255, 255, 0.06);
  color: #f3f7fa;
}

html[data-bs-theme="dark"] .category-icon {
  background: rgba(7, 79, 120, 0.4);
  color: #9fd0ef;
}

html[data-bs-theme="dark"] .counter-card {
  background: #1e272f !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-bs-theme="light"] .unik-about-section,
html[data-bs-theme="light"] .unik-services-section {
  background-color: transparent;
}

html[data-bs-theme="light"] section.bg-light {
  background-color: #f5f8fb !important;
}

/* Light: keep advantage band with soft brand wash (no harsh navy jumps) */
html[data-bs-theme="light"] .unik-advantage-section {
  background:
    linear-gradient(180deg, rgba(7, 79, 120, 0.92), rgba(7, 79, 120, 0.88)),
    #074f78;
  background-attachment: scroll;
}

html[data-bs-theme="light"] .unik-advantage-overlay {
  background: transparent !important;
}

html[data-bs-theme="light"] .unik-stats-section {
  background: url('../images/p-2.jpg') no-repeat center top / cover;
}

html[data-bs-theme="light"] .unik-stats-section .unik-stats-overlay {
  background-color: rgba(0, 0, 0, 0.55);
}

/* Mobile card carousels */
.unik-mobile-swiper {
  display: none;
  padding-bottom: 2rem;
}

@media (max-width: 767.98px) {
  .unik-desktop-grid {
    display: none !important;
  }

  .unik-mobile-swiper {
    display: block;
  }

  .unik-mobile-swiper .swiper-pagination {
    bottom: 0;
  }

  .category-card,
  .unik-service-card {
    padding: 1rem !important;
  }
}

@media (min-width: 768px) {
  .unik-mobile-swiper {
    display: none !important;
  }
}

.team-card {
  border-radius: var(--unik-radius-img);
  overflow: hidden;
  background: #1a222b;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.team-overlay {
  opacity: 1 !important;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent 55%) !important;
}

/* =========================================================
   Shared subpage shell (About, Services, Contact, Blog, etc.)
   ========================================================= */
.unik-page-hero {
  padding-top: clamp(2.25rem, 3.5vw, 3.25rem) !important;
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem) !important;
}

.unik-page-hero .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 1.25rem !important;
  padding-top: 0.35rem;
}

.unik-page-breadcrumb {
  padding-top: 0.5rem;
}

.unik-page-hero .breadcrumb-item,
.unik-page-hero .breadcrumb-item a {
  font-size: 0.875rem;
  line-height: 1.5;
}

.unik-content-card .unik-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.unik-content-card ul li a:hover {
  color: #074f78 !important;
}

.service-page > section.unik-section:first-child {
  padding-top: clamp(3.25rem, 5.5vw, 4.75rem) !important;
}

.service-page .breadcrumb {
  margin-bottom: 1.25rem !important;
}

main {
  padding-top: 0;
}

.unik-page-hero-copy {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.unik-page .unik-content-card,
.unik-content-card {
  border-radius: var(--unik-radius-card) !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: var(--bs-body-bg);
  padding: 1.25rem 1.15rem;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease;
}

.unik-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.08);
}

.unik-list-card {
  border-radius: var(--unik-radius-card) !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  overflow: hidden;
  background: var(--bs-body-bg);
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease;
}

.unik-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.08);
}

.unik-list-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0 !important;
}

.unik-list-card .card-body {
  padding: 1.1rem 1.15rem;
}

.unik-prose {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.unik-prose h1,
.unik-prose h2,
.unik-prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.unik-prose p,
.unik-prose li {
  color: var(--bs-secondary-color);
  line-height: 1.7;
}

/* Service detail pages aligned to shared system */
.service-page > section {
  padding-top: var(--unik-section-y) !important;
  padding-bottom: var(--unik-section-y) !important;
}

.service-page .service-hero-img,
.service-page img {
  border-radius: var(--unik-radius-img) !important;
}

.service-page .badge.bg-primary.bg-opacity-10,
.service-page .unik-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .95rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.12) !important;
  color: #074f78 !important;
  line-height: 1.2;
}

html[data-bs-theme="dark"] .service-page .badge.bg-primary.bg-opacity-10,
html[data-bs-theme="dark"] .service-page .unik-pill {
  background: rgba(7, 79, 120, 0.35) !important;
  color: #9fd0ef !important;
}

.service-page .icon-lg,
.service-page .icon-xl,
.service-page .feature-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
}

.service-features-band {
  background-color: transparent;
}

html[data-bs-theme="light"] .service-features-band {
  background-color: #f5f8fb !important;
}

html[data-bs-theme="dark"] .service-features-band,
html[data-bs-theme="dark"] .service-page .bg-mode,
html[data-bs-theme="dark"] .service-page .bg-light,
html[data-bs-theme="dark"] .service-page section {
  background-color: #12171c !important;
}

html[data-bs-theme="dark"] .unik-content-card,
html[data-bs-theme="dark"] .unik-list-card,
html[data-bs-theme="dark"] .service-page .hover-card,
html[data-bs-theme="dark"] .service-page .card.bg-mode {
  background-color: #1e272f !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  color: #f3f7fa;
}

html[data-bs-theme="dark"] .unik-page-hero,
html[data-bs-theme="dark"] .unik-page section,
html[data-bs-theme="dark"] .unik-legal-section {
  background-color: #12171c !important;
}

/* =========================================================
   Site-wide UX fixes
   ========================================================= */

/* 1. Hide all public breadcrumbs */
.unik-page-breadcrumb,
nav[aria-label="breadcrumb"],
.breadcrumb,
.breadcrumb-dots {
  display: none !important;
}

/* 2. Nav dropdown chevrons without Font Awesome */
.navbar .dropdown-toggle::after,
.navbar .dropdown-link.dropdown-toggle::after,
.dropdown .dropdown-toggle::after {
  content: "" !important;
  display: inline-block !important;
  width: 0.42em !important;
  height: 0.42em !important;
  margin-left: 0.35rem !important;
  border: 0 !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: rotate(45deg) !important;
  vertical-align: 0.08em !important;
  font-family: inherit !important;
  background: none !important;
}

.navbar-expand-xl .dropdown.dropend .dropdown-toggle::after,
.dropend .dropdown-toggle::after {
  transform: rotate(-45deg) !important;
}

.navbar-expand-xl .dropdown.dropstart .dropdown-toggle::before,
.dropstart .dropdown-toggle::before {
  content: "" !important;
  display: inline-block !important;
  width: 0.42em !important;
  height: 0.42em !important;
  margin-right: 0.35rem !important;
  border: 0 !important;
  border-left: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: rotate(45deg) !important;
  vertical-align: 0.08em !important;
  font-family: inherit !important;
  background: none !important;
}

/* 3. CTA headings always white on brand cards */
.card.bg-primary .card-body h1,
.card.bg-primary .card-body h2,
.card.bg-primary .card-body h3,
.cta-card h1,
.cta-card h2,
.cta-card h3,
.bg-primary .card-body h1,
.bg-primary .card-body h2,
.bg-primary .card-body h3 {
  color: #ffffff !important;
}

.card.bg-primary .card-body p,
.cta-card p,
.bg-primary .card-body p {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* 4. Contact form refinements */
.unik-contact-form .form-control,
.unik-contact-form .form-control-lg {
  border-radius: 0.75rem;
  border-color: rgba(7, 79, 120, 0.15);
}

.unik-contact-form .form-control:focus {
  border-color: #074f78;
  box-shadow: 0 0 0 0.2rem rgba(7, 79, 120, 0.12);
}

.unik-captcha-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(7, 79, 120, 0.12);
  border-radius: 0.75rem;
  background: #f5f8fb;
}

.unik-captcha-question {
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #074f78;
}

.unik-captcha-box .form-control {
  flex: 1 1 auto;
  min-width: 110px;
  margin: 0 !important;
}

.unik-captcha-input[type="number"]::-webkit-outer-spin-button,
.unik-captcha-input[type="number"]::-webkit-inner-spin-button,
input.unik-captcha-input::-webkit-outer-spin-button,
input.unik-captcha-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.unik-captcha-input[type="number"],
input.unik-captcha-input {
  -moz-appearance: textfield;
  appearance: textfield;
}

html[data-bs-theme="dark"] .unik-captcha-box {
  background: #1a222b;
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .unik-captcha-question {
  color: #9fd0ef;
}

/* 5. Lazy images & faster paint */
img[loading="lazy"] {
  content-visibility: auto;
}

/* 5. Lazy images & faster paint */
img[loading="lazy"] {
  content-visibility: auto;
}

.service-page > section:first-of-type,
.unik-page > section:first-of-type:not(.unik-page-hero) {
  padding-top: clamp(1.5rem, 3vw, 2.25rem) !important;
}

@media (max-width: 1199.98px) {
  .unik-page-hero {
    padding-top: clamp(2rem, 4vw, 2.75rem) !important;
  }

  .service-page > section:first-of-type,
  .unik-page > section:first-of-type:not(.unik-page-hero) {
    padding-top: clamp(1.25rem, 3vw, 2rem) !important;
  }
}

/* Service feature cards (About Service section) */
.service-feature-grid .service-feature-item,
.service-checklist .d-flex {
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: linear-gradient(135deg, rgba(7, 79, 120, 0.04), rgba(255, 255, 255, 0.9));
  box-shadow: 0 8px 22px rgba(7, 79, 120, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.service-feature-grid .service-feature-item:hover,
.service-checklist .d-flex:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(7, 79, 120, 0.12);
  border-color: rgba(7, 79, 120, 0.22);
}

.service-checklist .d-flex i[data-lucide],
.service-checklist .d-flex svg.lucide {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  color: #074f78;
}

.service-checklist .d-flex span {
  font-weight: 600;
  font-size: 0.92rem;
  color: #1a2b38;
}

html[data-bs-theme="dark"] .service-checklist .d-flex,
html[data-bs-theme="dark"] .service-feature-grid .service-feature-item {
  background: linear-gradient(135deg, rgba(10, 98, 143, 0.18), rgba(30, 39, 47, 0.95));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

html[data-bs-theme="dark"] .service-checklist .d-flex span {
  color: #e8eef3;
}

html[data-bs-theme="dark"] .service-checklist .d-flex i[data-lucide],
html[data-bs-theme="dark"] .service-checklist .d-flex svg.lucide {
  color: #9fd0ef;
}

/* Service inquiry panel */
.unik-service-inquiry {
  border: 1px solid rgba(7, 79, 120, 0.1);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(7, 79, 120, 0.08);
}

html[data-bs-theme="dark"] .unik-service-inquiry {
  background: var(--unik-card-dark, #1e272f);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Contact page layout */
.unik-contact-sidebar-card {
  border-radius: 1rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: #fff;
  padding: 1.25rem;
}

.unik-contact-qr img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 0.75rem;
  border: 1px solid rgba(7, 79, 120, 0.08);
}

/* Feedback hero band */
.unik-feedback-hero {
  min-height: 180px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #074f78 0%, #0a628f 55%, #0d7aab 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.unik-feedback-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/elements/pattern.svg") center/cover no-repeat;
  opacity: 0.12;
}

.unik-feedback-hero-content {
  position: relative;
  z-index: 1;
}

html[data-bs-theme="dark"] .unik-contact-sidebar-card {
  background: var(--unik-card-dark, #1e272f);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .unik-contact-sidebar-card .text-dark {
  color: #e8eef3 !important;
}

/* Homepage: vintage review marquee, team cards, back-to-top */
.unik-review-count-badge {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.1);
  color: #074f78;
  font-weight: 700;
  font-size: 0.85rem;
}

html[data-bs-theme="dark"] .unik-review-count-badge {
  background: rgba(159, 208, 239, 0.12);
  color: #9fd0ef;
}

.unik-review-marquee-wrap { width: 100%; overflow: hidden; }

.unik-review-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.unik-review-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.unik-review-track--left { animation: unik-marquee-left 72s linear infinite; }
.unik-review-track--right { animation: unik-marquee-right 84s linear infinite; }
.unik-review-marquee-wrap:hover .unik-review-track { animation-play-state: paused; }

@keyframes unik-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes unik-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.unik-vintage-review-card {
  flex: 0 0 auto;
  width: min(320px, 78vw);
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #e8f4fc 0%, #d4ebf9 100%);
  border: 1px solid rgba(7, 79, 120, 0.14);
  box-shadow: 0 8px 22px rgba(7, 79, 120, 0.1), inset 0 1px 0 rgba(255,255,255,0.75);
  filter: none;
}

html[data-bs-theme="dark"] .unik-vintage-review-card {
  background: linear-gradient(145deg, rgba(10, 98, 143, 0.22) 0%, rgba(30, 39, 47, 0.95) 100%);
  border-color: rgba(159, 208, 239, 0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.unik-vintage-stars {
  color: #f5b301;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}

.unik-vintage-quote {
  font-size: 0.88rem;
  line-height: 1.45;
  margin-bottom: 0.65rem;
  color: #1a3344;
}

html[data-bs-theme="dark"] .unik-vintage-quote { color: #e8eef3; }

.unik-vintage-meta { display: flex; flex-direction: column; gap: 0.1rem; font-size: 0.76rem; }
.unik-vintage-meta strong { color: #074f78; }
.unik-vintage-meta span { color: #6b7280; }
html[data-bs-theme="dark"] .unik-vintage-meta strong { color: #9fd0ef; }
html[data-bs-theme="dark"] .unik-vintage-meta span { color: #a9b4bf; }

.unik-team-slider-shell { position: relative; padding-bottom: 2.75rem; }
.unik-team-slider-shell .team-swiper { overflow: visible; }
.unik-team-slider-shell .team-pagination {
  position: static !important;
  margin-top: 1.25rem !important;
  padding-top: 0.25rem;
  transform: none !important;
}

.unik-team-slider-shell .swiper-pagination-bullet {
  opacity: 1;
  background: rgba(7, 79, 120, 0.25);
}

.unik-team-slider-shell .swiper-pagination-bullet-active {
  background: #074f78;
  width: 1.35rem;
  border-radius: 999px;
}

.unik-team-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(7, 79, 120, 0.1);
  box-shadow: 0 12px 30px rgba(7, 79, 120, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unik-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(7, 79, 120, 0.18);
}

.unik-team-card .team-overlay {
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent 62%) !important;
}

.back-top:before { content: none !important; display: none !important; }

button.back-top.unik-back-top,
.unik-back-top {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #fff !important;
}

.unik-back-top svg,
.unik-back-top i { color: #fff !important; }

/* Products page — interactive category cards */
.unik-products-grid-section {
  padding-top: clamp(1rem, 2vw, 1.5rem) !important;
}

.unik-product-category-card {
  position: relative;
  border-radius: 1rem;
  background: var(--bs-body-bg);
  border: 1px solid rgba(7, 79, 120, 0.1);
  box-shadow: 0 10px 28px rgba(7, 79, 120, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.unik-product-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(7, 79, 120, 0.14);
  border-color: rgba(7, 79, 120, 0.22);
}

.unik-product-category-card__accent {
  height: 4px;
  background: linear-gradient(90deg, #074f78, #0a628f, #9fd0ef);
}

.unik-product-category-card__inner {
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.85rem;
}

.unik-product-category-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.unik-product-category-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(7, 79, 120, 0.12), rgba(159, 208, 239, 0.35));
  color: #074f78;
}

.unik-product-category-card__badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
  white-space: nowrap;
}

.unik-product-category-card__title {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
}

.unik-product-category-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.unik-product-category-card__title a:hover {
  color: #074f78;
}

.unik-product-category-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex-grow: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  align-content: flex-start;
}

.unik-product-category-card__tags li {
  display: contents;
}

.unik-product-category-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  line-height: 1.2;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 79, 120, 0.14);
  background: rgba(159, 208, 239, 0.22);
  color: #074f78;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 0 auto;
}

.unik-product-category-card__tag:hover {
  background: rgba(7, 79, 120, 0.16);
  color: #074f78;
  border-color: rgba(7, 79, 120, 0.28);
  transform: translateY(-1px);
}

.unik-product-category-card__tag--more {
  cursor: default;
  font-weight: 600;
}

.unik-product-category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  color: #074f78;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.unik-product-category-card__cta:hover {
  gap: 0.55rem;
  color: #0a628f;
}

html[data-bs-theme="dark"] .unik-product-category-card {
  background: #1e272f;
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .unik-product-category-card__tag {
  background: rgba(159, 208, 239, 0.08);
  border-color: rgba(159, 208, 239, 0.12);
  color: #c5d0db;
}

html[data-bs-theme="dark"] .unik-product-category-card__title a:hover,
html[data-bs-theme="dark"] .unik-product-category-card__cta {
  color: #9fd0ef;
}

/* Team section */
.unik-team-section {
  padding-bottom: clamp(3rem, 5vw, 4rem) !important;
}

.unik-testimonials-section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem) !important;
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem) !important;
}

@media (prefers-reduced-motion: reduce) {
  .unik-review-track--left,
  .unik-review-track--right {
    animation: none !important;
  }
}

/* Yellow filled stars (site wide) */
.unik-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  line-height: 1;
}

.unik-star {
  font-size: 0.95rem;
  line-height: 1;
}

.unik-stars--sm .unik-star { font-size: 0.82rem; }
.unik-stars--lg .unik-star { font-size: 1.1rem; }

.unik-star.is-filled { color: #f5b301; text-shadow: 0 1px 0 rgba(180, 120, 0, 0.15); }
.unik-star.is-empty { color: #e5e7eb; }

html[data-bs-theme="dark"] .unik-star.is-empty { color: rgba(255,255,255,0.18); }

/* Product cards (category / subcategory grids) */
.unik-product-card {
  border-radius: 1rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: var(--bs-body-bg);
  box-shadow: 0 10px 26px rgba(7, 79, 120, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.unik-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(7, 79, 120, 0.14);
}

.unik-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #eef6fb, #dcecf7);
}

.unik-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.unik-product-card:hover .unik-product-card__media img { transform: scale(1.04); }

.unik-product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 79, 120, 0.18), transparent 45%);
  pointer-events: none;
}

.unik-product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.88);
  color: #fff;
}

.unik-product-card__body { padding: 1rem 1rem 0.75rem; flex-grow: 1; }

.unik-product-card__title {
  font-size: 0.98rem;
  margin: 0 0 0.45rem;
  line-height: 1.35;
}

.unik-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.unik-product-card__title a:hover { color: #074f78; }

.unik-product-card__price {
  margin: 0.45rem 0 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #074f78;
}

.unik-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid rgba(7, 79, 120, 0.08);
}

.unik-product-card__btn {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.unik-product-card__btn:hover {
  background: #074f78;
  color: #fff;
}

.unik-product-card__icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #074f78;
  color: #fff;
  text-decoration: none;
}

/* Product detail page */
.unik-product-gallery { border-radius: 1rem !important; }

.unik-product-gallery__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.unik-product-gallery__empty {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #6b7280;
  background: linear-gradient(145deg, #eef6fb, #dcecf7);
}

.unik-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.88);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.unik-gallery-prev { left: 0.75rem; }
.unik-gallery-next { right: 0.75rem; }

.unik-product-summary { border-radius: 1rem !important; }

.unik-product-summary__price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #074f78;
  margin: 0;
}

.unik-product-option__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.45rem;
}

.unik-product-option__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.unik-choice-pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 79, 120, 0.14);
  background: rgba(159, 208, 239, 0.18);
  color: #074f78;
}

.unik-product-option__colors { display: flex; gap: 0.45rem; flex-wrap: wrap; }

.unik-color-dot {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 0 1px rgba(7, 79, 120, 0.18);
}

.unik-product-spec { border-radius: 1rem !important; }
.unik-product-spec__content { color: var(--bs-secondary-color); line-height: 1.7; }

.unik-review-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(7, 79, 120, 0.08);
}

.unik-review-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* Products mega menu — scrollable, hidden scrollbar, balanced hierarchy */
.unik-products-mega {
  width: min(680px, 92vw);
  padding: 0.75rem;
}

.unik-products-mega__scroll {
  max-height: min(62vh, 420px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.unik-products-mega__scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.unik-mega-group {
  padding: 0.5rem 0.35rem 0.65rem;
  border-bottom: 1px solid rgba(7, 79, 120, 0.08);
  min-width: 0;
}

.unik-mega-group:last-child { border-bottom: none; }

.unik-mega-group__title {
  display: block;
  font-weight: 700;
  font-size: 0.84rem;
  color: #074f78;
  text-decoration: none;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.unik-mega-group__title:hover { color: #0a628f; }

.unik-mega-group__subs {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.65rem;
  border-left: 2px solid rgba(159, 208, 239, 0.65);
}

.unik-mega-group__subs li { margin: 0; }

.unik-mega-group__subs a {
  display: block;
  font-size: 0.74rem;
  line-height: 1.35;
  padding: 0.22rem 0;
  color: #4b5563;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.unik-mega-group__subs a:hover {
  color: #074f78;
}

.unik-mega-group__more {
  font-weight: 700 !important;
  color: #074f78 !important;
}

.unik-lang-switcher .dropdown-toggle {
  font-size: 0.78rem;
  padding: 0.15rem 0.35rem;
}

.unik-lang-menu { max-height: 280px; overflow-y: auto; }

/* Catalog sidebar */
.unik-catalog-sidebar {
  border: 1px solid rgba(7, 79, 120, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bs-body-bg);
}

.unik-catalog-group + .unik-catalog-group {
  border-top: 1px solid rgba(7, 79, 120, 0.08);
}

.unik-catalog-group__head {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.unik-catalog-group__title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 0.75rem 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: inherit;
  text-decoration: none;
  background: rgba(7, 79, 120, 0.04);
}

.unik-catalog-group__title.is-active,
.unik-catalog-group.is-open > .unik-catalog-group__head .unik-catalog-group__title {
  color: #074f78;
  background: rgba(159, 208, 239, 0.22);
}

.unik-catalog-group__toggle {
  flex: 0 0 auto;
  width: 42px;
  border: none;
  border-left: 1px solid rgba(7, 79, 120, 0.08);
  background: rgba(7, 79, 120, 0.04);
  color: #074f78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.unik-catalog-group__toggle i,
.unik-catalog-group__toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.unik-catalog-group.is-open .unik-catalog-group__toggle {
  background: rgba(159, 208, 239, 0.22);
}

.unik-catalog-group.is-open .unik-catalog-group__toggle i,
.unik-catalog-group.is-open .unik-catalog-group__toggle svg {
  transform: rotate(180deg);
}

.unik-catalog-group__count {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  background: rgba(7, 79, 120, 0.08);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}

.unik-catalog-group__list,
.unik-catalog-group .unik-catalog-empty {
  display: none;
}

.unik-catalog-group.is-open .unik-catalog-group__list,
.unik-catalog-group.is-open .unik-catalog-empty {
  display: block;
}

.unik-catalog-group__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.65rem;
}

.unik-catalog-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 1.35rem;
  font-size: 0.82rem;
  color: inherit;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.unik-catalog-link:hover {
  background: rgba(7, 79, 120, 0.05);
  color: #074f78;
}

.unik-catalog-link.is-active {
  border-left-color: #074f78;
  background: rgba(159, 208, 239, 0.18);
  color: #074f78;
  font-weight: 600;
}

.unik-catalog-link__count {
  font-size: 0.72rem;
  color: #6b7280;
}

.unik-catalog-empty {
  margin: 0;
  padding: 0.35rem 1rem 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Product card quote badge */
.unik-product-card__price.is-quote,
.unik-product-summary__price.is-quote {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #074f78;
  background: rgba(159, 208, 239, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

/* Team section — full-photo swiper */
.unik-team-section {
  background: linear-gradient(180deg, rgba(159, 208, 239, 0.12), transparent 55%);
}

.unik-team-slider-shell {
  position: relative;
  padding-bottom: 2.75rem;
}

.unik-team-swiper { overflow: visible; padding-bottom: 0.5rem; }

.unik-team-pagination {
  position: static !important;
  margin-top: 1rem !important;
}

.unik-team-slide {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bs-body-bg);
  border: 1px solid rgba(7, 79, 120, 0.1);
  box-shadow: 0 14px 32px rgba(7, 79, 120, 0.12);
  height: 100%;
}

.unik-team-slide__photo {
  aspect-ratio: 3 / 4;
  min-height: 320px;
  overflow: hidden;
  background: #dcecf7;
}

.unik-team-slide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.unik-team-slide__body {
  padding: 0.95rem 1rem 1.1rem;
  border-top: 3px solid rgba(159, 208, 239, 0.65);
}

.unik-team-slide__name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
}

.unik-team-slide__role {
  margin: 0;
  font-size: 0.82rem;
  color: #6b7280;
}

@media (max-width: 767.98px) {
  .unik-products-mega__scroll { grid-template-columns: 1fr; }
  .unik-team-slide__photo { min-height: 280px; }
}

/* Contact form arrow decoration */
.unik-contact-form-deco {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7, 79, 120, 0.15), rgba(159, 208, 239, 0.35));
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 1;
}

.unik-contact-form-deco::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-top: 3px solid #074f78;
  border-right: 3px solid #074f78;
  transform: rotate(45deg);
}

@media (max-width: 991.98px) {
  .unik-contact-form-deco { display: none; }
}

/* Blog detail */
.unik-blog-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1rem;
}

.unik-blog-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.unik-blog-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
}

.unik-blog-prose .card-body {
  color: var(--bs-secondary-color);
  line-height: 1.75;
}

.unik-blog-prose h2,
.unik-blog-prose h3,
.unik-blog-prose h4 {
  color: var(--bs-body-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.unik-blog-recent__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(7, 79, 120, 0.08);
}

.unik-blog-recent__link img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 0.65rem;
  flex-shrink: 0;
}

.unik-blog-recent__link:hover { color: #074f78; }
