:root {
  --navy: #101a3d;
  --navy-2: #1c2a63;
  --brand: #29398d;
  --ink: #0b1024;
  --slate: #51607a;
  --slate-soft: #7a8699;
  --gold: #c9a227;
  --gold-deep: #a9831a;
  --gold-soft: #e7c969;
  --paper: #f6f8fc;
  --paper-2: #eef2fb;
  --line: #e4e9f4;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(16, 26, 61, 0.06);
  --shadow-md: 0 14px 40px rgba(16, 26, 61, 0.1);
  --shadow-lg: 0 30px 70px rgba(16, 26, 61, 0.16);
  --radius: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sans:
    "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --maxw: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--ink);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.tl-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.tl-eyebrow {
  display: block;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.tl-section-title {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: -0.4px;
}
.tl-section-sub {
  color: var(--slate);
  font-size: 1.02rem;
  max-width: 640px;
  margin: 14px auto 0;
}
.tl-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.3s;
  font-family: var(--sans);
}
.tl-btn i {
  transition: transform 0.3s var(--ease);
}
.tl-btn:hover i {
  transform: translateX(4px);
}
.tl-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #241b00;
  box-shadow: 0 12px 26px rgba(201, 162, 39, 0.28);
}
.tl-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(201, 162, 39, 0.36);
}
.tl-btn-navy {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(16, 26, 61, 0.25);
}
.tl-btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(16, 26, 61, 0.34);
}
.tl-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.tl-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}
.tl-floats {
  position: fixed;
  bottom: 26px;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  z-index: 9999;
}
.tl-floats a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 21px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease);
}
.tl-floats a:hover {
  transform: scale(1.1) translateY(-2px);
}
.tl-floats .wa {
  background: #25d366;
}
.tl-floats .call {
  background: var(--brand);
}
.tl-floats .wa::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.tl-topbar {
  background: var(--ink);
  color: #c7cee6;
  font-size: 12.5px;
}
.tl-topbar .tl-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
.tl-topbar a {
  color: #e9ecf7;
}
.tl-topbar a:hover {
  color: var(--gold-soft);
}
.tl-topbar .meta {
  display: flex;
  gap: 22px;
  align-items: center;
}
.tl-topbar .meta b {
  color: var(--gold-soft);
  font-weight: 600;
}
.tl-topbar .socials {
  display: flex;
  gap: 8px;
}
.tl-topbar .socials a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  transition: 0.3s;
}
.tl-topbar .socials a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.tl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.3s,
    padding 0.3s;
}
.tl-header.shrink {
  box-shadow: 0 10px 30px rgba(16, 26, 61, 0.09);
}
.tl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  transition: height 0.3s;
}
.tl-header.shrink .tl-nav {
  height: 64px;
}
.tl-logo img {
  height: 80px;
  width: auto;
  transition: height 0.3s;
}
.tl-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tl-other-services {
  display: block;
}
.tl-blog-image {
  display: block;
}
.tl-menu > li {
  position: relative;
}
.tl-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 15px;
  border-radius: 9px;
  transition:
    color 0.25s,
    background 0.25s;
}
.tl-menu > li > a .caret {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.3s;
}
.tl-menu > li:hover > a {
  color: var(--brand);
  background: var(--paper-2);
}
.tl-menu > li:hover > a .caret {
  transform: rotate(180deg);
}
.tl-menu > li > a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
  border-radius: 2px;
}
.tl-menu > li:hover > a::after {
  transform: scaleX(1);
}
.tl-mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(860px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.32s var(--ease);
  z-index: 1001;
}
.tl-mega::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.tl-menu > li.has-mega:hover .tl-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.tl-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 10px;
  max-height: 60vh;
  overflow: auto;
}
.tl-mega.wide .tl-mega-grid {
  grid-template-columns: repeat(4, 1fr);
}
.tl-mega a.item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.3px;
  font-weight: 500;
  color: var(--slate);
  padding: 9px 11px;
  border-radius: 9px;
  transition: all 0.22s;
}
.tl-mega a.item i {
  color: var(--gold-deep);
  font-size: 13px;
  opacity: 0.55;
  transition: 0.22s;
}
.tl-mega a.item:hover {
  background: var(--paper-2);
  color: var(--brand);
  padding-left: 15px;
}
.tl-mega a.item:hover i {
  opacity: 1;
  transform: translateX(2px);
}
.tl-mega-head {
  grid-column: 1/-1;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 600;
  padding: 4px 11px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.tl-burger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
}
.tl-mobile {
  display: none;
}

@media (max-width: 991px) {
  .tl-topbar .meta span:last-child {
    display: none;
  }
  .tl-menu {
    display: none;
  }
  .tl-blog-image {
    display: none;
  }
  .tl-other-services {
    display: none;
  }
  .tl-burger {
    display: block;
  }
  .tl-mobile {
    display: block;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    padding: 20px;
  }
  .tl-mobile.open {
    transform: none;
  }
  .tl-mobile-back {
    position: fixed;
    inset: 0;
    background: rgba(11, 16, 36, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1999;
  }
  .tl-mobile-back.open {
    opacity: 1;
    visibility: visible;
  }
  .tl-mob-close {
    display: flex;
    justify-content: flex-end;
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 6px;
    cursor: pointer;
  }
  .tl-mob-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 8px;
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  .tl-mob-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
  }
  .tl-mob-sub.open {
    max-height: 1400px;
  }
  .tl-mob-sub a {
    display: block;
    padding: 10px 18px;
    font-size: 13.5px;
    color: var(--slate);
  }
  .tl-mob-sub a:hover {
    color: var(--brand);
  }
  .tl-mob-item .chev {
    transition: transform 0.3s;
  }
  .tl-mob-item.open .chev {
    transform: rotate(180deg);
  }
}
::selection {
  background: var(--gold);
  color: #241b00;
}
html {
  scroll-padding-top: 90px;
}
body::-webkit-scrollbar {
  width: 11px;
}
body::-webkit-scrollbar-track {
  background: var(--paper);
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--navy-2), var(--navy));
  border-radius: 10px;
  border: 2px solid var(--paper);
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--brand);
}
.tl-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 3000;
  background: linear-gradient(
    90deg,
    var(--gold-soft),
    var(--gold) 50%,
    var(--gold-deep)
  );
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.6);
  transition: width 0.1s linear;
}
.tl-top {
  position: fixed;
  bottom: 92px;
  right: 26px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: #fff;
  font-size: 19px;
  z-index: 9998;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition: all 0.4s var(--ease);
}
.tl-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.tl-top:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #241b00;
  transform: translateY(-3px);
}
.reveal {
  transform: translateY(30px) scale(0.985);
}
.reveal.in {
  transform: none;
}
.tl-center .tl-section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}
.tl-center .tl-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 30%,
    var(--gold-deep) 70%,
    transparent
  );
}
.tl-center .tl-section-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}
.tl-eyebrow {
  position: relative;
  overflow: hidden;
}
.tl-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.tl-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.tl-btn:hover::after {
  transform: translateX(120%);
}
.tl-btn-ghost::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
}
.tl-feat,
.tl-icard,
.tl-tcard,
.tl-srv {
  position: relative;
}
.tl-feat::before,
.tl-icard::before,
.tl-tcard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(201, 162, 39, 0.55),
    transparent 40%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.tl-feat:hover::before,
.tl-icard:hover::before,
.tl-tcard:hover::before {
  opacity: 1;
}
.tl-feat:hover,
.tl-icard:hover,
.tl-tcard:hover {
  box-shadow: 0 24px 50px rgba(16, 26, 61, 0.14);
}
.tl-hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(41, 57, 141, 0.16),
    rgba(201, 162, 39, 0.07) 45%,
    transparent 70%
  );
  filter: blur(20px);
  animation: auroraFloat 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes auroraFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 40px) scale(1.12);
  }
}
.tl-hero .badge-pill {
  background: linear-gradient(180deg, #fff, #f4f7ff);
}
.tl-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.15rem);
}
.tl-cat .ic {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}
.tl-cat .ic::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 19px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.tl-stat .num {
  background: linear-gradient(180deg, #fff 30%, #e7c969);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tl-tab {
  position: relative;
  overflow: hidden;
}
.tl-why,
.tl-grid-sec,
.tl-faq {
  background-image: radial-gradient(
    120% 60% at 50% 0%,
    rgba(41, 57, 141, 0.03),
    transparent 60%
  );
}

@media (prefers-reduced-motion: reduce) {
  .tl-hero::after {
    animation: none;
  }
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
.tl-foot {
  background: linear-gradient(180deg, #0c1330 0%, var(--ink) 100%);
  color: #9aa3c4;
  font-size: 14px;
}
.tl-foot a {
  color: #9aa3c4;
  transition: color 0.25s;
}
.tl-foot a:hover {
  color: var(--gold-soft);
}
.tl-foot-top {
  padding: 66px 0 38px;
}
.tl-foot-top .tl-container {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.1fr 1.2fr;
  gap: 44px;
}
.tl-foot h5 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  margin: 0 0 20px;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 12px;
}
.tl-foot h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.tl-foot .brand-logo {
  height: 38px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.tl-foot .about p {
  font-size: 13.4px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: #8e98ba;
}
.tl-foot .usp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 20px;
}
.tl-foot .usp span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.6px;
  color: #aab2cf;
}
.tl-foot .usp i {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}
.tl-foot address {
  font-style: normal;
  display: grid;
  gap: 10px;
}
.tl-foot .cline {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.4px;
}
.tl-foot .cline i {
  color: var(--gold);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.tl-foot .links {
  display: grid;
  gap: 11px;
}
.tl-foot .links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.6px;
}
.tl-foot .links i {
  color: var(--gold-deep);
  font-size: 11px;
  transition: transform 0.25s;
}
.tl-foot .links a:hover i {
  transform: translateX(3px);
}
.tl-foot .fsoc {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.tl-foot .fsoc a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}
.tl-foot .fsoc a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink);
  transform: translateY(-3px);
  border-color: transparent;
}
.tl-foot .fcta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 11px 20px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #241b00 !important;
  font-weight: 700;
  font-size: 13.5px;
  transition: transform 0.3s var(--ease);
}
.tl-foot .fcta:hover {
  transform: translateY(-3px);
}
.tl-locs {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}
.tl-locs .lhead {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.tl-locs .lhead i {
  color: var(--gold);
}
.tl-locs .loc-grid {
  columns: 4 220px;
  column-gap: 32px;
}
.tl-locs .loc-grid a {
  display: block;
  font-size: 12.4px;
  line-height: 1.55;
  color: #828cad;
  padding: 5px 0;
  break-inside: avoid;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    color 0.22s,
    padding-left 0.22s;
}
.tl-locs .loc-grid a:hover {
  color: var(--gold-soft);
  padding-left: 6px;
}

.tl-foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.tl-foot-bottom .tl-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.8px;
  color: #7a84a6;
}
.tl-foot-bottom .blinks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .tl-foot-top .tl-container {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}
@media (max-width: 600px) {
  .tl-foot-top .tl-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tl-locs .loc-grid {
    columns: 1;
  }
  .tl-foot-bottom .tl-container {
    justify-content: center;
    text-align: center;
  }
}
.tl-hero {
  position: relative;
  background:
    radial-gradient(
      120% 120% at 85% 0%,
      rgba(41, 57, 141, 0.06) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fd 100%);
  overflow: hidden;
  padding: 78px 0 84px;
}
.tl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41, 57, 141, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 57, 141, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(
    120% 80% at 70% 20%,
    #000 30%,
    transparent 75%
  );
  mask-image: radial-gradient(120% 80% at 70% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.tl-hero .tl-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.tl-hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.tl-hero .badge-pill i {
  color: #1eaf6b;
  font-size: 15px;
}
.tl-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--ink);
  margin-bottom: 8px;
}
.tl-hero .typed-wrap {
  display: block;
  min-height: 1.25em;
}
.tl-hero .typed {
  background: linear-gradient(
    100deg,
    var(--brand) 0%,
    #5b6fd6 45%,
    var(--gold-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.tl-hero .typed::after {
  content: "|";
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
  font-weight: 400;
  animation: blink 0.9s infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.tl-hero p.lead {
  font-size: 1.02rem;
  color: var(--slate);
  margin: 18px 0 28px;
  max-width: 560px;
}
.tl-hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.tl-hero .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.tl-hero .trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.tl-hero .trust-row i {
  color: var(--gold-deep);
  font-size: 16px;
}
.tl-hero .visual {
  position: relative;
}
.tl-hero .visual .glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(
    circle,
    rgba(41, 57, 141, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.tl-hero .visual img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 26px 50px rgba(16, 26, 61, 0.14));
}
.tl-hero .float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  animation: floaty 4.5s ease-in-out infinite;
}
.tl-hero .float-card .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.tl-hero .float-card .t {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.tl-hero .float-card .s {
  font-size: 11px;
  color: var(--slate-soft);
}
.tl-hero .fc-1 {
  top: 8%;
  left: -4%;
  animation-delay: 0.2s;
}
.tl-hero .fc-2 {
  bottom: 10%;
  right: -3%;
  animation-delay: 1.4s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@media (max-width: 991px) {
  .tl-hero .tl-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .tl-hero .visual {
    order: -1;
    max-width: 440px;
    margin: 0 auto;
  }
  .tl-hero .float-card {
    display: none;
  }
}
.tl-sec {
  padding: 88px 0;
}
.tl-center {
  text-align: center;
}

.tl-creds {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.tl-creds .tl-container {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
}
.tl-creds .lead-lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate-soft);
  white-space: nowrap;
  flex-shrink: 0;
}
.tl-creds .marq {
  flex: 1;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.tl-creds .track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: credScroll 32s linear infinite;
}
.tl-creds:hover .track {
  animation-play-state: paused;
}
.tl-creds .chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.tl-creds .chip i {
  font-size: 18px;
  color: var(--gold-deep);
}
@keyframes credScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 680px) {
  .tl-creds .lead-lbl {
    display: none;
  }
}

.tl-cats {
  background: linear-gradient(180deg, #0c1230 0%, #101a3d 60%, #0b1024 100%);
  position: relative;
  overflow: hidden;
}
.tl-cats::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 12%;
  width: 600px;
  height: 460px;
  background: radial-gradient(
    circle,
    rgba(41, 57, 141, 0.45) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(70px);
  pointer-events: none;
}
.tl-cats::after {
  content: "";
  position: absolute;
  bottom: -12%;
  right: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.18) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(80px);
  pointer-events: none;
}
.tl-cats .tl-container {
  position: relative;
  z-index: 2;
}
.tl-cats .tl-eyebrow {
  color: var(--gold-soft);
}
.tl-cats .tl-section-title {
  color: #fff;
}
.tl-cats .tl-section-sub {
  color: #aeb7d6;
}
.tl-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.tl-cat {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    border-color 0.4s,
    box-shadow 0.5s;
}
.tl-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s;
  background: radial-gradient(
    120% 80% at 50% 0%,
    var(--g, rgba(41, 57, 141, 0.3)) 0%,
    transparent 60%
  );
}
.tl-cat:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.tl-cat:hover::after {
  opacity: 1;
}
.tl-cat .ic {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.tl-cat h3 {
  color: #fff;
  font-size: 1.22rem;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 600;
}
.tl-cat p {
  color: #a9b2d3;
  font-size: 13.6px;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.tl-cat .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 13.5px;
  position: relative;
  z-index: 1;
}
.tl-cat:hover .go i {
  transform: translateX(5px);
}
.tl-cat .go i {
  transition: transform 0.3s;
}
@media (max-width: 991px) {
  .tl-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .tl-cat-grid {
    grid-template-columns: 1fr;
  }
}

.tl-why .tl-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.tl-why .feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.tl-feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s,
    border-color 0.4s;
}
.tl-feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #d4ddf2;
}
.tl-feat .ic {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: var(--paper-2);
  color: var(--brand);
}
.tl-feat:hover .ic {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #241b00;
}
.tl-feat h4 {
  font-size: 1.05rem;
  margin-bottom: 7px;
}
.tl-feat p {
  font-size: 13.4px;
  margin: 0;
  color: var(--slate);
}
.tl-why .lead-copy p {
  color: var(--slate);
  font-size: 1.02rem;
  margin: 18px 0 26px;
}
.tl-why .mini-stats {
  display: flex;
  gap: 30px;
  margin-top: 6px;
}
.tl-why .mini-stats b {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--brand);
  display: block;
  line-height: 1;
}
.tl-why .mini-stats span {
  font-size: 12.5px;
  color: var(--slate-soft);
  font-weight: 600;
}
@media (max-width: 991px) {
  .tl-why .tl-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 520px) {
  .tl-why .feat-grid {
    grid-template-columns: 1fr;
  }
}

.tl-steps {
  background: #fff;
  position: relative;
}
.tl-steps .tl-eyebrow {
  justify-content: center;
}
.tl-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 54px;
  position: relative;
}
.tl-step-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 10px,
    transparent 10px 20px
  );
  z-index: 0;
}
.tl-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
}
.tl-step .num {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.9rem;
  color: #fff;
  position: relative;
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
  box-shadow: 0 16px 34px rgba(16, 26, 61, 0.22);
  transition: transform 0.45s var(--ease);
}
.tl-step:hover .num {
  transform: translateY(-6px) rotate(-4deg);
}
.tl-step .num::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 27px;
  border: 1.5px dashed rgba(201, 162, 39, 0.5);
}
.tl-step .ic {
  position: absolute;
  top: -8px;
  right: calc(50% - 52px);
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #241b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.tl-step h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.tl-step p {
  font-size: 13.6px;
  color: var(--slate);
  margin: 0;
}
@media (max-width: 880px) {
  .tl-step-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tl-step-grid::before {
    display: none;
  }
}
@media (max-width: 460px) {
  .tl-step-grid {
    grid-template-columns: 1fr;
  }
}

.tl-trustband {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tl-trustband .tl-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.tl-trustband h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.tl-trustband p {
  color: var(--slate);
  font-size: 1.02rem;
  margin-bottom: 26px;
}
.tl-trustband .checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tl-trustband .checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.tl-trustband .checks i {
  color: #1eaf6b;
  font-size: 17px;
}
.tl-cta-card {
  background: linear-gradient(150deg, var(--navy-2), var(--navy) 70%);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.tl-cta-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.4), transparent 70%);
}
.tl-cta-card h3 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
}
.tl-cta-card p {
  color: #c4cbe6;
  font-size: 14px;
  margin-bottom: 22px;
  position: relative;
}
.tl-cta-card .cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.tl-cta-card .tl-btn {
  justify-content: center;
}
@media (max-width: 991px) {
  .tl-trustband .tl-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media (max-width: 480px) {
  .tl-trustband .checks {
    grid-template-columns: 1fr;
  }
}

.tl-grid-sec {
  background: #fff;
}
.tl-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 38px;
}
.tl-tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-family: var(--sans);
}
.tl-tab:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.tl-tab.active {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(16, 26, 61, 0.22);
}
.tl-panel {
  display: none;
}
.tl-panel.active {
  display: block;
  animation: fadeUp 0.5s var(--ease);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.tl-srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tl-srv {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 16px 16px;
  transition: all 0.35s var(--ease);
}
.tl-srv .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--paper-2);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: 0.35s;
}
.tl-srv .nm {
  font-size: 13.4px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.tl-srv:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tl-srv:hover .ic {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #241b00;
}
@media (max-width: 991px) {
  .tl-srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .tl-srv-grid {
    grid-template-columns: 1fr;
  }
}

.tl-stats {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #0c1330 55%,
    var(--ink) 100%
  );
  position: relative;
  overflow: hidden;
}
.tl-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}
.tl-stats .tl-container {
  position: relative;
  z-index: 2;
}
.tl-stats .tl-eyebrow {
  color: var(--gold-soft);
  justify-content: center;
}
.tl-stats h2 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  text-align: center;
}
.tl-stats .sub {
  color: #aeb7d6;
  text-align: center;
  max-width: 620px;
  margin: 14px auto 52px;
  font-size: 1rem;
}
.tl-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tl-stat {
  text-align: center;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 34px 18px;
  transition:
    transform 0.45s var(--ease),
    border-color 0.4s;
}
.tl-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.5);
}
.tl-stat .ic {
  font-size: 26px;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.tl-stat .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}
.tl-stat .lbl {
  color: #b6bedb;
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 10px;
}
.tl-stats .closer {
  text-align: center;
  margin-top: 48px;
}
.tl-stats .closer h3 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.tl-stats .closer p {
  color: #aeb7d6;
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .tl-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tl-tst {
  background: var(--paper);
}
.tl-tst .tl-eyebrow {
  justify-content: center;
}
.tl-tst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.tl-tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s;
}
.tl-tcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.tl-tcard .quote {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 42px;
  color: var(--paper-2);
  font-family: var(--serif);
  line-height: 1;
}
.tl-tcard .stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
}
.tl-tcard .tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.tl-tcard p {
  font-size: 14.2px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 20px;
  position: relative;
}
.tl-tcard .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tl-tcard .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
}
.tl-tcard .who .n {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.tl-tcard .who .r {
  font-size: 11.5px;
  color: var(--slate-soft);
}
@media (max-width: 991px) {
  .tl-tst-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .tl-tst-grid {
    grid-template-columns: 1fr;
  }
}

.tl-faq .tl-container {
  max-width: 880px;
}
.tl-faq .tl-eyebrow {
  justify-content: center;
}
.tl-acc {
  margin-top: 42px;
}
.tl-q {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
.tl-q.open {
  box-shadow: var(--shadow-sm);
  border-color: #d4ddf2;
}
.tl-q-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
}
.tl-q-head h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  font-family: var(--sans);
}
.tl-q-head .pm {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--paper-2);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.35s var(--ease);
}
.tl-q.open .pm {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #241b00;
  transform: rotate(180deg);
}
.tl-q-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.tl-q-body p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 14px;
  color: var(--slate);
}

.tl-contact-wrap {
  background: linear-gradient(180deg, #fafbfc 0%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}
.tl-contact-hero {
  padding: 92px 0;
  position: relative;
}
.tl-contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tl-contact-hero::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.tl-contact-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tl-contact-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.6px;
}
.tl-contact-text .tl-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}
.tl-contact-text .subtitle {
  font-size: 1.2rem;
  color: var(--slate);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 400;
}

.tl-contact-image {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 22px;
  box-sizing: border-box;
}
.tl-contact-image::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 92%;
  height: 92%;
  background: #eef3fa;
  border-radius: 28px;
  z-index: 0;
}
.tl-contact-image::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 70%;
  height: 65%;
  background: rgba(221, 230, 243, 0.55);
  border-radius: 28px;
  z-index: 0;
}
.tl-contact-image-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 26px;

  box-shadow:
    0 30px 70px rgba(25, 48, 82, 0.16),
    0 10px 25px rgba(25, 48, 82, 0.08);

  overflow: hidden;

  transform: translateY(-3px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.tl-contact-image-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  border-radius: 20px;
  object-fit: cover;
  filter: none;
  animation: none;
}
.tl-contact-image:hover .tl-contact-image-card {
  transform: translateY(-9px);
  box-shadow:
    0 38px 80px rgba(25, 48, 82, 0.2),
    0 15px 30px rgba(25, 48, 82, 0.1);
}

@media (min-width: 993px) {
  .tl-contact-image {
    margin-right: -10px;
  }
}

@media (max-width: 992px) {
  .tl-contact-image {
    padding: 18px;
  }

  .tl-contact-image-card {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tl-contact-image {
    padding: 12px;
    margin-top: 5px;
  }

  .tl-contact-image::before {
    border-radius: 22px;
  }

  .tl-contact-image::after {
    border-radius: 22px;
    left: 2px;
    bottom: 2px;
  }

  .tl-contact-image-card {
    border-radius: 20px;
  }

  .tl-contact-image-card img {
    border-radius: 16px;
  }
}
@media (max-width: 992px) {
  .tl-contact-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .tl-contact-hero {
    padding: 70px 0;
  }
}
.tl-contact-info-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  z-index: 1;
}
.tl-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.tl-info-card {
  background: linear-gradient(
    135deg,
    var(--paper) 0%,
    rgba(238, 242, 251, 0.5) 100%
  );
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.tl-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-soft) 0%,
    var(--gold) 50%,
    var(--gold-deep) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.tl-info-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.12),
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.tl-info-card:hover {
  transform: translateY(-14px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 30px 80px rgba(16, 26, 61, 0.12);
}
.tl-info-card:hover::before,
.tl-info-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
.tl-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.15),
    rgba(41, 57, 141, 0.08)
  );
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 20px;
  font-size: 32px;
  color: var(--brand);
  margin: 0 auto 24px;
  transition: all 0.35s var(--ease);
}
.tl-info-card:hover .tl-info-icon {
  background: linear-gradient(135deg, var(--gold), rgba(201, 162, 39, 0.8));
  color: #fff;
  border-color: var(--gold);
  transform: rotate(8px) scale(1.15);
}
.tl-info-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  font-family: var(--sans);
  letter-spacing: -0.3px;
}
.tl-info-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 20px;
}
.tl-info-card p:last-child {
  margin-bottom: 0;
}
.tl-info-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #241b00;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  margin-top: 16px;
}
.tl-info-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.35);
}
.tl-locations-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 162, 39, 0.03) 100%
  );
  position: relative;
  overflow: hidden;
}
.tl-locations-section::before {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(41, 57, 141, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.tl-locations-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
.tl-locations-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 700;
}
.tl-locations-header p {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.tl-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}
.tl-location-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.45s var(--ease);
  box-shadow: 0 10px 30px rgba(16, 26, 61, 0.06);
}
.tl-location-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 40px 100px rgba(16, 26, 61, 0.15);
  border-color: rgba(201, 162, 39, 0.4);
}
.tl-location-map {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
}
.tl-location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.45s var(--ease);
}
.tl-location-card:hover .tl-location-map iframe {
  transform: scale(1.08);
}
.tl-location-details {
  padding: 40px;
}
.tl-location-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 12px;
}
.tl-location-name::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.tl-location-address {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 28px;
}
.tl-location-address strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}
.tl-location-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.tl-location-call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16, 26, 61, 0.25);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #241b00;
}
.tl-location-card {
  animation: cardSlideUp 0.8s var(--ease) both;
}
.tl-location-card:nth-child(1) {
  animation-delay: 0.1s;
}
.tl-location-card:nth-child(2) {
  animation-delay: 0.2s;
}
.tl-location-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .tl-locations-grid {
    grid-template-columns: 1fr;
  }
  .tl-info-grid {
    grid-template-columns: 1fr;
  }
}
.tl-about-hero {
  padding: 68px 0 80px;
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative;
  overflow: hidden;
}
.tl-about-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.tl-about-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(41, 57, 141, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.tl-about-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tl-about-text h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 700;
}
.tl-about-text > .subtitle {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 36px;
  font-weight: 500;
}
.tl-about-image {
  position: relative;
  z-index: 2;
}
.tl-about-image img {
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(16, 26, 61, 0.12));
}
@media (max-width: 768px) {
  .tl-about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tl-about-hero {
    padding: 50px 0 60px;
  }
}

.tl-about-image {
  position: relative;
  width: 100%;
  padding: 22px;
  box-sizing: border-box;
}
.tl-about-image::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 92%;
  height: 92%;
  background: #eef3fa;
  border-radius: 28px;
  z-index: 0;
}
.tl-about-image::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 70%;
  height: 65%;
  background: rgba(221, 230, 243, 0.55);
  border-radius: 28px;
  z-index: 0;
}
.tl-about-image-card {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 26px;

  box-shadow:
    0 30px 70px rgba(25, 48, 82, 0.16),
    0 10px 25px rgba(25, 48, 82, 0.08);

  overflow: hidden;

  transform: translateY(-3px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.tl-about-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.tl-about-image:hover .tl-about-image-card {
  transform: translateY(-9px);
  box-shadow:
    0 38px 80px rgba(25, 48, 82, 0.2),
    0 15px 30px rgba(25, 48, 82, 0.1);
}

@media (min-width: 992px) {
  .tl-about-image {
    margin-right: -10px;
  }
}

@media (max-width: 991px) {
  .tl-about-image {
    padding: 18px;
  }
}

@media (max-width: 767px) {
  .tl-about-image {
    padding: 12px;
    margin-top: 10px;
  }

  .tl-about-image::before {
    border-radius: 22px;
  }

  .tl-about-image::after {
    border-radius: 22px;
    left: 2px;
    bottom: 2px;
  }

  .tl-about-image-card {
    padding: 5px;
    border-radius: 20px;
  }

  .tl-about-image-card img {
    border-radius: 16px;
  }
}
.tl-about-section {
  padding: 72px 0;
  background: var(--white);
}
.tl-content-block {
  max-width: 900px;
  margin: 0 auto;
}
.tl-content-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 28px;
  text-align: justify;
}
.tl-content-block p:last-child {
  margin-bottom: 0;
}
.tl-highlight-box {
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.08) 0%,
    rgba(41, 57, 141, 0.05) 100%
  );
  border-left: 4px solid var(--gold);
  padding: 32px 36px;
  border-radius: var(--radius);
  margin: 48px 0;
  position: relative;
}
.tl-highlight-box::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  height: 32px;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 2px;
}
.tl-highlight-box p {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  font-size: 1.02rem;
}
.tl-luxury-why {
  background: #fafbfc;
  position: relative;
  overflow: hidden;
}
.tl-luxury-hero {
  padding: 92px 0;
  position: relative;
}
.tl-luxury-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tl-luxury-hero::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.tl-luxury-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tl-luxury-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.6px;
}
.tl-luxury-text .tl-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}
.tl-luxury-text .subtitle {
  font-size: 1.2rem;
  color: var(--slate);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 400;
}
.tl-luxury-text p {
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 24px;
}

.tl-luxury-image {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 22px;
  box-sizing: border-box;
}
.tl-luxury-image::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 92%;
  height: 92%;
  background: #eef3fa;
  border-radius: 28px;
  z-index: 0;
}
.tl-luxury-image::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 70%;
  height: 65%;
  background: rgba(221, 230, 243, 0.55);
  border-radius: 28px;
  z-index: 0;
}
.tl-luxury-image-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;

  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 26px;

  box-shadow:
    0 30px 70px rgba(25, 48, 82, 0.16),
    0 10px 25px rgba(25, 48, 82, 0.08);

  overflow: hidden;

  transform: translateY(-3px);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.tl-luxury-image-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;

  border-radius: 20px;
  object-fit: cover;

  filter: none;
  animation: none;
}
.tl-luxury-image:hover .tl-luxury-image-card {
  transform: translateY(-9px);

  box-shadow:
    0 38px 80px rgba(25, 48, 82, 0.2),
    0 15px 30px rgba(25, 48, 82, 0.1);
}

@media (min-width: 993px) {
  .tl-luxury-image {
    margin-right: -10px;
  }
}

@media (max-width: 992px) {
  .tl-luxury-image {
    padding: 18px;
  }

  .tl-luxury-image-card {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tl-luxury-image {
    padding: 12px;
    margin-top: 5px;
  }

  .tl-luxury-image::before {
    border-radius: 22px;
  }

  .tl-luxury-image::after {
    border-radius: 22px;
    left: 2px;
    bottom: 2px;
  }

  .tl-luxury-image-card {
    padding: 5px;
    border-radius: 20px;
  }

  .tl-luxury-image-card img {
    border-radius: 16px;
  }
}
@media (max-width: 992px) {
  .tl-luxury-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .tl-luxury-hero {
    padding: 70px 0;
  }
}
.tl-luxury-features {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 162, 39, 0.04) 100%
  );
  position: relative;
}
.tl-luxury-features::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(41, 57, 141, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.tl-features-container {
  position: relative;
  z-index: 1;
}
.tl-features-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.tl-features-header p {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.8;
}
.tl-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.tl-premium-card {
  background: linear-gradient(135deg, #fff 0%, rgba(247, 250, 254, 0.8) 100%);
  border: 1.5px solid rgba(201, 162, 39, 0.15);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease);
  backdrop-filter: blur(10px);
}
.tl-premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.tl-premium-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  z-index: 0;
}
.tl-premium-card:hover {
  transform: translateY(-12px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow:
    0 30px 80px rgba(16, 26, 61, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}
.tl-premium-card:hover::before,
.tl-premium-card:hover::after {
  opacity: 1;
}
.tl-premium-card-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.tl-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(201, 162, 39, 0.15),
    rgba(41, 57, 141, 0.08)
  );
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 18px;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.35s var(--ease);
}
.tl-premium-card:hover .tl-card-icon {
  background: linear-gradient(135deg, var(--gold), rgba(201, 162, 39, 0.8));
  color: #fff;
  border-color: var(--gold);
  transform: rotate(8px) scale(1.1);
}
.tl-card-number {
  display: inline-block;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.2);
  margin-bottom: -8px;
  line-height: 1;
}
.tl-premium-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  font-family: var(--sans);
  letter-spacing: -0.3px;
}
.tl-premium-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--slate-soft);
  margin: 0;
}
.tl-luxury-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.tl-luxury-stats::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.tl-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  text-align: center;
}
.tl-stat-item {
  color: #fff;
}
.tl-stat-number {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}
.tl-stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
}
.tl-luxury-cta {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.tl-luxury-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(41, 57, 141, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}
.tl-cta-premium {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.tl-cta-premium h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 700;
}
.tl-cta-premium p {
  font-size: 1.08rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 48px;
}
.tl-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .tl-cta-actions {
    flex-direction: column;
  }
  .tl-cta-actions .tl-btn {
    width: 100%;
    justify-content: center;
  }
  .tl-premium-grid {
    grid-template-columns: 1fr;
  }
}
.tl-premium-card {
  animation: cardSlideUp 0.8s var(--ease) both;
}
.tl-premium-card:nth-child(1) {
  animation-delay: 0.1s;
}
.tl-premium-card:nth-child(2) {
  animation-delay: 0.2s;
}
.tl-premium-card:nth-child(3) {
  animation-delay: 0.3s;
}
.tl-premium-card:nth-child(4) {
  animation-delay: 0.15s;
}
.tl-premium-card:nth-child(5) {
  animation-delay: 0.25s;
}
.tl-premium-card:nth-child(6) {
  animation-delay: 0.35s;
}
.tl-premium-card:nth-child(7) {
  animation-delay: 0.2s;
}

.premium-service-card:hover {
  border-color: #dcdcdc !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.premium-service-card:hover img {
  transform: scale(1.03);
}

.premium-pagination {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.premium-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.premium-pagination li {
  margin: 0;
  padding: 0;
}

.premium-pagination a,
.premium-pagination li > span {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #eeeeee;
  border-radius: 8px;

  background: #ffffff;
  color: #222222;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.premium-pagination a:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;

  transform: translateY(-2px);

  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

.premium-pagination .active span {
  background: #111111;
  color: #ffffff;
  border-color: #111111;

  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

.premium-pagination .disabled span {
  color: #c5c5c5;
  background: #fafafa;
  border-color: #f1f1f1;

  cursor: not-allowed;
}

.premium-pagination .dots span {
  border: none;
  background: transparent;
  color: #999999;

  width: 25px;
}

@media (max-width: 767px) {
  section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .premium-pagination {
    margin-top: 35px;
  }

  .premium-pagination ul {
    gap: 4px;
  }

  .premium-pagination a,
  .premium-pagination li > span {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 7px;
  }
}

.playNow {
  font-size: 14px;
  color: #333;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.75);
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 1000px;
}

.taxless-breadcrumb-nav {
  padding: 18px 0 4px;
}
.taxless-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(41, 57, 141, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(16, 26, 61, 0.06);
  backdrop-filter: blur(10px);
}
.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none !important;
  font-family: var(--sans, "Plus Jakarta Sans", sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: #65718a;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.breadcrumb-link:hover {
  color: var(--brand, #29398d);
}
.breadcrumb-home {
  padding: 5px 9px 5px 5px;
  border-radius: 999px;
}
.breadcrumb-home:hover {
  background: #f5f7fc;
}
.breadcrumb-home-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1f4fb;
  border: 1px solid #e4e9f4;
}
.breadcrumb-home-icon img {
  display: block;
  object-fit: contain;
}
.breadcrumb-chevron {
  color: #c0c7d5;
  font-size: 19px;
  line-height: 1;
}
.breadcrumb-current {
  color: var(--brand, #29398d);
  padding: 6px 9px;
  background: #f5f7fc;
  border-radius: 999px;
}
@media (max-width: 575px) {
  .taxless-breadcrumb-nav {
    padding: 12px 0 0;
  }
  .taxless-breadcrumb {
    max-width: 100%;
    padding-right: 10px;
  }
  .breadcrumb-current {
    max-width: 55vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.service-header {
  position: relative;
  overflow: hidden;
  padding: 54px 20px 44px;
  text-align: center;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(201, 162, 39, 0.08),
      transparent 30%
    ),
    radial-gradient(circle at 84% 10%, rgba(41, 57, 141, 0.1), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
  border-bottom: 1px solid var(--line, #e4e9f4);
}
.service-header::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -220px;
  top: -240px;
  border-radius: 50%;
  background: rgba(41, 57, 141, 0.055);
  filter: blur(10px);
  pointer-events: none;
}
.service-header-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}
.service-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-deep, #a9831a);
  font-family: var(--sans, "Plus Jakarta Sans", sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
.service-title {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink, #0b1024);
  font-family: var(--serif, "Lora", Georgia, serif);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.7px;
}
.service-title-rule {
  width: 64px;
  height: 3px;
  margin: 20px auto 24px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold, #c9a227),
    var(--gold-deep, #a9831a),
    transparent
  );
  position: relative;
}
.service-title-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold, #c9a227);
  box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.13);
}
.service-hero-media {
  width: min(230px, 68vw);
  aspect-ratio: 1/1;
  margin: 22px auto 0;
  padding: 7px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 18px 42px rgba(16, 26, 61, 0.11);
  position: relative;
}
.service-hero-media::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 27px;
  border: 1px solid rgba(41, 57, 141, 0.07);
  pointer-events: none;
}
.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}
.service-enquiry-card .form-group {
  position: relative;
  margin-bottom: 18px;
}
.service-enquiry-card .form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9dfeb;
  border-radius: 12px;
  background: #fff;
  color: var(--ink, #0b1024);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.service-enquiry-card .form-control:hover {
  border-color: #b9c3d5;
}
.service-enquiry-card .form-control:focus {
  border-color: var(--brand, #29398d);
  box-shadow: 0 0 0 4px rgba(41, 57, 141, 0.1);
  background: #fff;
}
.service-enquiry-card .form-control.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08) !important;
}
.service-enquiry-card .form-control.is-valid {
  border-color: #198754 !important;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.07) !important;
}
.service-enquiry-card .invalid-feedback {
  display: none;
  margin-top: 6px;
  color: #c62828;
  font-size: 11.5px;
  line-height: 1.4;
}
.service-enquiry-card .invalid-feedback.show {
  display: block;
}
.service-enquiry-card .enquiry-submit-btn {
  position: relative;
  min-height: 52px;
  cursor: pointer;
}
.service-enquiry-card .enquiry-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.service-enquiry-card .alert-success {
  margin-bottom: 15px;
  border-radius: 11px;
}
.service-side-visual {
  position: relative;
  margin-top: 30px;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(201, 162, 39, 0.16),
      transparent 34%
    ),
    linear-gradient(135deg, #f6f8ff, #fffdf6);
  border: 1px solid rgba(41, 57, 141, 0.08);
}
.service-side-visual::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  top: -60px;
  border-radius: 50%;
  background: rgba(41, 57, 141, 0.06);
}
.service-side-visual img {
  position: relative;
  z-index: 2;
  flex: 0 0 82px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.18);
  box-shadow: 0 8px 18px rgba(16, 26, 61, 0.08);
}
.service-side-visual span {
  position: relative;
  z-index: 2;
  max-width: 135px;
  color: var(--ink, #0b1024);
  font-family: var(--serif, "Lora", Georgia, serif);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}
.service-page-wrap {
  position: relative;
  z-index: 3;
}
.service-page-wrap > .tl-container {
  padding-bottom: 4px;
}
.service-detail-shell {
  padding: 28px 0 10px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}
.service-description-column {
  min-width: 0;
}
.service-form-column {
  min-width: 0;
}
.service-form-sticky {
  position: sticky;
  top: 94px;
}
.service-content-card {
  background: #fff;
  border: 1px solid var(--line, #e4e9f4);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 14px 40px rgba(16, 26, 61, 0.07);
}
.service-content-card .tax-content {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--slate, #51607a);
  font-family: var(--sans, "Plus Jakarta Sans", sans-serif);
  line-height: 1.8;
}
.service-content-card .tax-content h1,
.service-content-card .tax-content h2,
.service-content-card .tax-content h3 {
  color: var(--ink, #0b1024);
  font-family: var(--serif, "Lora", Georgia, serif);
}
.service-content-card .tax-content h2 {
  font-size: 1.55rem;
  margin-top: 30px;
}
.service-content-card .tax-content h3 {
  font-size: 1.18rem;
}
.service-content-card .tax-content h2::after,
.service-content-card .tax-content h3::after {
  background: linear-gradient(90deg, var(--gold, #c9a227), transparent);
}
.service-content-card .custom_intro {
  margin-top: 0 !important;
}
.service-content-card .custom_intro h2 {
  margin-top: 0;
}
.service-content-card .description {
  margin-top: 26px !important;
}
.service-content-card .description p,
.service-content-card .custom_intro p {
  color: var(--slate, #51607a);
}
.service-content-card .highlight-box {
  background: linear-gradient(135deg, #f7f9ff, #fffdf5);
  border-left: 4px solid var(--gold, #c9a227);
}
.service-content-card .card-box {
  border: 1px solid var(--line, #e4e9f4);
  box-shadow: 0 10px 28px rgba(16, 26, 61, 0.06);
}
.service-content-card .cta-btn {
  background: linear-gradient(
    135deg,
    var(--gold, #c9a227),
    var(--gold-deep, #a9831a)
  );
  color: #241b00;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.22);
}
.service-enquiry-card {
  background: linear-gradient(145deg, #fff 0%, #f8faff 100%);
  border: 1px solid var(--line, #e4e9f4);
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(16, 26, 61, 0.12);
  position: relative;
  overflow: hidden;
}
.service-enquiry-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.1);
}
.service-enquiry-card .CallusforEnquiry {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.service-enquiry-card .CallusforEnquiry:hover,
.service-enquiry-card .CallusforEnquiry:focus-within {
  box-shadow: none;
  border-color: transparent;
}
.service-enquiry-card .modal-header {
  position: relative;
  display: block;
  margin: 0 0 22px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line, #e4e9f4);
}
.service-enquiry-card .modal-header::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-bottom: 13px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--gold, #c9a227),
    var(--gold-deep, #a9831a)
  );
}
.service-enquiry-card .modal-header h5 {
  color: var(--ink, #0b1024);
  font-family: var(--serif, "Lora", Georgia, serif);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.service-enquiry-card .form-group {
  margin-bottom: 17px;
}
.service-enquiry-card .form-group label {
  color: #3e4b63;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 7px;
}
.service-enquiry-card .form-control {
  min-height: 49px;
  border: 1px solid #dce2ed;
  border-radius: 11px;
  background: #fff;
  color: var(--ink, #0b1024);
  padding: 12px 14px;
  font-family: var(--sans, "Plus Jakarta Sans", sans-serif);
  box-shadow: 0 3px 10px rgba(16, 26, 61, 0.025);
}
.service-enquiry-card .form-control:hover {
  border-color: #bdc7da;
}
.service-enquiry-card .form-control:focus {
  border-color: var(--brand, #29398d);
  box-shadow: 0 0 0 4px rgba(41, 57, 141, 0.1);
}
.service-enquiry-card .invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 11px;
  margin-top: 6px;
}
.service-enquiry-card .enquiry-submit-btn {
  transition: all 0.2s ease;
}
.service-enquiry-card .modal-footer {
  padding: 4px 0 0;
  border: 0;
}
.service-enquiry-card .modal-footer .btn-primary {
  width: 100%;
  min-height: 51px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(
    135deg,
    var(--gold, #c9a227),
    var(--gold-deep, #a9831a)
  );
  color: #241b00;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(201, 162, 39, 0.25);
}
.service-enquiry-card .modal-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 32px rgba(201, 162, 39, 0.32);
}
.service-trust-note {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--line, #e4e9f4);
  color: #7a8699;
  font-size: 11.5px;
  line-height: 1.55;
}
.service-trust-note i {
  color: var(--gold-deep, #a9831a);
  margin-top: 2px;
}
.other-services-card {
  margin-top: 22px;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line, #e4e9f4);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16, 26, 61, 0.055);
}
.other-services-card h4 {
  color: var(--ink, #0b1024);
  font-family: var(--serif, "Lora", Georgia, serif);
  font-size: 1.15rem;
}
.other-services-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}
.other-services-card li {
  margin: 7px 0;
}
.other-services-card a {
  color: var(--slate, #51607a);
  font-size: 13px;
  transition: color 0.2s;
}
.other-services-card a:hover {
  color: var(--brand, #29398d);
}
@media (max-width: 991px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-form-column {
    order: -1;
  }
  .service-form-sticky {
    position: static;
  }
  .service-content-card {
    padding: 27px;
  }
}
@media (max-width: 575px) {
  .service-header {
    padding: 40px 16px 34px;
  }
  .service-title {
    font-size: 2rem;
  }
  .service-hero-media {
    width: min(250px, 82vw);
  }
  .service-content-card {
    padding: 21px;
    border-radius: 18px;
  }
  .service-enquiry-card {
    padding: 20px;
    border-radius: 18px;
  }
}

.tl-simple-sitemap {
  background: #fafbfc;
  padding: 0;
}
.tl-simple-hero {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.tl-simple-hero-content {
  text-align: center;
}
.tl-simple-hero h1 {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.tl-simple-hero .subtitle {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 0;
}
.tl-simple-content {
  padding: 60px 0;
  background: #fff;
}
.tl-sitemap-list {
  max-width: 900px;
  margin: 0 auto;
}
.tl-sitemap-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tl-sitemap-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.tl-sitemap-list li:last-child {
  border-bottom: none;
}
.tl-sitemap-list a {
  font-size: 1rem;
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}
.tl-sitemap-list a:hover {
  text-decoration: underline;
  color: var(--gold);
}

@media (max-width: 768px) {
  .tl-simple-hero h1 {
    font-size: 2rem;
  }
  .tl-sitemap-list {
    padding: 0 20px;
  }
}
.tl-sitemap-cta {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.tl-sitemap-cta::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(41, 57, 141, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.tl-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.tl-cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 20px;
  font-weight: 700;
}
.tl-cta-content p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 40px;
}
.tl-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #241b00;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.35s var(--ease);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.28);
}
.tl-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(201, 162, 39, 0.4);
}
.tl-sitemap-link-item {
  animation: linkSlideIn 0.6s var(--ease) both;
}

@keyframes linkSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tl-sitemap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tl-stats-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .tl-sitemap-section {
    padding: 60px 0;
  }
}