
:root {
  --uvtc-blue: #0b3b78;
  --uvtc-blue-2: #062d5d;
  --uvtc-cyan: #0a9dbc;
  --uvtc-green: #2f8f46;
  --uvtc-gold: #d9a441;
  --uvtc-ink: #13233a;
  --uvtc-muted: #65758d;
  --uvtc-line: #d7e1ec;
  --uvtc-bg: #f5f8fb;
  --uvtc-soft: #eef5f9;
  --uvtc-white: #ffffff;
  --uvtc-shadow: 0 18px 45px rgba(10, 31, 63, 0.12);
  --uvtc-shadow-strong: 0 28px 70px rgba(10, 31, 63, 0.18);
}

body.uvtc-site {
  color: var(--uvtc-ink);
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  background: #fff;
  line-height: 1.65;
}

body.uvtc-site,
body.uvtc-site div,
body.uvtc-site span,
body.uvtc-site p,
body.uvtc-site a,
body.uvtc-site li,
body.uvtc-site h1,
body.uvtc-site h2,
body.uvtc-site h3,
body.uvtc-site h4,
body.uvtc-site h5,
body.uvtc-site h6,
body.uvtc-site small,
body.uvtc-site strong,
body.uvtc-site button {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.uvtc-site a {
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.uvtc-site img {
  border-radius: 6px;
}

.uvtc-topbar {
  background: #08294f;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

.uvtc-topbar a,
.uvtc-topbar span {
  color: #fff;
}

.uvtc-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(215, 225, 236, 0.85);
  box-shadow: 0 10px 30px rgba(10, 31, 63, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.uvtc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--uvtc-ink);
  font-weight: 800;
  letter-spacing: 0;
}

.uvtc-brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--uvtc-blue), var(--uvtc-cyan));
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(10, 157, 188, 0.25);
}

.uvtc-brand-logo {
  width: 84px;
  height: 52px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0;
  flex: 0 0 auto;
}

.uvtc-brand small {
  display: block;
  color: var(--uvtc-muted);
  font-weight: 600;
  margin-top: 2px;
}

.uvtc-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}

.uvtc-nav a {
  color: var(--uvtc-ink);
  font-weight: 700;
  padding: 12px 11px;
  border-radius: 4px;
  position: relative;
}

.uvtc-nav a.active,
.uvtc-nav a:hover {
  color: var(--uvtc-blue);
  background: var(--uvtc-soft);
}

.uvtc-hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.uvtc-hero.uvtc-hero-slider {
  display: block;
  min-height: 0;
}

.uvtc-hero-slide {
  min-height: 640px;
  display: flex !important;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.uvtc-hero::before,
.uvtc-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 54, 0.92), rgba(7, 27, 54, 0.66), rgba(7, 27, 54, 0.22)),
    linear-gradient(180deg, rgba(7, 27, 54, 0.18), rgba(7, 27, 54, 0.66));
}

.uvtc-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
}

.uvtc-hero .container,
.uvtc-page-hero .container {
  position: relative;
  z-index: 1;
}

.uvtc-hero-slider .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 4;
}

.uvtc-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.uvtc-slider-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.uvtc-slider-arrow.prev {
  left: 28px;
}

.uvtc-slider-arrow.next {
  right: 28px;
}

.uvtc-slider-arrow.prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.uvtc-slider-arrow.next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.uvtc-slider-arrow:hover {
  background: var(--uvtc-cyan);
  border-color: var(--uvtc-cyan);
  transform: translateY(-50%) scale(1.04);
}

.uvtc-hero-slider .slick-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: transparent;
  color: transparent;
  font-size: 0;
  transition: width 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.uvtc-hero-slider .slick-dots .slick-active button {
  width: 34px;
  background: var(--uvtc-gold);
  border-color: var(--uvtc-gold);
}

.uvtc-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--uvtc-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-size: 13px;
}

.uvtc-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--uvtc-gold);
  margin-right: 12px;
}

.uvtc-hero .uvtc-kicker,
.uvtc-page-hero .uvtc-kicker,
.uvtc-feature-strip .uvtc-kicker {
  color: #d7f7ff;
}

.uvtc-hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 22px;
}

.uvtc-hero p {
  max-width: 650px;
  color: #eef8ff;
  font-size: 18px;
  line-height: 1.75;
}

.uvtc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--uvtc-cyan);
  color: #fff;
  font-weight: 800;
  border: 1px solid var(--uvtc-cyan);
  box-shadow: 0 12px 24px rgba(10, 157, 188, 0.25);
}

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

.uvtc-btn:hover {
  color: #fff;
  background: var(--uvtc-blue-2);
  border-color: var(--uvtc-blue-2);
  transform: translateY(-1px);
}

.uvtc-btn.alt {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255,255,255,0.8);
  box-shadow: none;
}

.uvtc-hero-panel {
  background: rgba(255,255,255,0.95);
  color: var(--uvtc-ink);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--uvtc-shadow);
  border-top: 4px solid var(--uvtc-gold);
  max-width: 390px;
  margin-left: auto;
}

.uvtc-hero-panel h2 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--uvtc-ink);
  margin-bottom: 16px;
}

.uvtc-hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.uvtc-hero-panel li {
  display: flex;
  gap: 10px;
  color: var(--uvtc-muted);
  margin-bottom: 12px;
}

.uvtc-hero-panel li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--uvtc-cyan);
}

.uvtc-trustbar {
  margin-top: -52px;
  position: relative;
  z-index: 2;
}

.uvtc-trustbar-inner {
  background: #fff;
  border: 1px solid var(--uvtc-line);
  box-shadow: var(--uvtc-shadow);
  border-radius: 6px;
  padding: 24px 26px;
}

.uvtc-trust-item {
  border-right: 1px solid var(--uvtc-line);
  min-height: 86px;
}

.uvtc-trust-item:last-child {
  border-right: 0;
}

.uvtc-trust-item strong {
  display: block;
  color: var(--uvtc-blue);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.uvtc-trust-item span {
  color: var(--uvtc-muted);
  font-weight: 600;
}

.row.g-4,
.row.g-5 {
  margin-left: -12px;
  margin-right: -12px;
}

.row.g-4 > [class*="col-"],
.row.g-5 > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}

.uvtc-section {
  padding: 96px 0;
  position: relative;
}

.uvtc-section.light {
  background: linear-gradient(180deg, var(--uvtc-bg), #fff);
}

.uvtc-section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.uvtc-section-title h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--uvtc-ink);
  margin-bottom: 14px;
}

.uvtc-section-title p {
  color: var(--uvtc-muted);
  font-size: 17px;
  line-height: 1.75;
}

.uvtc-stat {
  border-left: 0;
  border-top: 4px solid var(--uvtc-cyan);
  padding: 24px;
  background: #fff;
  min-height: 136px;
  border-radius: 6px;
  box-shadow: var(--uvtc-shadow);
}

.uvtc-stat strong {
  display: block;
  color: var(--uvtc-blue);
  font-size: 34px;
  line-height: 1;
}

.uvtc-card {
  background: #fff;
  border: 1px solid var(--uvtc-line);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 32px rgba(10, 31, 63, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uvtc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--uvtc-shadow-strong);
}

.uvtc-card img,
.uvtc-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 0;
}

.uvtc-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--uvtc-line);
  box-shadow: 0 12px 32px rgba(10, 31, 63, 0.07);
  background: #fff;
  position: relative;
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.uvtc-gallery-item img {
  height: 260px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.uvtc-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,45,93,0), rgba(6,45,93,0.74));
  opacity: 0;
  z-index: 1;
  transition: opacity 0.25s ease;
}

.uvtc-gallery-item::after {
  content: "View photo";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.uvtc-gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.uvtc-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--uvtc-shadow-strong);
  border-color: rgba(10, 157, 188, 0.45);
}

.uvtc-gallery-item:hover::before,
.uvtc-gallery-item:hover::after {
  opacity: 1;
}

.uvtc-gallery-item:hover::after {
  transform: translateY(0);
}

.uvtc-card-body {
  padding: 28px;
}

.uvtc-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--uvtc-ink);
  margin-bottom: 11px;
}

.uvtc-card p,
.uvtc-card li {
  color: var(--uvtc-muted);
  line-height: 1.7;
}

.uvtc-list {
  padding-left: 18px;
  margin-bottom: 0;
}

.uvtc-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.uvtc-pill-list span {
  border: 1px solid var(--uvtc-line);
  background: #fff;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--uvtc-ink);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(10, 31, 63, 0.05);
}

.uvtc-page-hero {
  min-height: 390px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #fff;
}

.uvtc-page-hero h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 800;
  max-width: 780px;
}

.uvtc-page-hero p {
  color: #eef8ff;
  max-width: 720px;
  font-size: 18px;
}

.uvtc-procedure {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.uvtc-procedure .uvtc-card-body {
  padding: 22px;
}

.uvtc-procedure strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--uvtc-blue), var(--uvtc-cyan));
  color: #fff;
  margin-bottom: 16px;
}

.uvtc-image-stack {
  position: relative;
  padding: 0 24px 24px 0;
}

.uvtc-image-stack::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 72%;
  background: var(--uvtc-soft);
  border-radius: 6px;
  z-index: -1;
}

.uvtc-image-stack img {
  box-shadow: var(--uvtc-shadow);
}

.uvtc-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.uvtc-check {
  background: #fff;
  border: 1px solid var(--uvtc-line);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--uvtc-ink);
  font-weight: 700;
}

.uvtc-check::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--uvtc-green);
  margin-right: 8px;
}

.uvtc-feature-strip {
  background: var(--uvtc-blue-2);
  color: #fff;
}

.uvtc-feature-strip h2,
.uvtc-feature-strip h3,
.uvtc-feature-strip p,
.uvtc-feature-strip .uvtc-section-title p {
  color: #fff;
}

.uvtc-mini-card {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 24px;
  height: 100%;
}

.uvtc-service-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--uvtc-line);
  border-radius: 6px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 12px 32px rgba(10, 31, 63, 0.07);
}

.uvtc-service-card span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--uvtc-blue), var(--uvtc-cyan));
  color: #fff;
  font-weight: 800;
}

.uvtc-service-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--uvtc-ink);
  margin-bottom: 6px;
}

.uvtc-service-card p {
  color: var(--uvtc-muted);
  margin-bottom: 0;
}

.uvtc-home-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(10, 31, 63, 0.08);
}

.uvtc-mini-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--uvtc-gold);
  color: #101d2e;
  font-weight: 800;
  margin-bottom: 16px;
}

.uvtc-cta {
  background: linear-gradient(135deg, var(--uvtc-blue), var(--uvtc-cyan));
  color: #fff;
  border-radius: 6px;
  padding: 42px;
  box-shadow: var(--uvtc-shadow);
}

.uvtc-cta h2,
.uvtc-cta p {
  color: #fff;
}

.mfp-bg.uvtc-gallery-popup {
  background: #06182c;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mfp-bg.uvtc-gallery-popup.mfp-ready {
  opacity: 0.92;
}

.mfp-bg.uvtc-gallery-popup.mfp-removing {
  opacity: 0;
}

.mfp-wrap.uvtc-gallery-popup .mfp-content {
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.mfp-wrap.uvtc-gallery-popup.mfp-ready .mfp-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.mfp-wrap.uvtc-gallery-popup.mfp-removing .mfp-content {
  opacity: 0;
  transform: scale(0.96) translateY(12px);
}

.mfp-wrap.uvtc-gallery-popup .mfp-figure::after {
  box-shadow: var(--uvtc-shadow-strong);
  border-radius: 6px;
}

.mfp-wrap.uvtc-gallery-popup img.mfp-img {
  border-radius: 6px;
  padding: 48px 0 42px;
}

.mfp-wrap.uvtc-gallery-popup .mfp-title,
.mfp-wrap.uvtc-gallery-popup .mfp-counter {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
}

.uvtc-footer {
  background: #081f3c;
  color: #dce8f5;
  padding-top: 60px;
}

.uvtc-footer h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

.uvtc-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.uvtc-footer-brand img {
  width: 82px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
}

.uvtc-footer-brand h4 {
  margin-bottom: 0;
}

.uvtc-footer a,
.uvtc-footer p,
.uvtc-footer li {
  color: #dce8f5;
}

.uvtc-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uvtc-footer li {
  margin-bottom: 9px;
}

.uvtc-copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  color: #b9c8d8;
}

@media (max-width: 991px) {
  .uvtc-nav {
    justify-content: flex-start;
    margin-top: 15px;
  }
  .uvtc-hero {
    min-height: auto;
    padding: 92px 0 120px;
  }
  .uvtc-hero.uvtc-hero-slider {
    padding: 0;
  }
  .uvtc-hero-slide {
    min-height: auto;
    padding: 92px 0 120px;
  }
  .uvtc-hero h1 {
    font-size: 42px;
  }
  .uvtc-hero-panel {
    margin-left: 0;
    margin-top: 34px;
  }
  .uvtc-slider-arrow {
    width: 40px;
    height: 40px;
  }
  .uvtc-slider-arrow.prev {
    left: 12px;
  }
  .uvtc-slider-arrow.next {
    right: 12px;
  }
  .uvtc-trustbar {
    margin-top: -38px;
  }
  .uvtc-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--uvtc-line);
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .uvtc-procedure {
    grid-template-columns: repeat(2, 1fr);
  }
  .uvtc-check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .uvtc-topbar {
    display: none;
  }
  .uvtc-brand {
    align-items: flex-start;
  }
  .uvtc-brand-mark {
    width: 44px;
    height: 44px;
  }
  .uvtc-brand-logo {
    width: 68px;
    height: 42px;
    object-fit: cover;
    object-position: center 20%;
  }
  .uvtc-nav a {
    padding: 8px 7px;
    font-size: 14px;
  }
  .uvtc-hero h1,
  .uvtc-page-hero h1 {
    font-size: 32px;
  }
  .uvtc-section {
    padding: 60px 0;
  }
  .uvtc-section-title h2 {
    font-size: 30px;
  }
  .uvtc-procedure {
    grid-template-columns: 1fr;
  }
}
