* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================================================
   TECHNO PAVERS — RESPONSIVE TOPBAR
===================================================== */

.techno-topbar {
  position: relative;
  z-index: 1050;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%,
      rgba(220, 158, 123, 0.22),
      transparent 28%),
    linear-gradient(110deg, #090909 0%, #181310 52%, #090909 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.techno-topbar::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 35%;
  width: 260px;
  height: 160px;
  border-radius: 50%;
  background: rgba(207, 157, 129, 0.12);
  filter: blur(45px);
  pointer-events: none;
}

.techno-topbar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      #d09e82,
      #f1bd8e);
}

.techno-topbar .container-xxl {
  position: relative;
  z-index: 2;
}

.techno-topbar__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.techno-topbar__group {
  display: flex;
  align-items: center;
  gap: 0;
}

.techno-topbar__group--left {
  flex: 1;
  min-width: 0;
}

.techno-topbar__group--right {
  flex-shrink: 0;
}

/* Common information item */
.techno-topbar__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 10px 22px 10px 0;
  margin-right: 22px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.techno-topbar__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%);
}

.techno-topbar__item:hover {
  color: #fff;
  transform: translateY(-2px);
}

.techno-topbar__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(208, 158, 130, 0.38);
  border-radius: 50%;
  background: rgba(208, 158, 130, 0.1);
  color: #e7b391;
  font-size: 15px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.techno-topbar__item:hover .techno-topbar__icon {
  color: #111;
  background: #e7b391;
  border-color: #e7b391;
  transform: rotate(-7deg) scale(1.06);
  box-shadow: 0 6px 18px rgba(231, 179, 145, 0.25);
}

.techno-topbar__content,
.techno-topbar__certificate>span:last-child,
.techno-topbar__call-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.techno-topbar small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.techno-topbar strong {
  color: inherit;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

/* ISO certificate */
.techno-topbar__certificate {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  margin-right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.techno-topbar__certificate:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 179, 145, 0.42);
  background: rgba(231, 179, 145, 0.09);
}

.techno-topbar__certificate-icon {
  color: #e7b391;
  font-size: 21px;
  line-height: 1;
}

.techno-topbar__certificate strong {
  color: #fff;
}

/* Call button */
.techno-topbar__call {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 206px;
  padding: 10px 13px;
  overflow: hidden;
  border: 1px solid rgba(231, 179, 145, 0.46);
  border-radius: 12px;
  background: linear-gradient(135deg,
      rgba(208, 158, 130, 0.24),
      rgba(208, 158, 130, 0.08));
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.techno-topbar__call::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 90%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.techno-topbar__call:hover {
  color: #fff;
  border-color: #e7b391;
  transform: translateY(-2px);
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.26);
}

.techno-topbar__call:hover::before {
  left: 150%;
}

.techno-topbar__call-icon {
  position: relative;
  z-index: 1;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #e7b391;
  color: #111;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.techno-topbar__call:hover .techno-topbar__call-icon {
  transform: rotate(-10deg) scale(1.05);
}

.techno-topbar__call-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.techno-topbar__arrow {
  position: relative;
  z-index: 1;
  color: #e7b391;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.techno-topbar__call:hover .techno-topbar__arrow {
  transform: translate(2px, -2px);
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1199.98px) {
  .techno-topbar__inner {
    gap: 14px;
  }

  .techno-topbar__item {
    padding-right: 14px;
    margin-right: 14px;
  }

  .techno-topbar__location strong {
    display: block;
    max-width: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .techno-topbar__certificate {
    display: none;
  }
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767.98px) {
  .techno-topbar {
    padding: 8px 0;
  }

  .techno-topbar::after {
    width: 100%;
  }

  .techno-topbar__inner {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .techno-topbar__group {
    width: 100%;
  }

  .techno-topbar__group--left {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 7px;
  }

  .techno-topbar__group--right {
    display: block;
  }

  .techno-topbar__item {
    min-height: 48px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
  }

  .techno-topbar__item::after {
    display: none;
  }

  .techno-topbar__location {
    overflow: hidden;
  }

  .techno-topbar__location strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    font-size: 11.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .techno-topbar__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  /* On mobile, show only the email icon to save space */
  .techno-topbar__group--left .techno-topbar__item:not(.techno-topbar__location) {
    justify-content: center;
    padding: 6px;
  }

  .techno-topbar__group--left .techno-topbar__item:not(.techno-topbar__location) .techno-topbar__content {
    display: none;
  }

  .techno-topbar__certificate {
    display: none;
  }

  .techno-topbar__call {
    width: 100%;
    min-width: 0;
    padding: 9px 11px;
  }

  .techno-topbar__call-content {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .techno-topbar__call-content small {
    margin: 0;
  }

  .techno-topbar__call-content strong {
    margin-left: auto;
    font-size: 13px;
  }
}

/* Very small mobile */
@media (max-width: 389.98px) {
  .techno-topbar__location small {
    display: none;
  }

  .techno-topbar__location strong {
    max-width: 215px;
    font-size: 10.5px;
  }

  .techno-topbar__call-content small {
    display: none;
  }

  .techno-topbar__call-content strong {
    margin-left: 0;
  }
}

/* =========================================================
   TECHNO PAVERS — COMPLETE RESPONSIVE HEADER
========================================================= */

:root {
  --tp5-dark: #111315;
  --tp5-copper: #cf9877;
  --tp5-copper-dark: #986247;
  --tp5-copper-light: #efbc99;
  --tp5-cream: #f8f3ef;
  --tp5-light: #f4f4f5;
  --tp5-white: #ffffff;
  --tp5-text: #292c2e;
  --tp5-muted: #74787b;
  --tp5-border: rgba(20, 23, 25, 0.1);
  --tp5-green: #25d366;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
}

section[id] {
  scroll-margin-top: 100px;
}

/* =========================================================
   TOPBAR
========================================================= */

.techno-topbar {
  position: relative;
  z-index: 1010;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%,
      rgba(207, 152, 119, 0.2),
      transparent 30%),
    linear-gradient(110deg, #0b0c0d 0%, #191513 55%, #0b0c0d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.techno-topbar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--tp5-copper),
      var(--tp5-copper-light));
}

.techno-topbar__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.techno-topbar__group {
  display: flex;
  align-items: center;
}

.techno-topbar__group--left {
  min-width: 0;
  flex: 1;
}

.techno-topbar__group--right {
  flex-shrink: 0;
}

.techno-topbar__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-right: 21px;
  margin-right: 21px;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.techno-topbar__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 31px;
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-50%);
}

.techno-topbar__item:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.techno-topbar__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 188, 153, 0.3);
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.1);
  color: var(--tp5-copper-light);
  font-size: 14px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.techno-topbar__item:hover .techno-topbar__icon {
  color: var(--tp5-dark);
  background: var(--tp5-copper-light);
  transform: rotate(-6deg);
}

.techno-topbar__content,
.techno-topbar__call-content,
.techno-topbar__certificate>span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.techno-topbar small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.techno-topbar strong {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.techno-topbar__certificate {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  margin-right: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
}

.techno-topbar__certificate-icon {
  color: var(--tp5-copper-light);
  font-size: 20px;
}

.techno-topbar__call {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  padding: 9px 12px;
  border: 1px solid rgba(239, 188, 153, 0.28);
  border-radius: 11px;
  background: rgba(207, 152, 119, 0.09);
  color: #ffffff;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.techno-topbar__call:hover {
  color: #ffffff;
  border-color: var(--tp5-copper-light);
  background: rgba(207, 152, 119, 0.16);
  transform: translateY(-2px);
}

.techno-topbar__call-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--tp5-copper-light);
  color: var(--tp5-dark);
  font-size: 14px;
}

.techno-topbar__call-content {
  flex: 1;
}

.techno-topbar__arrow {
  color: var(--tp5-copper-light);
  font-size: 11px;
  transition: transform 0.25s ease;
}

.techno-topbar__call:hover .techno-topbar__arrow {
  transform: translate(2px, -2px);
}

/* =========================================================
   STICKY NAVBAR HEADER
========================================================= */

.tp5-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1040;
  width: 100%;
  padding: 10px 0;
  background: rgba(247, 245, 243, 0.97);
  border-bottom: 1px solid rgba(20, 23, 25, 0.06);
  box-shadow: 0 8px 28px rgba(17, 19, 21, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    padding 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.tp5-header.is-scrolled {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.99);
  box-shadow:
    0 13px 38px rgba(17, 19, 21, 0.14),
    0 2px 7px rgba(17, 19, 21, 0.04);
}

/* =========================================================
   NAVBAR PANEL
========================================================= */

.tp5-navbar {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 0 14px 0 20px;
  overflow: visible;
  border: 1px solid var(--tp5-border);
  border-radius: 18px;
  background: var(--tp5-white);
  box-shadow:
    0 12px 34px rgba(17, 19, 21, 0.08),
    0 3px 10px rgba(17, 19, 21, 0.03);
  transition:
    min-height 0.3s ease,
    border-radius 0.3s ease,
    box-shadow 0.3s ease;
}

.tp5-navbar::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 32px;
  width: 82px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: var(--tp5-copper);
}

.tp5-header.is-scrolled .tp5-navbar {
  min-height: 66px;
  border-radius: 15px;
  box-shadow:
    0 13px 36px rgba(17, 19, 21, 0.12),
    0 3px 10px rgba(17, 19, 21, 0.04);
}

/* =========================================================
   LOGO
========================================================= */

.tp5-brand {
  width: 215px;
  flex: 0 0 215px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.tp5-brand img {
  display: block;
  width: 205px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.tp5-brand:hover img {
  transform: translateY(-2px);
  filter: contrast(1.04);
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.tp5-desktop-area {
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.tp5-menu {
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.tp5-menu>li {
  position: relative;
}

.tp5-nav-link {
  position: relative;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;
  color: #383b3d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    min-height 0.3s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.tp5-header.is-scrolled .tp5-nav-link {
  min-height: 66px;
}

.tp5-nav-link::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 12px;
  left: 50%;
  height: 2px;
  border-radius: 10px;
  background: var(--tp5-copper);
  transition:
    right 0.25s ease,
    left 0.25s ease;
}

.tp5-nav-link::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tp5-copper);
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.tp5-nav-link:hover,
.tp5-nav-link:focus,
.tp5-nav-link.active,
.tp5-dropdown.dropdown-open .tp5-product-toggle,
.tp5-dropdown.show .tp5-product-toggle {
  color: var(--tp5-copper-dark);
  transform: translateY(-1px);
}

.tp5-nav-link:hover::before,
.tp5-nav-link:focus::before,
.tp5-nav-link.active::before,
.tp5-dropdown.dropdown-open .tp5-product-toggle::before,
.tp5-dropdown.show .tp5-product-toggle::before {
  right: 14px;
  left: 14px;
}

.tp5-nav-link.active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.tp5-dropdown {
  position: relative;
}

.tp5-product-toggle::after,
.tp5-product-toggle.dropdown-toggle::after {
  display: none !important;
}

.tp5-product-toggle>i {
  font-size: 9px;
  transition: transform 0.2s ease;
}

.tp5-dropdown.dropdown-open .tp5-product-toggle>i,
.tp5-dropdown.show .tp5-product-toggle>i {
  transform: rotate(180deg);
}

/* Invisible bridge prevents popup flickering */
.tp5-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -35px;
  width: calc(100% + 70px);
  height: 18px;
  pointer-events: none;
}

.tp5-dropdown:hover::after,
.tp5-dropdown.dropdown-open::after,
.tp5-dropdown.show::after {
  pointer-events: auto;
}

.tp5-select-dropdown {
  position: absolute !important;
  top: calc(100% + 9px) !important;
  left: 50% !important;
  z-index: 1080;
  width: 340px;
  max-width: calc(100vw - 24px);
  display: block !important;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 25, 0.1);
  border-radius: 18px;
  background: var(--tp5-white);
  box-shadow:
    0 26px 60px rgba(17, 19, 21, 0.17),
    0 6px 18px rgba(17, 19, 21, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform:
    translate3d(-36%, 9px, 0) scale(0.985) !important;
  transform-origin: top center;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease,
    transform 0.15s ease;
}

.tp5-select-dropdown.show,
.tp5-dropdown.dropdown-open .tp5-select-dropdown,
.tp5-dropdown.show .tp5-select-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform:
    translate3d(-36%, 0, 0) scale(1) !important;
}

.tp5-select-dropdown__head {
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 20px;
  border-bottom: 4px solid var(--tp5-copper);
  background: var(--tp5-white);
  color: #858585;
}

.tp5-select-dropdown__head span {
  font-size: 15px;
  font-weight: 600;
}

.tp5-select-dropdown__head i {
  color: #656565;
  font-size: 15px;
}

.tp5-select-dropdown__list {
  padding: 9px;
  background: var(--tp5-white);
}

.tp5-select-dropdown__item {
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 15px;
  margin-bottom: 3px;
  border-radius: 13px;
  background: transparent;
  color: #252525;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    padding-left 0.2s ease;
}

.tp5-select-dropdown__item:last-child {
  margin-bottom: 0;
}

.tp5-select-dropdown__item:hover,
.tp5-select-dropdown__item:focus,
.tp5-select-dropdown__item.active {
  padding-left: 18px;
  background: #f1f1f3;
  color: #181818;
}

.tp5-select-dropdown__item>i {
  color: var(--tp5-copper-dark);
  font-size: 11px;
  opacity: 0;
  transform: translateX(-7px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.tp5-select-dropdown__item:hover>i,
.tp5-select-dropdown__item:focus>i,
.tp5-select-dropdown__item.active>i {
  opacity: 1;
  transform: translateX(0);
}

.tp5-select-dropdown__footer {
  padding: 10px;
  border-top: 1px solid var(--tp5-border);
  background: #fafafa;
}

.tp5-select-dropdown__footer a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  border-radius: 11px;
  background: var(--tp5-dark);
  color: var(--tp5-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.tp5-select-dropdown__footer a:hover {
  color: var(--tp5-white);
  background: var(--tp5-copper-dark);
  transform: translateY(-2px);
}

/* =========================================================
   DESKTOP ACTIONS
========================================================= */

.tp5-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 17px;
  margin-left: 13px;
  border-left: 1px solid var(--tp5-border);
}

.tp5-call {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px;
  color: var(--tp5-text);
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.tp5-call:hover {
  color: var(--tp5-copper-dark);
  transform: translateY(-2px);
}

.tp5-call>i {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tp5-cream);
  color: var(--tp5-copper-dark);
  font-size: 14px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp5-call:hover>i {
  color: var(--tp5-white);
  background: var(--tp5-copper-dark);
  transform: rotate(-7deg);
}

.tp5-call>span {
  display: flex;
  flex-direction: column;
}

.tp5-call small {
  margin-bottom: 2px;
  color: var(--tp5-muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tp5-call strong {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.tp5-quote {
  position: relative;
  min-width: 138px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 0 7px 0 17px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--tp5-dark);
  color: var(--tp5-white);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 9px 22px rgba(17, 19, 21, 0.16);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tp5-quote:hover {
  color: var(--tp5-white);
  background: #050606;
  box-shadow: 0 14px 28px rgba(17, 19, 21, 0.23);
  transform: translateY(-3px);
}

.tp5-quote>i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--tp5-copper);
  color: var(--tp5-dark);
  font-size: 12px;
  transition: transform 0.25s ease;
}

.tp5-quote:hover>i {
  transform: translate(2px, -2px);
}

/* =========================================================
   MOBILE HEADER CONTROLS
========================================================= */

.tp5-mobile-actions {
  align-items: center;
  gap: 5px;
}

.tp5-mobile-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
}

.tp5-mobile-call {
  border: 1px solid rgba(152, 98, 71, 0.14);
  background: var(--tp5-cream);
  color: var(--tp5-copper-dark);
}

.tp5-mobile-whatsapp {
  background: var(--tp5-green);
  color: var(--tp5-white);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.21);
}

.tp5-menu-button {
  width: 42px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--tp5-dark);
}

.tp5-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--tp5-white);
}

.tp5-menu-button span:nth-child(2) {
  width: 13px;
  margin-left: 5px;
  background: var(--tp5-copper-light);
}

/* =========================================================
   MOBILE OFFCANVAS
========================================================= */

.tp5-offcanvas {
  width: min(92vw, 410px) !important;
  z-index: 1060;
  border: 0 !important;
  background: var(--tp5-white);
}

.offcanvas-backdrop {
  z-index: 1055;
}

.tp5-offcanvas-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--tp5-border);
}

.tp5-offcanvas-header img {
  display: block;
  width: 190px;
  height: auto;
}

.tp5-offcanvas-close {
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--tp5-cream);
  color: var(--tp5-text);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp5-offcanvas-close:hover {
  color: var(--tp5-white);
  background: var(--tp5-dark);
  transform: rotate(90deg);
}

.tp5-offcanvas-body {
  padding: 16px;
}

.tp5-mobile-certification {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 11px;
  background: var(--tp5-cream);
}

.tp5-mobile-certification>i {
  color: var(--tp5-copper-dark);
  font-size: 21px;
}

.tp5-mobile-certification span,
.tp5-mobile-contact span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.tp5-mobile-certification small,
.tp5-mobile-contact small {
  margin-bottom: 2px;
  color: var(--tp5-muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tp5-mobile-certification strong {
  color: var(--tp5-text);
  font-size: 10px;
}

/* Mobile menu links */
.tp5-mobile-nav>a,
.tp5-mobile-products>button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  margin-bottom: 5px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--tp5-text);
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp5-mobile-nav>a:hover,
.tp5-mobile-products>button:hover,
.tp5-mobile-products>button[aria-expanded="true"] {
  border-color: rgba(207, 152, 119, 0.16);
  background: var(--tp5-cream);
  transform: translateX(3px);
}

.tp5-mobile-nav>a>span,
.tp5-mobile-products>button>span {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tp5-mobile-nav>a>span>i,
.tp5-mobile-products>button>span>i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(207, 152, 119, 0.12);
  color: var(--tp5-copper-dark);
  font-size: 13px;
}

.tp5-mobile-nav>a>i:last-child {
  color: var(--tp5-copper-dark);
  font-size: 9px;
}

.tp5-mobile-plus {
  color: var(--tp5-copper-dark);
  font-size: 12px;
  transition: transform 0.25s ease;
}

.tp5-mobile-products>button[aria-expanded="true"] .tp5-mobile-plus {
  transform: rotate(45deg);
}

.tp5-mobile-product-list {
  padding: 3px 0 9px 45px;
}

.tp5-mobile-product-list a {
  display: block;
  padding: 10px 12px;
  margin-bottom: 3px;
  border-left: 2px solid rgba(207, 152, 119, 0.35);
  color: var(--tp5-muted);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding-left 0.25s ease;
}

.tp5-mobile-product-list a:hover {
  padding-left: 16px;
  background: var(--tp5-cream);
  color: var(--tp5-copper-dark);
}

/* Mobile quote */
.tp5-mobile-quote {
  position: relative;
  padding: 21px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.23),
      transparent 38%),
    var(--tp5-dark);
  color: var(--tp5-white);
}

.tp5-mobile-quote::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 125px;
  height: 125px;
  border: 24px solid rgba(207, 152, 119, 0.1);
  border-radius: 50%;
}

.tp5-mobile-quote small {
  position: relative;
  z-index: 2;
  color: var(--tp5-copper-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tp5-mobile-quote h3 {
  position: relative;
  z-index: 2;
  max-width: 270px;
  margin: 7px 0 15px;
  color: var(--tp5-white);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.tp5-mobile-quote>a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 9px;
  background: var(--tp5-copper);
  color: var(--tp5-dark);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

/* Mobile contact */
.tp5-mobile-contact {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}

.tp5-mobile-contact>a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border: 1px solid var(--tp5-border);
  border-radius: 10px;
  color: var(--tp5-text);
  text-decoration: none;
}

.tp5-mobile-contact>a>i {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--tp5-cream);
  color: var(--tp5-copper-dark);
}

.tp5-mobile-contact strong {
  overflow-wrap: anywhere;
  color: var(--tp5-text);
  font-size: 10px;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1399.98px) and (min-width: 1200px) {
  .tp5-brand {
    width: 184px;
    flex-basis: 184px;
  }

  .tp5-brand img {
    width: 174px;
  }

  .tp5-nav-link {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 10.5px;
  }

  .tp5-call>span {
    display: none;
  }

  .tp5-actions {
    padding-left: 12px;
    margin-left: 7px;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .tp5-navbar {
    min-height: 72px;
    padding-left: 15px;
  }

  .tp5-header.is-scrolled .tp5-navbar {
    min-height: 66px;
  }

  .tp5-brand {
    width: 160px;
    flex-basis: 160px;
  }

  .tp5-brand img {
    width: 151px;
  }

  .tp5-nav-link {
    min-height: 72px;
    padding-right: 7px;
    padding-left: 7px;
    font-size: 9px;
  }

  .tp5-header.is-scrolled .tp5-nav-link {
    min-height: 66px;
  }

  .tp5-call {
    display: none;
  }

  .tp5-actions {
    padding-left: 8px;
    margin-left: 3px;
  }

  .tp5-quote {
    min-width: 108px;
    height: 45px;
    padding-left: 12px;
    font-size: 8px;
  }

  .tp5-select-dropdown {
    width: 315px;
    transform:
      translate3d(-42%, 9px, 0) scale(0.985) !important;
  }

  .tp5-select-dropdown.show,
  .tp5-dropdown.dropdown-open .tp5-select-dropdown,
  .tp5-dropdown.show .tp5-select-dropdown {
    transform:
      translate3d(-42%, 0, 0) scale(1) !important;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .techno-topbar__inner {
    min-height: 60px;
  }

  .techno-topbar__certificate {
    display: none;
  }

  .techno-topbar__location strong {
    display: block;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tp5-header {
    padding: 8px 0;
  }

  .tp5-header.is-scrolled {
    padding: 4px 0;
  }

  .tp5-navbar,
  .tp5-header.is-scrolled .tp5-navbar {
    min-height: 70px;
    padding: 0 11px 0 16px;
    border-radius: 16px;
  }

  .tp5-brand {
    width: auto;
    flex-basis: auto;
    max-width: 195px;
  }

  .tp5-brand img {
    width: 185px;
  }

  .tp5-select-dropdown {
    display: none !important;
  }

  section[id] {
    scroll-margin-top: 88px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .techno-topbar {
    padding: 7px 0;
  }

  .techno-topbar__inner {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

  .techno-topbar__group {
    width: 100%;
  }

  .techno-topbar__group--left {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 43px;
    gap: 6px;
  }

  .techno-topbar__item {
    min-height: 45px;
    padding: 6px 8px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
  }

  .techno-topbar__item::after {
    display: none;
  }

  .techno-topbar__location strong {
    max-width: 100%;
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .techno-topbar__email {
    justify-content: center;
    padding: 5px;
  }

  .techno-topbar__email .techno-topbar__content {
    display: none;
  }

  .techno-topbar__icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .techno-topbar__group--right {
    display: block;
  }

  .techno-topbar__call {
    width: 100%;
    min-width: 0;
    padding: 8px 10px;
  }

  .techno-topbar__call-content {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .techno-topbar__call-content strong {
    margin-left: auto;
  }

  .tp5-header {
    padding: 5px 0;
  }

  .tp5-header.is-scrolled {
    padding: 3px 0;
  }

  .tp5-header .container-xxl {
    padding-right: 9px;
    padding-left: 9px;
  }

  .tp5-navbar,
  .tp5-header.is-scrolled .tp5-navbar {
    min-height: 64px;
    padding-right: 8px;
    padding-left: 12px;
    border-radius: 14px;
  }

  .tp5-navbar::before {
    left: 24px;
    width: 64px;
    height: 2px;
  }

  .tp5-brand {
    max-width: 145px;
  }

  .tp5-brand img {
    width: 142px;
  }

  .tp5-mobile-actions {
    gap: 4px;
  }

  .tp5-mobile-icon {
    width: 33px;
    height: 33px;
    border-radius: 9px;
    font-size: 12px;
  }

  .tp5-menu-button {
    width: 37px;
    height: 36px;
    border-radius: 9px;
  }

  .tp5-menu-button span {
    width: 16px;
  }

  .tp5-menu-button span:nth-child(2) {
    width: 12px;
  }

  .tp5-offcanvas-header img {
    width: 173px;
  }

  section[id] {
    scroll-margin-top: 76px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .techno-topbar__location small {
    display: none;
  }

  .techno-topbar__call-content small {
    display: none;
  }

  .techno-topbar__call-content strong {
    margin-left: 0;
  }

  .tp5-brand {
    max-width: 123px;
  }

  .tp5-brand img {
    width: 121px;
  }

  .tp5-mobile-call {
    display: none;
  }

  .tp5-mobile-icon,
  .tp5-menu-button {
    width: 33px;
    height: 33px;
  }

  .tp5-offcanvas-header img {
    width: 158px;
  }

  .tp5-mobile-quote {
    padding: 18px;
  }

  .tp5-mobile-quote h3 {
    font-size: 17px;
  }
}


/* =========================================================
   NAVBAR OPTION SHADOW BUTTON STYLE
   Paste this at the bottom of CSS
========================================================= */

@media (min-width: 992px) {

  .tp5-menu {
    gap: 14px;
  }

  .tp5-nav-link {
    min-height: 50px;
    padding: 0 22px !important;
    border-radius: 5px;
    background: #ffffff;
    color: #071f35 !important;
    border: 1px solid rgba(10, 30, 45, 0.08);
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.12),
      0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    font-weight: 800;
    transition: 0.28s ease;
  }

  .tp5-header.is-scrolled .tp5-nav-link {
    min-height: 46px;
  }

  .tp5-nav-link::before,
  .tp5-nav-link::after {
    display: none !important;
  }

  .tp5-nav-link:hover,
  .tp5-nav-link:focus,
  .tp5-nav-link.active,
  .tp5-dropdown.dropdown-open .tp5-product-toggle,
  .tp5-dropdown.show .tp5-product-toggle {
    color: #723003 !important;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow:
      0 13px 26px rgba(0, 0, 0, 0.16),
      0 4px 9px rgba(0, 0, 0, 0.07);
  }

  .tp5-nav-link.active {
    color: #723003 !important;
  }

  .tp5-product-toggle>i {
    font-size: 12px;
    margin-left: 3px;
  }

  .tp5-select-dropdown {
    top: calc(100% + 16px) !important;
  }
}

/* =========================================================
   TECHNO PAVERS — PREMIUM RESPONSIVE HERO SLIDER
========================================================= */

:root {
  --hero-dark: #0d0f10;
  --hero-copper: #cf9877;
  --hero-copper-dark: #9a6448;
  --hero-copper-light: #efbc99;
  --hero-white: #ffffff;
  --hero-muted: rgba(255, 255, 255, 0.76);
}

/* =========================================================
   HERO WRAPPER
========================================================= */

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--hero-dark);
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  width: 100%;
  height: 100%;
}

.hero-section .carousel-item {
  position: relative;
}

/* Smoother Bootstrap fade */
.hero-section .carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.hero-section .carousel-fade .carousel-item.active {
  opacity: 1;
}

/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-slide {
  position: relative;
  isolation: isolate;
  min-height: clamp(680px, 82vh, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* Main dark overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(180deg,
      rgba(8, 10, 11, 0.56) 0%,
      rgba(8, 10, 11, 0.62) 48%,
      rgba(8, 10, 11, 0.8) 100%),
    linear-gradient(90deg,
      rgba(9, 11, 12, 0.36),
      rgba(9, 11, 12, 0.15),
      rgba(9, 11, 12, 0.36));
}

/* Decorative spotlight */
.hero-slide::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;

  width: min(900px, 80vw);
  height: min(600px, 70vh);

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(207, 152, 119, 0.17) 0%,
      rgba(207, 152, 119, 0.06) 38%,
      transparent 72%);

  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* =========================================================
   CONTAINER AND CENTER ALIGNMENT
========================================================= */

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.min-vh-hero {
  min-height: clamp(680px, 82vh, 880px);
  justify-content: center;
  text-align: center;
}

.hero-container .row {
  justify-content: center;
}

.hero-container .col-xl-8,
.hero-container .col-lg-9 {
  margin-right: auto;
  margin-left: auto;
}

.hero-content {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 100px 20px 120px;

  color: var(--hero-white);
  text-align: center;
}

/* =========================================================
   HERO KICKER
========================================================= */

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  padding: 9px 15px;
  margin-bottom: 22px;

  border: 1px solid rgba(239, 188, 153, 0.32);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  color: var(--hero-copper-light);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-kicker>span {
  position: relative;

  width: 8px;
  height: 8px;
  flex: 0 0 8px;

  border-radius: 50%;
  background: var(--hero-copper);

  box-shadow:
    0 0 0 5px rgba(207, 152, 119, 0.14),
    0 0 16px rgba(207, 152, 119, 0.6);
}

.hero-kicker>span::after {
  content: "";
  position: absolute;
  inset: -5px;

  border: 1px solid rgba(239, 188, 153, 0.45);
  border-radius: 50%;

  animation: heroPulse 2s infinite;
}

/* =========================================================
   HEADINGS
========================================================= */

.hero-content h1,
.hero-content h2 {
  max-width: 960px;
  margin: 0 auto 23px;

  color: var(--hero-white);

  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2.2px;
  text-align: center;

  text-wrap: balance;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.26);
}

.hero-content h2 {
  font-size: clamp(40px, 5vw, 72px);
}

.hero-content h1 em,
.hero-content h2 em {
  position: relative;
  display: inline;

  color: var(--hero-copper-light);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.hero-content h1 em::after,
.hero-content h2 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;

  height: 3px;
  border-radius: 20px;

  background: linear-gradient(90deg,
      transparent,
      var(--hero-copper),
      transparent);

  opacity: 0.65;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.hero-content>p {
  max-width: 780px;
  margin: 0 auto 32px;

  color: var(--hero-muted);

  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 400;
  line-height: 1.75;
  text-align: center;

  text-wrap: balance;
}

/* =========================================================
   ACTION BUTTONS
========================================================= */

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;

  margin-bottom: 42px;
}

.hero-section .hero-actions .btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 23px;

  border-width: 1px;
  border-radius: 12px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;

  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.hero-section .hero-actions .btn i {
  font-size: 14px;
  transition: transform 0.28s ease;
}

.hero-section .hero-actions .btn-brand {
  border-color: var(--hero-copper);
  background: var(--hero-copper);
  color: var(--hero-dark);

  box-shadow:
    0 13px 30px rgba(207, 152, 119, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-section .hero-actions .btn-brand:hover {
  border-color: var(--hero-copper-light);
  background: var(--hero-copper-light);
  color: var(--hero-dark);

  transform: translateY(-3px);

  box-shadow:
    0 18px 38px rgba(207, 152, 119, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-section .hero-actions .btn-brand:hover i {
  transform: translateX(4px);
}

.hero-section .hero-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--hero-white);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-section .hero-actions .btn-outline-light:hover {
  border-color: var(--hero-white);
  background: var(--hero-white);
  color: var(--hero-dark);

  transform: translateY(-3px);

  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.hero-section .hero-actions .btn-outline-light:hover i {
  transform: scale(1.1);
}

/* =========================================================
   TRUST STATISTICS
========================================================= */

.hero-trust {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin: 0 auto;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;

  background: rgba(12, 14, 15, 0.42);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-trust>div {
  position: relative;
  min-height: 98px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  padding: 17px 15px;
  text-align: center;
}

.hero-trust>div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 22%;

  width: 1px;

  background: linear-gradient(180deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
}

.hero-trust strong {
  display: block;
  margin-bottom: 5px;

  color: var(--hero-copper-light);

  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.hero-trust span {
  max-width: 150px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =========================================================
   CAROUSEL INDICATORS
========================================================= */

.hero-section .carousel-indicators {
  right: 50%;
  bottom: 27px;
  left: auto;

  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 8px 11px;
  margin: 0;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  background: rgba(9, 11, 12, 0.48);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transform: translateX(50%);
}

.hero-section .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;

  padding: 0;
  margin: 0;

  border: 0;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.44);
  opacity: 1;

  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.hero-section .carousel-indicators .active {
  width: 30px;
  background: var(--hero-copper);
}

/* =========================================================
   CAROUSEL ARROWS
========================================================= */

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  top: 50%;
  bottom: auto;

  width: auto;
  height: auto;

  opacity: 1;
  transform: translateY(-50%);
}

.hero-section .carousel-control-prev {
  left: clamp(16px, 3vw, 50px);
}

.hero-section .carousel-control-next {
  right: clamp(16px, 3vw, 50px);
}

.hero-arrow {
  width: 52px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;

  background: rgba(12, 14, 15, 0.46);
  color: var(--hero-white);

  font-size: 17px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.hero-section .carousel-control-prev:hover .hero-arrow,
.hero-section .carousel-control-next:hover .hero-arrow {
  border-color: var(--hero-copper);
  background: var(--hero-copper);
  color: var(--hero-dark);

  transform: scale(1.07);

  box-shadow: 0 13px 30px rgba(207, 152, 119, 0.28);
}

/* =========================================================
   ACTIVE SLIDE CONTENT ANIMATION
========================================================= */

.hero-section .carousel-item .hero-kicker,
.hero-section .carousel-item h1,
.hero-section .carousel-item h2,
.hero-section .carousel-item .hero-content>p,
.hero-section .carousel-item .hero-actions,
.hero-section .carousel-item .hero-trust {
  opacity: 0;
  transform: translateY(26px);
}

.hero-section .carousel-item.active .hero-kicker {
  animation: heroContentReveal 0.65s 0.12s forwards;
}

.hero-section .carousel-item.active h1,
.hero-section .carousel-item.active h2 {
  animation: heroContentReveal 0.7s 0.2s forwards;
}

.hero-section .carousel-item.active .hero-content>p {
  animation: heroContentReveal 0.7s 0.3s forwards;
}

.hero-section .carousel-item.active .hero-actions {
  animation: heroContentReveal 0.7s 0.4s forwards;
}

.hero-section .carousel-item.active .hero-trust {
  animation: heroContentReveal 0.7s 0.5s forwards;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .hero-slide,
  .min-vh-hero {
    min-height: clamp(650px, 80vh, 790px);
  }

  .hero-slide {
    background-position: center;
  }

  .hero-content {
    max-width: 780px;
    padding: 85px 35px 115px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(39px, 7vw, 58px);
    letter-spacing: -1.5px;
  }

  .hero-content>p {
    max-width: 680px;
    font-size: 16px;
  }

  .hero-section .carousel-control-prev {
    left: 13px;
  }

  .hero-section .carousel-control-next {
    right: 13px;
  }

  .hero-arrow {
    width: 45px;
    height: 45px;
    font-size: 15px;
  }

  .hero-trust {
    max-width: 680px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .hero-slide,
  .min-vh-hero {
    min-height: 760px;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg,
        rgba(8, 10, 11, 0.61) 0%,
        rgba(8, 10, 11, 0.68) 45%,
        rgba(8, 10, 11, 0.88) 100%);
  }

  .hero-content {
    max-width: 100%;
    padding: 72px 16px 110px;
  }

  .hero-kicker {
    max-width: 94%;
    gap: 9px;

    padding: 8px 13px;
    margin-bottom: 18px;

    font-size: 9px;
    letter-spacing: 1px;
    text-align: center;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 600px;
    margin-bottom: 19px;

    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .hero-content h1 em::after,
  .hero-content h2 em::after {
    bottom: -3px;
    height: 2px;
  }

  .hero-content>p {
    max-width: 560px;
    margin-bottom: 26px;

    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    max-width: 440px;
    display: grid;
    grid-template-columns: 1fr;

    gap: 10px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: auto;
  }

  .hero-section .hero-actions .btn {
    width: 100%;
    min-height: 50px;

    padding-right: 18px;
    padding-left: 18px;

    font-size: 10px;
  }

  .hero-trust {
    max-width: 450px;
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .hero-trust>div {
    min-height: 72px;
    padding: 12px 15px;
  }

  .hero-trust>div:not(:last-child)::after {
    top: auto;
    right: 13%;
    bottom: 0;
    left: 13%;

    width: auto;
    height: 1px;

    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent);
  }

  .hero-trust strong {
    margin-bottom: 4px;
    font-size: 20px;
  }

  .hero-trust span {
    max-width: 220px;
    font-size: 8px;
  }

  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next {
    top: auto;
    bottom: 23px;
    transform: none;
  }

  .hero-section .carousel-control-prev {
    left: 16px;
  }

  .hero-section .carousel-control-next {
    right: 16px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .hero-section .carousel-indicators {
    bottom: 26px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

  .hero-slide,
  .min-vh-hero {
    min-height: 740px;
  }

  .hero-content {
    padding-top: 60px;
    padding-right: 12px;
    padding-bottom: 105px;
    padding-left: 12px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(31px, 9.7vw, 42px);
  }

  .hero-content>p {
    font-size: 13.5px;
  }

  .hero-kicker {
    font-size: 8px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {

  .hero-slide,
  .min-vh-hero {
    min-height: 730px;
  }

  .hero-content {
    padding-top: 52px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 30px;
  }

  .hero-content>p {
    font-size: 13px;
  }

  .hero-trust>div {
    min-height: 67px;
  }
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroContentReveal {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.75);
  }

  70% {
    opacity: 0;
    transform: scale(1.55);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

/* =========================================================
   HERO CAROUSEL ARROW POSITION FIX
========================================================= */

.hero-section,
.hero-section #heroCarousel {
  position: relative;
}

/* Reset both Bootstrap controls completely */
.hero-section #heroCarousel>.carousel-control-prev,
.hero-section #heroCarousel>.carousel-control-next {
  position: absolute !important;

  top: 50% !important;
  bottom: auto !important;

  width: 54px !important;
  height: 54px !important;

  padding: 0 !important;
  margin: 0 !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  opacity: 1 !important;
  z-index: 20 !important;

  transform: translateY(-50%) !important;
}

/* Left arrow */
.hero-section #heroCarousel>.carousel-control-prev {
  left: 32px !important;
  right: auto !important;
}

/* Right arrow */
.hero-section #heroCarousel>.carousel-control-next {
  right: 32px !important;
  left: auto !important;
}

/* Arrow circle */
.hero-section .hero-arrow {
  width: 52px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;

  background: rgba(8, 10, 11, 0.55);
  color: #ffffff;

  font-size: 17px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-section .carousel-control-prev:hover .hero-arrow,
.hero-section .carousel-control-next:hover .hero-arrow {
  border-color: #cf9877;
  background: #cf9877;
  color: #111315;

  transform: scale(1.08);

  box-shadow: 0 12px 28px rgba(207, 152, 119, 0.3);
}

/* Keep icon exactly centered */
.hero-section .hero-arrow i {
  display: block;
  line-height: 1;
}

/* =========================================================
   LARGE SCREENS
========================================================= */

@media (min-width: 1600px) {
  .hero-section #heroCarousel>.carousel-control-prev {
    left: 40px !important;
  }

  .hero-section #heroCarousel>.carousel-control-next {
    right: 40px !important;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .hero-section #heroCarousel>.carousel-control-prev,
  .hero-section #heroCarousel>.carousel-control-next {
    width: 46px !important;
    height: 46px !important;
  }

  .hero-section #heroCarousel>.carousel-control-prev {
    left: 15px !important;
  }

  .hero-section #heroCarousel>.carousel-control-next {
    right: 15px !important;
  }

  .hero-section .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .hero-section #heroCarousel>.carousel-control-prev,
  .hero-section #heroCarousel>.carousel-control-next {
    top: auto !important;
    bottom: 22px !important;

    width: 42px !important;
    height: 42px !important;

    transform: none !important;
  }

  .hero-section #heroCarousel>.carousel-control-prev {
    left: 15px !important;
    right: auto !important;
  }

  .hero-section #heroCarousel>.carousel-control-next {
    right: 15px !important;
    left: auto !important;
  }

  .hero-section .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}

/* =========================================================
   TECHNO PAVERS — CERTIFICATION & STANDARDS STRIP
========================================================= */

.certification-strip {
  position: relative;
  z-index: 5;
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(20, 23, 25, 0.08);
  border-bottom: 1px solid rgba(20, 23, 25, 0.08);
  background:
    radial-gradient(circle at 8% 20%,
      rgba(207, 152, 119, 0.12),
      transparent 28%),
    radial-gradient(circle at 92% 80%,
      rgba(207, 152, 119, 0.08),
      transparent 25%),
    #f8f6f4;
}

/* Decorative top accent */
.certification-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 50%);
  height: 3px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(90deg,
      transparent,
      var(--tp5-copper, #cf9877),
      transparent);
  transform: translateX(-50%);
}

/* Soft background pattern */
.certification-strip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -85px;
  width: 210px;
  height: 210px;
  border: 38px solid rgba(207, 152, 119, 0.045);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.certification-strip .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   GRID
========================================================= */

.certification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* =========================================================
   CERTIFICATION CARD
========================================================= */

.cert-item {
  position: relative;
  min-width: 0;
  min-height: 106px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 25, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 10px 28px rgba(17, 19, 21, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

/* Bottom hover line */
.cert-item::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  border-radius: 10px 10px 0 0;
  background: var(--tp5-copper, #cf9877);
  transition:
    right 0.28s ease,
    left 0.28s ease;
}

/* Decorative corner circle */
.cert-item::after {
  content: "";
  position: absolute;
  top: -45px;
  right: -45px;
  width: 105px;
  height: 105px;
  border: 19px solid rgba(207, 152, 119, 0.055);
  border-radius: 50%;
  transition:
    border-color 0.28s ease,
    transform 0.28s ease;
}

.cert-item:hover {
  border-color: rgba(207, 152, 119, 0.28);
  background: #ffffff;
  box-shadow:
    0 17px 38px rgba(17, 19, 21, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-5px);
}

.cert-item:hover::before {
  right: 18px;
  left: 18px;
}

.cert-item:hover::after {
  border-color: rgba(207, 152, 119, 0.09);
  transform: scale(1.08);
}

/* =========================================================
   ICON
========================================================= */

.cert-item>i {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(207, 152, 119, 0.18);
  border-radius: 14px;
  background: rgba(207, 152, 119, 0.11);
  color: var(--tp5-copper-dark, #986247);
  font-size: 20px;
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.cert-item:hover>i {
  border-color: var(--tp5-dark, #111315);
  background: var(--tp5-dark, #111315);
  color: var(--tp5-copper-light, #efbc99);
  box-shadow: 0 10px 22px rgba(17, 19, 21, 0.18);
  transform: rotate(-5deg) scale(1.04);
}

/* =========================================================
   TEXT
========================================================= */

.cert-item>div {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cert-item strong {
  margin-bottom: 5px;
  color: var(--tp5-text, #292c2e);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.1px;
}

.cert-item span {
  color: var(--tp5-muted, #74787b);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

/* =========================================================
   OPTIONAL INDIVIDUAL ICON ACCENTS
========================================================= */

.cert-item:nth-child(1)>i {
  background: rgba(207, 152, 119, 0.13);
}

.cert-item:nth-child(2)>i {
  background: rgba(44, 122, 89, 0.09);
  border-color: rgba(44, 122, 89, 0.14);
  color: #2c7a59;
}

.cert-item:nth-child(3)>i {
  background: rgba(47, 92, 140, 0.09);
  border-color: rgba(47, 92, 140, 0.14);
  color: #2f5c8c;
}

.cert-item:nth-child(4)>i {
  background: rgba(187, 119, 46, 0.1);
  border-color: rgba(187, 119, 46, 0.15);
  color: #a6672e;
}

.cert-item:hover>i {
  border-color: var(--tp5-dark, #111315);
  background: var(--tp5-dark, #111315);
  color: var(--tp5-copper-light, #efbc99);
}

/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199.98px) {
  .certification-strip {
    padding: 24px 0;
  }

  .certification-grid {
    gap: 11px;
  }

  .cert-item {
    min-height: 98px;
    gap: 12px;
    padding: 17px 14px;
  }

  .cert-item>i {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
    border-radius: 12px;
    font-size: 18px;
  }

  .cert-item strong {
    font-size: 12px;
  }

  .cert-item span {
    font-size: 9px;
  }
}

/* =========================================================
   TABLET — TWO COLUMNS
========================================================= */

@media (max-width: 991.98px) {
  .certification-strip {
    padding: 22px 0;
  }

  .certification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cert-item {
    min-height: 100px;
    padding: 18px;
  }

  .cert-item strong {
    font-size: 13px;
  }

  .cert-item span {
    font-size: 9.5px;
  }
}

/* =========================================================
   MOBILE — SINGLE COLUMN
========================================================= */

@media (max-width: 575.98px) {
  .certification-strip {
    padding: 17px 0;
  }

  .certification-strip .container-xxl {
    padding-right: 12px;
    padding-left: 12px;
  }

  .certification-strip::before {
    width: 150px;
    height: 2px;
  }

  .certification-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .cert-item {
    min-height: 82px;
    gap: 13px;
    padding: 13px 14px;
    border-radius: 13px;
  }

  .cert-item:hover {
    transform: translateY(-2px);
  }

  .cert-item>i {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 11px;
    font-size: 17px;
  }

  .cert-item strong {
    margin-bottom: 3px;
    font-size: 12.5px;
  }

  .cert-item span {
    font-size: 9px;
  }

  .cert-item::after {
    top: -50px;
    right: -50px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .cert-item {
    min-height: 78px;
    padding: 12px;
  }

  .cert-item>i {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
    font-size: 16px;
  }

  .cert-item strong {
    font-size: 12px;
  }

  .cert-item span {
    font-size: 8.5px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .certification-strip *,
  .certification-strip *::before,
  .certification-strip *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   TECHNO PAVERS — STICKY SOCIAL MEDIA LINKS
========================================================= */

.tp-social-sticky {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 1035;

  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;

  transform: translateY(-50%);
}

/* Follow Us label */
.tp-social-sticky__label {
  margin-bottom: 4px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);

  transform: rotate(180deg);
}

.tp-social-sticky__links {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
}

/* Social link */
.tp-social-sticky__link {
  position: relative;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;

  color: #ffffff;
  text-decoration: none;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.tp-social-sticky__link:hover {
  width: 148px;

  color: #ffffff;

  border-radius: 14px 8px 8px 14px;

  box-shadow:
    0 15px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);

  transform: translateX(-4px);
}

/* Social icon */
.tp-social-sticky__link>i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  transition: transform 0.3s ease;
}

.tp-social-sticky__link:hover>i {
  transform: scale(1.08);
}

/* Social name */
.tp-social-sticky__link>span {
  padding-right: 17px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;

  opacity: 0;
  transform: translateX(8px);

  transition:
    opacity 0.2s ease 0.08s,
    transform 0.2s ease 0.08s;
}

.tp-social-sticky__link:hover>span {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   SOCIAL NETWORK COLOURS
========================================================= */

.tp-social-facebook {
  background: linear-gradient(135deg, #1877f2, #0d58c7);
}

.tp-social-instagram {
  background:
    radial-gradient(circle at 30% 105%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
}

.tp-social-youtube {
  background: linear-gradient(135deg, #ff1f1f, #cc0000);
}

.tp-social-telegram {
  background: linear-gradient(135deg, #2aabee, #168dcc);
}

/* =========================================================
   PULSE EFFECT
========================================================= */

.tp-social-sticky__link::after {
  content: "";

  position: absolute;
  inset: 0;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: inherit;

  opacity: 0;
  transform: scale(1);

  pointer-events: none;
}

.tp-social-sticky__link:hover::after {
  animation: tpSocialPulse 0.7s ease;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .tp-social-sticky {
    right: 12px;
  }

  .tp-social-sticky__link {
    width: 43px;
    height: 43px;
    border-radius: 12px;
  }

  .tp-social-sticky__link>i {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
    font-size: 16px;
  }

  .tp-social-sticky__link:hover {
    width: 135px;
  }

  .tp-social-sticky__link>span {
    font-size: 9px;
  }
}

/* =========================================================
   MOBILE — BOTTOM HORIZONTAL BAR
========================================================= */

@media (max-width: 767.98px) {
  .tp-social-sticky {
    top: auto;
    right: 50%;
    bottom: 14px;

    width: auto;

    flex-direction: row;

    padding: 6px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;

    background: rgba(17, 19, 21, 0.82);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transform: translateX(50%);
  }

  .tp-social-sticky__label {
    display: none;
  }

  .tp-social-sticky__links {
    align-items: center;
    flex-direction: row;
    gap: 6px;
  }

  .tp-social-sticky__link {
    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 11px;

    box-shadow: none;
  }

  .tp-social-sticky__link>i {
    width: 42px;
    height: 42px;
    flex-basis: 42px;

    font-size: 16px;
  }

  .tp-social-sticky__link>span {
    display: none;
  }

  .tp-social-sticky__link:hover {
    width: 42px;
    border-radius: 11px;
    transform: translateY(-3px);
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .tp-social-sticky {
    bottom: 10px;
    padding: 5px;
  }

  .tp-social-sticky__links {
    gap: 4px;
  }

  .tp-social-sticky__link,
  .tp-social-sticky__link:hover {
    width: 38px;
    height: 38px;
  }

  .tp-social-sticky__link>i {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 15px;
  }
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes tpSocialPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tp-social-sticky *,
  .tp-social-sticky *::before,
  .tp-social-sticky *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   VERTICAL STICKY DOWNLOAD BROCHURE BUTTON
========================================================= */

.tp-brochure-sticky {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 1035;

  min-height: 190px;
  width: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 11px;

  padding: 13px 7px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 0;
  border-radius: 0 15px 15px 0;

  background:
    linear-gradient(180deg,
      #111315 0%,
      #242021 100%);

  color: #ffffff;
  text-decoration: none;

  box-shadow:
    8px 12px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transform: translateY(-50%);

  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Copper accent line */
.tp-brochure-sticky::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 16px;

  width: 3px;

  border-radius: 10px 0 0 10px;

  background: #cf9877;

  box-shadow: 0 0 15px rgba(207, 152, 119, 0.45);
}

/* Subtle shine */
.tp-brochure-sticky::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -90%;

  width: 80%;
  height: 180%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.12),
      transparent);

  transform: rotate(18deg);

  transition: left 0.65s ease;
}

.tp-brochure-sticky:hover {
  width: 60px;

  color: #ffffff;

  background:
    linear-gradient(180deg,
      #1b1d1f 0%,
      #111315 100%);

  box-shadow:
    10px 15px 35px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  transform: translateY(-50%) translateX(0);
}

.tp-brochure-sticky:hover::after {
  left: 150%;
}

/* =========================================================
   ICON
========================================================= */

.tp-brochure-sticky__icon {
  position: relative;
  z-index: 2;

  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #cf9877;
  color: #111315;

  font-size: 15px;

  box-shadow: 0 7px 18px rgba(207, 152, 119, 0.26);

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp-brochure-sticky:hover .tp-brochure-sticky__icon {
  background: #efbc99;
  transform: translateY(-2px);
}

/* =========================================================
   VERTICAL TEXT
========================================================= */

.tp-brochure-sticky__text {
  position: relative;
  z-index: 2;

  color: #ffffff;

  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  white-space: nowrap;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  transform: rotate(180deg);
}

/* =========================================================
   OPTIONAL PULSE AROUND ICON
========================================================= */

.tp-brochure-sticky__icon::after {
  content: "";
  position: absolute;
  inset: -4px;

  border: 1px solid rgba(239, 188, 153, 0.45);
  border-radius: 13px;

  animation: tpBrochurePulse 2.2s infinite;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .tp-brochure-sticky {
    min-height: 172px;
    width: 46px;
    border-radius: 0 13px 13px 0;
  }

  .tp-brochure-sticky:hover {
    width: 52px;
  }

  .tp-brochure-sticky__icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;

    font-size: 14px;
  }

  .tp-brochure-sticky__text {
    font-size: 8px;
    letter-spacing: 1px;
  }
}

/* =========================================================
   MOBILE
   Changes to a compact horizontal button
========================================================= */

@media (max-width: 767.98px) {
  .tp-brochure-sticky {
    top: auto;
    bottom: 72px;
    left: 12px;

    width: auto;
    min-height: 0;
    height: 45px;

    flex-direction: row;
    gap: 8px;

    padding: 5px 13px 5px 5px;

    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;

    transform: none;
  }

  .tp-brochure-sticky:hover {
    width: auto;
    transform: translateY(-3px);
  }

  .tp-brochure-sticky::before {
    top: auto;
    right: 12px;
    bottom: 0;
    left: 12px;

    width: auto;
    height: 2px;

    border-radius: 10px 10px 0 0;
  }

  .tp-brochure-sticky__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .tp-brochure-sticky__text {
    font-size: 8px;
    letter-spacing: 0.8px;

    writing-mode: horizontal-tb;
    text-orientation: initial;

    transform: none;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .tp-brochure-sticky {
    bottom: 65px;
    left: 9px;

    height: 41px;

    padding-right: 10px;
  }

  .tp-brochure-sticky__icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;

    font-size: 13px;
  }

  .tp-brochure-sticky__text {
    font-size: 7.5px;
  }
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes tpBrochurePulse {
  0% {
    opacity: 0.75;
    transform: scale(0.88);
  }

  70% {
    opacity: 0;
    transform: scale(1.28);
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tp-brochure-sticky,
  .tp-brochure-sticky *,
  .tp-brochure-sticky::before,
  .tp-brochure-sticky::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   TECHNO PAVERS — RESPONSIVE ABOUT SECTION
========================================================= */

.about-section {
  --about-dark: var(--tp5-dark, #111315);
  --about-text: var(--tp5-text, #292c2e);
  --about-muted: var(--tp5-muted, #74787b);
  --about-copper: var(--tp5-copper, #cf9877);
  --about-copper-dark: var(--tp5-copper-dark, #986247);
  --about-copper-light: var(--tp5-copper-light, #efbc99);
  --about-cream: var(--tp5-cream, #f8f3ef);
  --about-white: #ffffff;
  --about-border: rgba(20, 23, 25, 0.1);

  position: relative;
  padding: clamp(75px, 8vw, 125px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%,
      rgba(207, 152, 119, 0.12),
      transparent 28%),
    radial-gradient(circle at 100% 100%,
      rgba(207, 152, 119, 0.08),
      transparent 26%),
    #ffffff;
}

/* Decorative background elements */
.about-section::before {
  content: "";
  position: absolute;
  top: 65px;
  right: -120px;
  width: 290px;
  height: 290px;
  border: 52px solid rgba(207, 152, 119, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 7%;
  width: 210px;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg,
      transparent,
      var(--about-copper),
      transparent);
}

.about-section .container-xxl {
  position: relative;
  z-index: 2;
}

.about-section .row {
  --bs-gutter-x: clamp(32px, 5vw, 75px);
}

/* =========================================================
   LEFT IMAGE AREA
========================================================= */

.about-media {
  position: relative;
  max-width: 690px;
  margin: 0 auto;
  padding: 16px 16px 52px 0;
}

/* Decorative shape behind image */
.about-media::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 60%;
  height: 64%;
  border: 1px solid rgba(207, 152, 119, 0.25);
  border-radius: 28px 0 0 0;
  pointer-events: none;
}

.about-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 32px;
  width: 72%;
  height: 72%;
  border-radius: 26px;
  background:
    linear-gradient(145deg,
      rgba(207, 152, 119, 0.17),
      rgba(17, 19, 21, 0.04));
  transform: rotate(4deg);
  z-index: -1;
}

.about-media>img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: clamp(470px, 42vw, 620px);
  object-fit: cover;
  object-position: center;
  border-radius: 28px 28px 80px 28px;
  box-shadow:
    0 30px 70px rgba(17, 19, 21, 0.18),
    0 8px 22px rgba(17, 19, 21, 0.07);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.about-media:hover>img {
  transform: translateY(-5px);
  box-shadow:
    0 38px 80px rgba(17, 19, 21, 0.22),
    0 10px 25px rgba(17, 19, 21, 0.08);
}

/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.experience-badge {
  position: absolute;
  top: 46px;
  left: -24px;
  z-index: 4;
  width: 142px;
  min-height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px;
  border: 7px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%,
      rgba(255, 255, 255, 0.12),
      transparent 35%),
    var(--about-dark);
  color: var(--about-white);
  text-align: center;
  box-shadow: 0 18px 38px rgba(17, 19, 21, 0.28);
}

.experience-badge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(239, 188, 153, 0.5);
  border-radius: 50%;
}

.experience-badge strong,
.experience-badge span {
  position: relative;
  z-index: 2;
}

.experience-badge strong {
  margin-bottom: 5px;
  color: var(--about-copper-light);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.experience-badge span {
  max-width: 88px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* =========================================================
   IMAGE MINI CARD
========================================================= */

.about-mini-card {
  position: absolute;
  right: -13px;
  bottom: 0;
  z-index: 4;
  width: min(390px, 72%);
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px;
  border: 1px solid rgba(20, 23, 25, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 22px 48px rgba(17, 19, 21, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.about-mini-card::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 0;
  width: 3px;
  border-radius: 0 10px 10px 0;
  background: var(--about-copper);
}

.about-mini-card>i {
  width: 53px;
  height: 53px;
  flex: 0 0 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(207, 152, 119, 0.13);
  color: var(--about-copper-dark);
  font-size: 22px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.about-mini-card:hover>i {
  color: var(--about-copper-light);
  background: var(--about-dark);
  transform: rotate(-5deg);
}

.about-mini-card>div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.about-mini-card strong {
  margin-bottom: 5px;
  color: var(--about-text);
  font-size: 13px;
  font-weight: 800;
}

.about-mini-card span {
  color: var(--about-muted);
  font-size: 9.5px;
  line-height: 1.5;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.about-section .section-heading {
  margin-bottom: 24px;
}

.about-section .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(207, 152, 119, 0.2);
  border-radius: 999px;
  background: var(--about-cream);
  color: var(--about-copper-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.about-section .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--about-copper);
  box-shadow: 0 0 0 5px rgba(207, 152, 119, 0.12);
}

.about-section .section-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--about-text);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.7px;
  text-wrap: balance;
}

.about-section .section-heading h2>span {
  color: var(--about-copper-dark);
}

/* =========================================================
   PARAGRAPHS
========================================================= */

.about-section .lead-copy {
  max-width: 720px;
  margin-bottom: 17px;
  color: #42474a;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.75;
}

.about-section .col-lg-6>p:not(.lead-copy) {
  max-width: 720px;
  margin-bottom: 25px;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-section p strong {
  color: var(--about-text);
  font-weight: 800;
}

/* =========================================================
   ABOUT POINTS
========================================================= */

.about-points {
  display: grid;
  gap: 10px;
  margin-top: 27px;
}

.about-points>div {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  overflow: hidden;
  border: 1px solid var(--about-border);
  border-radius: 13px;
  background: #ffffff;
  color: var(--about-text);
  box-shadow: 0 8px 22px rgba(17, 19, 21, 0.04);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.about-points>div::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(207, 152, 119, 0.08));
  transition: width 0.35s ease;
}

.about-points>div:hover {
  border-color: rgba(207, 152, 119, 0.3);
  background: var(--about-cream);
  box-shadow: 0 13px 28px rgba(17, 19, 21, 0.07);
  transform: translateX(5px);
}

.about-points>div:hover::after {
  width: 45%;
}

.about-points i {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.13);
  color: var(--about-copper-dark);
  font-size: 17px;
}

.about-points span {
  position: relative;
  z-index: 2;
  color: #4e5356;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

/* =========================================================
   ACTION AREA
========================================================= */

.about-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 31px;
}

.about-section .btn-dark-brand {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid var(--about-dark);
  border-radius: 12px;
  background: var(--about-dark);
  color: var(--about-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 11px 25px rgba(17, 19, 21, 0.18);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-section .btn-dark-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.about-section .btn-dark-brand:hover {
  border-color: var(--about-copper-dark);
  background: var(--about-copper-dark);
  color: var(--about-white);
  box-shadow: 0 16px 32px rgba(152, 98, 71, 0.25);
  transform: translateY(-3px);
}

.about-section .btn-dark-brand:hover::before {
  left: 145%;
}

.about-section .btn-dark-brand i {
  transition: transform 0.25s ease;
}

.about-section .btn-dark-brand:hover i {
  transform: translateX(4px);
}

/* =========================================================
   FOUNDER SIGNOFF
========================================================= */

.founder-signoff {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.founder-signoff::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  border-radius: 10px;
  background: var(--about-copper);
}

.founder-signoff span {
  margin-bottom: 4px;
  color: var(--about-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.founder-signoff strong {
  color: var(--about-text);
  font-size: 15px;
  font-weight: 800;
}

/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199.98px) {
  .about-section {
    padding: 90px 0;
  }

  .about-section .row {
    --bs-gutter-x: 45px;
  }

  .about-media>img {
    height: 520px;
  }

  .experience-badge {
    left: -10px;
    width: 125px;
    min-height: 125px;
  }

  .experience-badge strong {
    font-size: 26px;
  }

  .about-mini-card {
    right: 0;
    width: 75%;
  }

  .about-section .section-heading h2 {
    font-size: 43px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .about-section {
    padding: 75px 0;
  }

  .about-section .row {
    --bs-gutter-y: 65px;
  }

  .about-media {
    max-width: 680px;
    padding-bottom: 45px;
  }

  .about-media>img {
    height: clamp(470px, 70vw, 610px);
  }

  .experience-badge {
    left: -12px;
  }

  .about-mini-card {
    right: 0;
    width: min(390px, 68%);
  }

  .about-section .section-heading,
  .about-section .lead-copy,
  .about-section .col-lg-6>p:not(.lead-copy) {
    max-width: 760px;
  }

  .about-section .section-heading h2 {
    max-width: 760px;
    font-size: clamp(38px, 6vw, 53px);
  }

  .about-points {
    max-width: 760px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .about-section {
    padding: 62px 0;
  }

  .about-section .row {
    --bs-gutter-y: 54px;
  }

  .about-media {
    padding: 9px 6px 85px;
  }

  .about-media::before {
    top: -12px;
    left: -5px;
    width: 70%;
    height: 55%;
    border-radius: 20px 0 0;
  }

  .about-media::after {
    right: 7px;
    bottom: 66px;
  }

  .about-media>img {
    height: clamp(390px, 105vw, 520px);
    border-radius: 20px 20px 55px 20px;
  }

  .experience-badge {
    top: 25px;
    left: -2px;
    width: 105px;
    min-height: 105px;
    padding: 13px;
    border-width: 5px;
  }

  .experience-badge strong {
    font-size: 22px;
  }

  .experience-badge span {
    max-width: 70px;
    font-size: 7px;
  }

  .about-mini-card {
    right: 13px;
    bottom: 0;
    left: 13px;
    width: auto;
    min-height: 96px;
    padding: 15px;
    border-radius: 15px;
  }

  .about-mini-card>i {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
    border-radius: 12px;
    font-size: 19px;
  }

  .about-mini-card strong {
    font-size: 12px;
  }

  .about-mini-card span {
    font-size: 9px;
  }

  .about-section .section-heading {
    margin-bottom: 19px;
    text-align: center;
  }

  .about-section .eyebrow {
    margin-bottom: 15px;
  }

  .about-section .section-heading h2 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(33px, 9vw, 45px);
    letter-spacing: -1px;
    text-align: center;
  }

  .about-section .lead-copy,
  .about-section .col-lg-6>p:not(.lead-copy) {
    text-align: center;
  }

  .about-section .lead-copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-section .col-lg-6>p:not(.lead-copy) {
    font-size: 13px;
    line-height: 1.75;
  }

  .about-points {
    gap: 8px;
    margin-top: 22px;
  }

  .about-points>div {
    min-height: 64px;
    padding: 11px 12px;
  }

  .about-points>div:hover {
    transform: translateY(-2px);
  }

  .about-points span {
    font-size: 11px;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
  }

  .about-section .btn-dark-brand {
    width: 100%;
    min-height: 50px;
  }

  .founder-signoff {
    align-items: center;
    padding: 14px 10px 0;
    text-align: center;
  }

  .founder-signoff::before {
    top: 0;
    right: 35%;
    bottom: auto;
    left: 35%;
    width: auto;
    height: 2px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .about-section {
    padding: 55px 0;
  }

  .about-section .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .about-media>img {
    height: 410px;
  }

  .about-section .section-heading h2 {
    font-size: 33px;
  }

  .about-mini-card {
    right: 8px;
    left: 8px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .about-media {
    padding-bottom: 92px;
  }

  .about-media>img {
    height: 370px;
  }

  .experience-badge {
    width: 94px;
    min-height: 94px;
  }

  .experience-badge strong {
    font-size: 20px;
  }

  .about-mini-card {
    align-items: flex-start;
    min-height: 105px;
  }

  .about-mini-card>i {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
  }

  .about-section .section-heading h2 {
    font-size: 30px;
  }

  .about-points i {
    width: 33px;
    height: 33px;
    flex-basis: 33px;
    font-size: 15px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .about-section *,
  .about-section *::before,
  .about-section *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   ABOUT SECTION — LARGE FOUNDER IMAGE
========================================================= */

.about-founder-media {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 16px 18px 72px 0;
}

/* Decorative frame */
.about-founder-media::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 62%;
  height: 66%;
  border: 1px solid rgba(207, 152, 119, 0.3);
  border-radius: 30px 0 0 0;
  pointer-events: none;
}

.about-founder-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 48px;
  z-index: -1;
  width: 75%;
  height: 72%;
  border-radius: 30px;
  background: linear-gradient(145deg,
      rgba(207, 152, 119, 0.18),
      rgba(17, 19, 21, 0.04));
  transform: rotate(4deg);
}

/* Large founder photograph */
.about-founder-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: clamp(540px, 46vw, 690px);
  object-fit: cover;
  object-position: center top;
  border-radius: 28px 28px 85px 28px;
  background: #ece9e6;
  box-shadow:
    0 32px 75px rgba(17, 19, 21, 0.2),
    0 8px 24px rgba(17, 19, 21, 0.08);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.about-founder-media:hover .about-founder-image {
  transform: translateY(-5px);
  box-shadow:
    0 40px 85px rgba(17, 19, 21, 0.24),
    0 10px 28px rgba(17, 19, 21, 0.09);
}

/* =========================================================
   FOUNDER INFORMATION CARD
========================================================= */

.founder-photo-card {
  position: absolute;
  right: -10px;
  bottom: 0;
  left: auto;
  z-index: 5;
  width: min(420px, 76%);
  min-height: 125px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(20, 23, 25, 0.09);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 24px 52px rgba(17, 19, 21, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.founder-photo-card::before {
  content: "";
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  width: 3px;
  border-radius: 0 10px 10px 0;
  background: #cf9877;
}

.founder-photo-card__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(207, 152, 119, 0.14);
  color: #986247;
  font-size: 22px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.founder-photo-card:hover .founder-photo-card__icon {
  background: #111315;
  color: #efbc99;
  transform: rotate(-5deg);
}

.founder-photo-card__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.founder-photo-card__content small {
  margin-bottom: 3px;
  color: #986247;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.founder-photo-card__content strong {
  margin-bottom: 5px;
  color: #292c2e;
  font-size: 15px;
  font-weight: 800;
}

.founder-photo-card__content span {
  color: #74787b;
  font-size: 9.5px;
  line-height: 1.5;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .about-founder-media {
    max-width: 690px;
  }

  .about-founder-image {
    height: clamp(520px, 75vw, 680px);
  }

  .founder-photo-card {
    right: 0;
    width: min(420px, 70%);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .about-founder-media {
    padding: 8px 6px 108px;
  }

  .about-founder-media::before {
    top: -10px;
    left: -4px;
    width: 72%;
    height: 58%;
    border-radius: 21px 0 0;
  }

  .about-founder-media::after {
    right: 8px;
    bottom: 88px;
  }

  .about-founder-image {
    height: clamp(470px, 125vw, 600px);
    border-radius: 21px 21px 58px 21px;
    object-position: center top;
  }

  .founder-photo-card {
    right: 12px;
    bottom: 0;
    left: 12px;
    width: auto;
    min-height: 104px;
    padding: 15px;
    border-radius: 16px;
  }

  .founder-photo-card__icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 12px;
    font-size: 19px;
  }

  .founder-photo-card__content strong {
    font-size: 13px;
  }

  .founder-photo-card__content span {
    font-size: 8.8px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .about-founder-media {
    padding-bottom: 115px;
  }

  .about-founder-image {
    height: 430px;
  }

  .founder-photo-card {
    right: 7px;
    left: 7px;
  }

  .founder-photo-card__content span {
    font-size: 8.3px;
  }
}


/* =========================================================
   TECHNO PAVERS — PRODUCT SLIDER
========================================================= */

.tp-products-section {
  --product-dark: var(--tp5-dark, #111315);
  --product-text: var(--tp5-text, #292c2e);
  --product-muted: var(--tp5-muted, #74787b);
  --product-copper: var(--tp5-copper, #cf9877);
  --product-copper-dark: var(--tp5-copper-dark, #986247);
  --product-copper-light: var(--tp5-copper-light, #efbc99);
  --product-cream: var(--tp5-cream, #f8f3ef);
  --product-white: #ffffff;
  --product-border: rgba(20, 23, 25, 0.1);

  position: relative;
  padding: clamp(75px, 8vw, 125px) 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 10%,
      rgba(207, 152, 119, 0.13),
      transparent 25%),
    radial-gradient(circle at 100% 90%,
      rgba(207, 152, 119, 0.08),
      transparent 26%),
    #f6f5f3;
}

.tp-products-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;

  width: 320px;
  height: 320px;

  border: 55px solid rgba(207, 152, 119, 0.04);
  border-radius: 50%;
}

.tp-products-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -90px;

  width: 260px;
  height: 260px;

  border: 45px solid rgba(17, 19, 21, 0.025);
  border-radius: 50%;
}

.tp-products-section .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.tp-products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;

  margin-bottom: 45px;
}

.tp-products-heading__content {
  max-width: 850px;
}

.tp-products-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 14px;
  margin-bottom: 18px;

  border: 1px solid rgba(207, 152, 119, 0.24);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.72);
  color: var(--product-copper-dark);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.tp-products-eyebrow i {
  font-size: 11px;
}

.tp-products-heading h2 {
  max-width: 850px;
  margin: 0 0 16px;

  color: var(--product-text);

  font-size: clamp(37px, 4.3vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;

  text-wrap: balance;
}

.tp-products-heading h2 span {
  color: var(--product-copper-dark);
}

.tp-products-heading p {
  max-width: 690px;
  margin: 0;

  color: var(--product-muted);

  font-size: 15px;
  line-height: 1.75;
}

/* =========================================================
   SLIDER CONTROLS
========================================================= */

.tp-products-controls {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-shrink: 0;
  padding-bottom: 4px;
}

.tp-products-arrow {
  width: 50px;
  height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(20, 23, 25, 0.12);
  border-radius: 50%;

  background: var(--product-white);
  color: var(--product-dark);

  font-size: 16px;

  box-shadow: 0 8px 22px rgba(17, 19, 21, 0.07);

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tp-products-arrow:hover:not(:disabled) {
  border-color: var(--product-dark);
  background: var(--product-dark);
  color: var(--product-copper-light);

  box-shadow: 0 13px 28px rgba(17, 19, 21, 0.18);

  transform: translateY(-3px);
}

.tp-products-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

/* =========================================================
   SLIDER
========================================================= */

.tp-products-slider {
  position: relative;
}

.tp-products-track {
  --product-gap: 22px;

  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--product-gap) * 3)) / 4);
  gap: var(--product-gap);

  padding: 4px 3px 34px;

  overflow-x: auto;
  overflow-y: visible;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;

  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.tp-products-track::-webkit-scrollbar {
  display: none;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.tp-product-card {
  position: relative;

  min-width: 0;
  min-height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid rgba(20, 23, 25, 0.09);
  border-radius: 22px;

  background: var(--product-white);

  box-shadow:
    0 16px 38px rgba(17, 19, 21, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  scroll-snap-align: start;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.tp-product-card:hover {
  border-color: rgba(207, 152, 119, 0.34);

  box-shadow:
    0 25px 52px rgba(17, 19, 21, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 1);

  transform: translateY(-8px);
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.tp-product-image {
  position: relative;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #e9e7e4;
}

.tp-product-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(180deg,
      rgba(17, 19, 21, 0.02) 35%,
      rgba(17, 19, 21, 0.6) 100%);

  pointer-events: none;
}

.tp-product-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.tp-product-card:hover .tp-product-image img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.03);
}

/* Product number */
.tp-product-number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;

  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;

  background: rgba(17, 19, 21, 0.68);
  color: var(--product-copper-light);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Image hover button */
.tp-product-image__overlay {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 4;
}

.tp-product-image__overlay a {
  width: 43px;
  height: 43px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--product-copper);
  color: var(--product-dark);

  font-size: 14px;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(17, 19, 21, 0.25);

  opacity: 0;
  transform: translateY(12px) scale(0.9);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}

.tp-product-card:hover .tp-product-image__overlay a {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tp-product-image__overlay a:hover {
  background: var(--product-copper-light);
}

/* =========================================================
   PRODUCT BODY
========================================================= */

.tp-product-body {
  min-height: 255px;

  display: flex;
  flex: 1;
  flex-direction: column;

  padding: 23px 21px 21px;
}

.tp-product-category {
  display: inline-block;

  margin-bottom: 9px;

  color: var(--product-copper-dark);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tp-product-body h3 {
  min-height: 54px;

  margin: 0 0 11px;

  color: var(--product-text);

  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.tp-product-body p {
  margin: 0 0 20px;
  color: #545758;
  font-size: 13px;
  line-height: 1.7;
}

.tp-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 15px;
  margin-top: auto;

  border-top: 1px solid var(--product-border);

  color: var(--product-text);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;

  transition: color 0.25s ease;
}

.tp-product-link i {
  width: 29px;
  height: 29px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--product-cream);
  color: var(--product-copper-dark);

  font-size: 11px;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp-product-link:hover {
  color: var(--product-copper-dark);
}

.tp-product-link:hover i {
  background: var(--product-dark);
  color: var(--product-copper-light);

  transform: translateX(4px);
}

/* =========================================================
   MOBILE CONTROLS AND PAGINATION
========================================================= */

.tp-products-mobile-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 17px;

  margin-top: 4px;
}

.tp-products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  min-width: 80px;
}

.tp-products-pagination button {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 999px;

  background: rgba(17, 19, 21, 0.2);

  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.tp-products-pagination button.active {
  width: 27px;
  background: var(--product-copper-dark);
}

/* =========================================================
   ADDITIONAL PRODUCTS PANEL
========================================================= */

.tp-product-list-panel {
  position: relative;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;

  padding: 24px 25px;
  margin-top: 45px;

  overflow: hidden;

  border: 1px solid rgba(20, 23, 25, 0.1);
  border-radius: 20px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.13),
      transparent 30%),
    var(--product-white);

  box-shadow: 0 16px 38px rgba(17, 19, 21, 0.07);
}

.tp-product-list-panel::before {
  content: "";

  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;

  width: 4px;

  border-radius: 0 10px 10px 0;

  background: var(--product-copper);
}

.tp-product-list-panel__title {
  display: flex;
  align-items: center;
  gap: 12px;

  min-width: 190px;
}

.tp-product-list-panel__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--product-dark);
  color: var(--product-copper-light);

  font-size: 18px;
}

.tp-product-list-panel__title>div {
  display: flex;
  flex-direction: column;
}

.tp-product-list-panel__title small {
  margin-bottom: 3px;

  color: var(--product-muted);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tp-product-list-panel__title strong {
  color: var(--product-text);

  font-size: 13px;
  font-weight: 800;
}

.tp-product-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.tp-product-pills a {
  display: inline-flex;
  align-items: center;

  min-height: 32px;

  padding: 0 12px;

  border: 1px solid rgba(20, 23, 25, 0.09);
  border-radius: 999px;

  background: #f7f6f4;
  color: #505457;

  font-size: 8px;
  font-weight: 700;
  text-decoration: none;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.tp-product-pills a:hover {
  border-color: var(--product-copper-dark);
  background: var(--product-copper-dark);
  color: var(--product-white);

  transform: translateY(-2px);
}

.tp-product-list-panel__button {
  min-width: 120px;
  min-height: 45px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 0 15px;

  border-radius: 11px;

  background: var(--product-dark);
  color: var(--product-white);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp-product-list-panel__button:hover {
  background: var(--product-copper-dark);
  color: var(--product-white);

  transform: translateY(-3px);
}

/* =========================================================
   LAPTOP — THREE PRODUCTS
========================================================= */

@media (max-width: 1199.98px) {
  .tp-products-track {
    grid-auto-columns: calc((100% - (var(--product-gap) * 2)) / 3);
  }

  .tp-product-body h3 {
    font-size: 19px;
  }

  .tp-product-list-panel {
    grid-template-columns: auto 1fr;
  }

  .tp-product-list-panel__button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* =========================================================
   TABLET — TWO PRODUCTS
========================================================= */

@media (max-width: 991.98px) {
  .tp-products-section {
    padding: 80px 0;
  }

  .tp-products-heading {
    align-items: flex-start;
  }

  .tp-products-heading h2 {
    font-size: clamp(38px, 6vw, 52px);
  }

  .tp-products-controls {
    display: none;
  }

  .tp-products-track {
    --product-gap: 18px;

    grid-auto-columns: calc((100% - var(--product-gap)) / 2);

    padding-bottom: 25px;
  }

  .tp-products-mobile-controls {
    display: flex;
  }

  .tp-product-list-panel {
    grid-template-columns: 1fr;
    gap: 18px;

    padding: 21px;
    margin-top: 38px;
  }

  .tp-product-list-panel__button {
    grid-column: auto;
  }
}

/* =========================================================
   MOBILE — ONE PRODUCT
========================================================= */

@media (max-width: 575.98px) {
  .tp-products-section {
    padding: 62px 0;
  }

  .tp-products-section .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tp-products-heading {
    margin-bottom: 30px;
    text-align: center;
  }

  .tp-products-heading__content {
    width: 100%;
  }

  .tp-products-eyebrow {
    margin-bottom: 15px;
  }

  .tp-products-heading h2 {
    margin-right: auto;
    margin-left: auto;

    font-size: 34px;
    letter-spacing: -1px;
  }

  .tp-products-heading p {
    margin-right: auto;
    margin-left: auto;

    font-size: 13px;
  }

  .tp-products-track {
    --product-gap: 13px;

    grid-auto-columns: 100%;

    padding-right: 1px;
    padding-left: 1px;
  }

  .tp-product-card {
    border-radius: 18px;
  }

  .tp-product-image {
    aspect-ratio: 16 / 11;
  }

  .tp-product-body {
    min-height: 230px;
    padding: 20px 18px 18px;
  }

  .tp-product-body h3 {
    min-height: auto;

    font-size: 21px;
  }

  .tp-product-body p {
    font-size: 11px;
  }

  .tp-product-image__overlay a {
    opacity: 1;
    transform: none;
  }

  .tp-products-arrow {
    width: 43px;
    height: 43px;

    font-size: 14px;
  }

  .tp-product-list-panel {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .tp-product-list-panel__title {
    min-width: 0;
  }

  .tp-product-pills {
    gap: 6px;
  }

  .tp-product-pills a {
    min-height: 31px;
    padding: 0 10px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .tp-products-heading h2 {
    font-size: 30px;
  }

  .tp-product-image {
    aspect-ratio: 4 / 3;
  }

  .tp-product-body {
    padding: 18px 16px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tp-products-section *,
  .tp-products-section *::before,
  .tp-products-section *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   TECHNO PAVERS — PROJECT QUOTATION BANNER
========================================================= */

.quote-banner {
  --quote-dark: var(--tp5-dark, #111315);
  --quote-copper: var(--tp5-copper, #cf9877);
  --quote-copper-dark: var(--tp5-copper-dark, #986247);
  --quote-copper-light: var(--tp5-copper-light, #efbc99);
  --quote-white: #ffffff;

  position: relative;
  padding: clamp(55px, 6vw, 90px) 0;
  overflow: hidden;

  background:
    linear-gradient(180deg,
      #f6f5f3 0%,
      #ffffff 100%);
}

.quote-banner .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   MAIN PANEL
========================================================= */

.quote-panel {
  position: relative;

  min-height: 310px;

  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(35px, 5vw, 80px);

  padding: clamp(40px, 5vw, 72px);

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;

  background:
    radial-gradient(circle at 10% 15%,
      rgba(207, 152, 119, 0.24),
      transparent 32%),
    radial-gradient(circle at 95% 100%,
      rgba(207, 152, 119, 0.16),
      transparent 30%),
    linear-gradient(125deg,
      #0d0f10 0%,
      #171415 52%,
      #0c0e0f 100%);

  box-shadow:
    0 30px 75px rgba(17, 19, 21, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Decorative circle */
.quote-panel::before {
  content: "";

  position: absolute;
  top: -125px;
  right: -90px;

  width: 320px;
  height: 320px;

  border: 58px solid rgba(207, 152, 119, 0.07);
  border-radius: 50%;

  pointer-events: none;
}

/* Decorative line */
.quote-panel::after {
  content: "";

  position: absolute;
  right: 42px;
  bottom: 0;

  width: 260px;
  height: 4px;

  border-radius: 20px 20px 0 0;

  background: linear-gradient(90deg,
      transparent,
      var(--quote-copper),
      var(--quote-copper-light));
}

/* =========================================================
   CONTENT
========================================================= */

.quote-panel__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.quote-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 9px 14px;
  margin-bottom: 20px;

  border: 1px solid rgba(239, 188, 153, 0.25);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.07);
  color: var(--quote-copper-light);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quote-panel__eyebrow i {
  font-size: 12px;
}

.quote-panel h2 {
  max-width: 760px;
  margin: 0 0 17px;

  color: var(--quote-white);

  font-size: clamp(38px, 4vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;

  text-wrap: balance;
}

.quote-panel h2 span {
  color: var(--quote-copper-light);
}

.quote-panel__content p {
  max-width: 650px;
  margin: 0;

  color: rgba(255, 255, 255, 0.67);

  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   CONTACT AREA
========================================================= */

.quote-contact {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 13px;
}

/* Call card */
.quote-contact__call {
  min-height: 88px;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 15px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.065);
  color: var(--quote-white);

  text-decoration: none;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.quote-contact__call:hover {
  border-color: rgba(239, 188, 153, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: var(--quote-white);

  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.18);

  transform: translateY(-3px);
}

.quote-contact__call-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: var(--quote-copper);
  color: var(--quote-dark);

  font-size: 18px;

  box-shadow: 0 10px 24px rgba(207, 152, 119, 0.25);

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.quote-contact__call:hover .quote-contact__call-icon {
  background: var(--quote-copper-light);
  transform: rotate(-6deg);
}

.quote-contact__call-content {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.quote-contact__call-content small {
  margin-bottom: 5px;

  color: rgba(255, 255, 255, 0.48);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.quote-contact__call-content strong {
  color: var(--quote-white);

  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.quote-contact__call-arrow {
  color: var(--quote-copper-light);
  font-size: 13px;

  transition: transform 0.25s ease;
}

.quote-contact__call:hover .quote-contact__call-arrow {
  transform: translate(3px, -3px);
}

/* Quotation button */
.quote-contact__button {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  padding: 6px 7px 6px 20px;

  border: 1px solid var(--quote-white);
  border-radius: 15px;

  background: var(--quote-white);
  color: var(--quote-dark);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;

  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.18);

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.quote-contact__button>i {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--quote-dark);
  color: var(--quote-copper-light);

  font-size: 14px;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.quote-contact__button:hover {
  border-color: var(--quote-copper);
  background: var(--quote-copper);
  color: var(--quote-dark);

  box-shadow: 0 18px 38px rgba(207, 152, 119, 0.22);

  transform: translateY(-3px);
}

.quote-contact__button:hover>i {
  background: var(--quote-white);
  color: var(--quote-dark);

  transform: translateX(3px);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {
  .quote-panel {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 38px;

    padding: 50px;
  }

  .quote-panel h2 {
    font-size: 46px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .quote-banner {
    padding: 70px 0;
  }

  .quote-panel {
    grid-template-columns: 1fr;
    gap: 35px;

    padding: 48px;

    text-align: center;
  }

  .quote-panel__content {
    max-width: 760px;
    margin: 0 auto;
  }

  .quote-panel h2 {
    margin-right: auto;
    margin-left: auto;

    font-size: clamp(40px, 6vw, 54px);
  }

  .quote-panel__content p {
    margin-right: auto;
    margin-left: auto;
  }

  .quote-contact {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .quote-contact__call {
    text-align: left;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .quote-banner {
    padding: 55px 0;
  }

  .quote-banner .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .quote-panel {
    min-height: auto;

    gap: 27px;

    padding: 36px 20px;

    border-radius: 22px;
  }

  .quote-panel::before {
    top: -95px;
    right: -110px;

    width: 260px;
    height: 260px;
  }

  .quote-panel::after {
    right: 20%;
    left: 20%;

    width: auto;
    height: 3px;
  }

  .quote-panel__eyebrow {
    margin-bottom: 16px;

    font-size: 8px;
    letter-spacing: 1px;
  }

  .quote-panel h2 {
    margin-bottom: 15px;

    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .quote-panel__content p {
    font-size: 12.5px;
    line-height: 1.7;
  }

  .quote-contact {
    gap: 10px;
  }

  .quote-contact__call {
    min-height: 76px;
    gap: 11px;

    padding: 11px;

    border-radius: 14px;
  }

  .quote-contact__call-icon {
    width: 45px;
    height: 45px;
    flex-basis: 45px;

    border-radius: 12px;

    font-size: 16px;
  }

  .quote-contact__call-content small {
    font-size: 7px;
  }

  .quote-contact__call-content strong {
    font-size: 14px;
  }

  .quote-contact__button {
    min-height: 53px;

    padding-left: 17px;

    border-radius: 13px;

    font-size: 9px;
  }

  .quote-contact__button>i {
    width: 39px;
    height: 39px;

    border-radius: 10px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .quote-panel {
    padding: 31px 16px;
  }

  .quote-panel h2 {
    font-size: 30px;
  }

  .quote-contact__call-content strong {
    font-size: 13px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .quote-banner *,
  .quote-banner *::before,
  .quote-banner *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   PLANT & INFRASTRUCTURE SECTION
========================================================= */

.plant-section {
  --plant-dark: #111315;
  --plant-dark-soft: #1c1d1f;
  --plant-text: #2a2d2f;
  --plant-muted: #73777a;
  --plant-copper: #cf9877;
  --plant-copper-dark: #986247;
  --plant-copper-light: #efbc99;
  --plant-cream: #f7f2ee;
  --plant-white: #ffffff;
  --plant-border: rgba(20, 23, 25, 0.1);

  position: relative;
  padding: clamp(75px, 8vw, 125px) 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 10%,
      rgba(207, 152, 119, 0.13),
      transparent 25%),
    radial-gradient(circle at 100% 95%,
      rgba(207, 152, 119, 0.08),
      transparent 25%),
    #f8f7f5;
}

.plant-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -130px;

  width: 320px;
  height: 320px;

  border: 58px solid rgba(207, 152, 119, 0.04);
  border-radius: 50%;

  pointer-events: none;
}

.plant-section .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.plant-heading {
  max-width: 920px;
  margin: 0 auto 55px;
  text-align: center;
}

.plant-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 9px 15px;
  margin-bottom: 18px;

  border: 1px solid rgba(207, 152, 119, 0.24);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.8);
  color: var(--plant-copper-dark);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.plant-eyebrow i {
  font-size: 12px;
}

.plant-heading h2 {
  margin: 0 0 18px;

  color: var(--plant-text);

  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;

  text-wrap: balance;
}

.plant-heading h2 span {
  color: var(--plant-copper-dark);
}

.plant-heading p {
  max-width: 760px;
  margin: 0 auto;

  color: var(--plant-muted);

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.plant-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr);
  align-items: stretch;
  gap: 28px;
}

/* =========================================================
   IMAGE PANEL
========================================================= */

.plant-visual {
  position: relative;
  min-height: 780px;
  padding: 18px 35px 105px 18px;
}

.plant-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 62%;
  height: 62%;

  border: 1px solid rgba(207, 152, 119, 0.3);
  border-radius: 28px 0 0 0;

  pointer-events: none;
}

.plant-visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 78px;
  z-index: -1;

  width: 78%;
  height: 74%;

  border-radius: 30px;

  background: linear-gradient(145deg,
      rgba(207, 152, 119, 0.2),
      rgba(17, 19, 21, 0.035));

  transform: rotate(4deg);
}

.plant-main-image {
  position: relative;
  z-index: 2;

  height: 680px;

  overflow: hidden;

  border-radius: 28px 28px 90px 28px;

  background: #d9d8d6;

  box-shadow:
    0 32px 76px rgba(17, 19, 21, 0.2),
    0 8px 24px rgba(17, 19, 21, 0.07);
}

.plant-main-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(180deg,
      transparent 35%,
      rgba(10, 12, 13, 0.75) 100%);

  pointer-events: none;
}

.plant-main-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center top;

  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.plant-visual:hover .plant-main-image img {
  transform: scale(1.04);
  filter: contrast(1.04) saturate(1.03);
}

.plant-image-overlay {
  position: absolute;
  right: 24px;
  bottom: 25px;
  left: 24px;
  z-index: 3;

  padding: 20px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;

  background: rgba(11, 13, 14, 0.7);
  color: var(--plant-white);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.plant-image-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 7px;

  color: var(--plant-copper-light);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plant-image-overlay strong {
  display: block;
  max-width: 440px;

  color: var(--plant-white);

  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

/* Experience badge */
.plant-experience {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 4;

  width: 125px;
  min-height: 125px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  padding: 16px;

  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;

  background: var(--plant-dark);
  color: var(--plant-white);

  text-align: center;

  box-shadow: 0 19px 42px rgba(17, 19, 21, 0.27);
}

.plant-experience::before {
  content: "";
  position: absolute;
  inset: 7px;

  border: 1px dashed rgba(239, 188, 153, 0.52);
  border-radius: 50%;
}

.plant-experience strong,
.plant-experience span {
  position: relative;
  z-index: 2;
}

.plant-experience strong {
  margin-bottom: 5px;

  color: var(--plant-copper-light);

  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.plant-experience span {
  max-width: 82px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 7px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Production card */
.plant-production-card {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 5;

  width: min(420px, 75%);
  min-height: 125px;

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 19px;

  border: 1px solid rgba(20, 23, 25, 0.09);
  border-radius: 19px;

  background: rgba(255, 255, 255, 0.97);

  box-shadow:
    0 24px 52px rgba(17, 19, 21, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.plant-production-card::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;

  width: 3px;

  border-radius: 0 10px 10px 0;

  background: var(--plant-copper);
}

.plant-production-card__icon {
  width: 55px;
  height: 55px;
  flex: 0 0 55px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: var(--plant-dark);
  color: var(--plant-copper-light);

  font-size: 21px;

  transition: transform 0.3s ease;
}

.plant-production-card:hover .plant-production-card__icon {
  transform: rotate(12deg);
}

.plant-production-card>div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.plant-production-card small {
  margin-bottom: 3px;

  color: var(--plant-copper-dark);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plant-production-card strong {
  margin-bottom: 5px;

  color: var(--plant-text);

  font-size: 14px;
  font-weight: 800;
}

.plant-production-card p {
  margin: 0;

  color: var(--plant-muted);

  font-size: 9px;
  line-height: 1.5;
}

/* =========================================================
   INFORMATION PANEL
========================================================= */

.plant-information {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: clamp(30px, 4vw, 48px);

  overflow: hidden;

  border-radius: 28px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.18),
      transparent 30%),
    linear-gradient(145deg,
      #101214 0%,
      #1d1919 58%,
      #101214 100%);

  color: var(--plant-white);

  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.2);
}

.plant-information::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -90px;

  width: 260px;
  height: 260px;

  border: 47px solid rgba(207, 152, 119, 0.06);
  border-radius: 50%;

  pointer-events: none;
}

.plant-information::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 0;

  width: 210px;
  height: 4px;

  border-radius: 20px 20px 0 0;

  background: linear-gradient(90deg,
      transparent,
      var(--plant-copper),
      var(--plant-copper-light));
}

.plant-information__top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 14px;

  padding-bottom: 21px;
  margin-bottom: 19px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plant-information__icon {
  width: 53px;
  height: 53px;
  flex: 0 0 53px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: var(--plant-copper);
  color: var(--plant-dark);

  font-size: 20px;
}

.plant-information__top>div {
  display: flex;
  flex-direction: column;
}

.plant-information__top small {
  margin-bottom: 4px;

  color: var(--plant-copper-light);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.plant-information__top h3 {
  margin: 0;

  color: var(--plant-white);

  font-size: 24px;
  font-weight: 800;
}

.plant-information__intro {
  position: relative;
  z-index: 2;

  margin: 0 0 23px;

  color: rgba(255, 255, 255, 0.63);

  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   TEST FACILITIES
========================================================= */

.plant-test-list {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 9px;
}

.plant-test-item {
  position: relative;

  min-height: 104px;

  display: grid;
  grid-template-columns: 32px 44px 1fr;
  align-items: center;
  gap: 12px;

  padding: 14px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.045);

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.plant-test-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 0;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(207, 152, 119, 0.08));

  transition: width 0.35s ease;
}

.plant-test-item:hover {
  border-color: rgba(239, 188, 153, 0.35);
  background: rgba(255, 255, 255, 0.07);

  transform: translateX(5px);
}

.plant-test-item:hover::after {
  width: 42%;
}

.plant-test-number {
  position: relative;
  z-index: 2;

  color: rgba(239, 188, 153, 0.4);

  font-size: 10px;
  font-weight: 800;
}

.plant-test-icon {
  position: relative;
  z-index: 2;

  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(207, 152, 119, 0.13);
  color: var(--plant-copper-light);

  font-size: 17px;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.plant-test-item:hover .plant-test-icon {
  background: var(--plant-copper);
  color: var(--plant-dark);

  transform: rotate(-5deg);
}

.plant-test-item>div {
  position: relative;
  z-index: 2;
}

.plant-test-item h4 {
  margin: 0 0 5px;

  color: var(--plant-white);

  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.plant-test-item p {
  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 9px;
  line-height: 1.55;
}

/* Catalogue button */
.plant-catalogue-button {
  position: relative;
  z-index: 2;

  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 7px 8px 7px 19px;
  margin-top: 23px;

  border-radius: 13px;

  background: var(--plant-white);
  color: var(--plant-dark);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.plant-catalogue-button i {
  width: 39px;
  height: 39px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: var(--plant-dark);
  color: var(--plant-copper-light);

  font-size: 13px;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.plant-catalogue-button:hover {
  background: var(--plant-copper);
  color: var(--plant-dark);

  box-shadow: 0 15px 32px rgba(207, 152, 119, 0.21);

  transform: translateY(-3px);
}

.plant-catalogue-button:hover i {
  background: var(--plant-white);
  color: var(--plant-dark);

  transform: translate(2px, -2px);
}

/* =========================================================
   MANUFACTURING CONTROLS
========================================================= */

.plant-controls {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;

  padding: 25px;
  margin-top: 34px;

  border: 1px solid var(--plant-border);
  border-radius: 20px;

  background: var(--plant-white);

  box-shadow: 0 16px 38px rgba(17, 19, 21, 0.07);
}

.plant-controls__heading {
  min-width: 245px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding-right: 28px;

  border-right: 1px solid var(--plant-border);
}

.plant-controls__heading>span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--plant-dark);
  color: var(--plant-copper-light);

  font-size: 18px;
}

.plant-controls__heading>div {
  display: flex;
  flex-direction: column;
}

.plant-controls__heading small {
  margin-bottom: 4px;

  color: var(--plant-copper-dark);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plant-controls__heading strong {
  color: var(--plant-text);

  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.plant-controls__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.plant-control-item {
  min-height: 73px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;

  padding: 10px;

  border: 1px solid rgba(20, 23, 25, 0.08);
  border-radius: 12px;

  background: #faf9f7;

  color: var(--plant-muted);
  text-align: center;

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.plant-control-item i {
  color: var(--plant-copper-dark);
  font-size: 16px;
}

.plant-control-item span {
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.plant-control-item:hover {
  border-color: var(--plant-dark);
  background: var(--plant-dark);
  color: var(--plant-white);

  transform: translateY(-4px);
}

.plant-control-item:hover i {
  color: var(--plant-copper-light);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {
  .plant-layout {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
    gap: 22px;
  }

  .plant-visual {
    min-height: 730px;
  }

  .plant-main-image {
    height: 625px;
  }

  .plant-information {
    padding: 32px;
  }

  .plant-controls__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .plant-section {
    padding: 80px 0;
  }

  .plant-heading {
    margin-bottom: 45px;
  }

  .plant-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .plant-visual {
    max-width: 750px;
    min-height: 735px;
    margin: 0 auto;
  }

  .plant-main-image {
    height: 625px;
  }

  .plant-information {
    max-width: 750px;
    margin: 0 auto;
  }

  .plant-controls {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plant-controls__heading {
    min-width: 0;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--plant-border);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .plant-section {
    padding: 62px 0;
  }

  .plant-section .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .plant-heading {
    margin-bottom: 36px;
  }

  .plant-heading h2 {
    font-size: clamp(33px, 9vw, 44px);
    letter-spacing: -1px;
  }

  .plant-heading p {
    font-size: 13px;
  }

  .plant-layout {
    gap: 50px;
  }

  .plant-visual {
    min-height: 590px;
    padding: 8px 7px 115px;
  }

  .plant-visual::before {
    width: 72%;
    height: 57%;
  }

  .plant-main-image {
    height: 470px;

    border-radius: 21px 21px 58px 21px;
  }

  .plant-image-overlay {
    right: 15px;
    bottom: 15px;
    left: 15px;

    padding: 14px;
  }

  .plant-image-overlay strong {
    font-size: 12px;
  }

  .plant-experience {
    top: 23px;
    right: 0;

    width: 101px;
    min-height: 101px;

    border-width: 5px;
  }

  .plant-experience strong {
    font-size: 22px;
  }

  .plant-experience span {
    max-width: 68px;
    font-size: 6px;
  }

  .plant-production-card {
    right: 12px;
    bottom: 0;
    left: 12px;

    width: auto;
    min-height: 104px;

    padding: 15px;
  }

  .plant-production-card__icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;

    border-radius: 12px;

    font-size: 18px;
  }

  .plant-production-card strong {
    font-size: 12px;
  }

  .plant-production-card p {
    font-size: 8.5px;
  }

  .plant-information {
    padding: 27px 18px;

    border-radius: 22px;
  }

  .plant-information__top {
    align-items: center;
    flex-direction: column;

    text-align: center;
  }

  .plant-information__top h3 {
    font-size: 21px;
  }

  .plant-information__intro {
    text-align: center;
  }

  .plant-test-item {
    min-height: 116px;

    grid-template-columns: 25px 40px 1fr;
    gap: 9px;

    padding: 12px;
  }

  .plant-test-icon {
    width: 40px;
    height: 40px;

    font-size: 15px;
  }

  .plant-test-item h4 {
    font-size: 11px;
  }

  .plant-test-item p {
    font-size: 8.5px;
  }

  .plant-test-item:hover {
    transform: translateY(-2px);
  }

  .plant-controls {
    padding: 18px;
  }

  .plant-controls__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .plant-heading h2 {
    font-size: 32px;
  }

  .plant-main-image {
    height: 420px;
  }

  .plant-visual {
    min-height: 542px;
  }

  .plant-test-item {
    grid-template-columns: 22px 38px 1fr;
  }

  .plant-test-icon {
    width: 38px;
    height: 38px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .plant-heading h2 {
    font-size: 29px;
  }

  .plant-main-image {
    height: 375px;
  }

  .plant-visual {
    min-height: 505px;
  }

  .plant-information {
    padding: 24px 14px;
  }

  .plant-test-item {
    grid-template-columns: 1fr;
    gap: 8px;

    text-align: center;
  }

  .plant-test-number {
    display: none;
  }

  .plant-test-icon {
    margin: 0 auto;
  }

  .plant-controls__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .plant-section *,
  .plant-section *::before,
  .plant-section *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

.parar {
  font-size: 12px !important;
}


/* =========================================================
   TECHNO PAVERS — WHY CHOOSE US SECTION
========================================================= */

.tp-why-section {
  --why-dark: #0f1112;
  --why-dark-soft: #17191b;
  --why-card: rgba(255, 255, 255, 0.055);
  --why-white: #ffffff;
  --why-copper: #cf9877;
  --why-copper-light: #efbc99;
  --why-muted: rgba(255, 255, 255, 0.62);
  --why-border: rgba(255, 255, 255, 0.1);

  position: relative;
  padding: clamp(80px, 8vw, 125px) 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 7% 10%,
      rgba(207, 152, 119, 0.18),
      transparent 29%),
    radial-gradient(circle at 96% 92%,
      rgba(207, 152, 119, 0.11),
      transparent 26%),
    linear-gradient(135deg,
      #0a0c0d 0%,
      #171414 50%,
      #0d0f10 100%);
}

/* Decorative background ring */
.tp-why-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -130px;

  width: 410px;
  height: 410px;

  border: 70px solid rgba(207, 152, 119, 0.045);
  border-radius: 50%;

  pointer-events: none;
}

/* Bottom accent */
.tp-why-section::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 0;

  width: 300px;
  height: 4px;

  border-radius: 20px 20px 0 0;

  background: linear-gradient(90deg,
      transparent,
      var(--why-copper),
      var(--why-copper-light));
}

.tp-why-section .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.tp-why-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(45px, 6vw, 95px);
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.tp-why-content {
  max-width: 620px;
}

.tp-why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 9px 14px;
  margin-bottom: 20px;

  border: 1px solid rgba(239, 188, 153, 0.26);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.07);
  color: var(--why-copper-light);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tp-why-eyebrow i {
  font-size: 13px;
}

.tp-why-content h2 {
  max-width: 620px;
  margin: 0 0 22px;

  color: var(--why-white);

  font-size: clamp(40px, 4.3vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;

  text-wrap: balance;
}

.tp-why-content h2 span {
  color: var(--why-copper-light);
}

.tp-why-content>p {
  max-width: 580px;
  margin: 0 0 28px;

  color: var(--why-muted);

  font-size: 14px;
  line-height: 1.85;
}

/* =========================================================
   HIGHLIGHT CARD
========================================================= */

.tp-why-highlight {
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 13px;

  padding: 15px;
  margin-bottom: 28px;

  border: 1px solid var(--why-border);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.055);

  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.tp-why-highlight__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--why-copper);
  color: var(--why-dark);

  font-size: 19px;

  box-shadow: 0 10px 25px rgba(207, 152, 119, 0.22);
}

.tp-why-highlight>div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.tp-why-highlight small {
  margin-bottom: 4px;

  color: var(--why-copper-light);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tp-why-highlight strong {
  color: var(--why-white);

  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

/* =========================================================
   MAIN BUTTON
========================================================= */

.tp-why-button {
  min-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 6px 7px 6px 20px;

  border-radius: 14px;

  background: var(--why-copper);
  color: var(--why-dark);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;

  box-shadow: 0 14px 32px rgba(207, 152, 119, 0.2);

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tp-why-button>i {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: var(--why-dark);
  color: var(--why-copper-light);

  font-size: 14px;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp-why-button:hover {
  background: var(--why-copper-light);
  color: var(--why-dark);

  box-shadow: 0 18px 38px rgba(207, 152, 119, 0.28);

  transform: translateY(-3px);
}

.tp-why-button:hover>i {
  background: var(--why-white);
  color: var(--why-dark);

  transform: translate(2px, -2px);
}

/* =========================================================
   FEATURE GRID
========================================================= */

.tp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

/* =========================================================
   FEATURE CARD
========================================================= */

.tp-why-card {
  position: relative;
  min-height: 285px;

  display: flex;
  flex-direction: column;

  padding: 25px;

  overflow: hidden;

  border: 1px solid var(--why-border);
  border-radius: 21px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.09),
      transparent 30%),
    var(--why-card);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Animated bottom border */
.tp-why-card::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;

  height: 3px;

  background: var(--why-copper);

  transition:
    right 0.3s ease,
    left 0.3s ease;
}

/* Background circle */
.tp-why-card::after {
  content: "";
  position: absolute;
  top: -55px;
  right: -55px;

  width: 135px;
  height: 135px;

  border: 23px solid rgba(207, 152, 119, 0.045);
  border-radius: 50%;

  transition: transform 0.35s ease;
}

.tp-why-card:hover {
  border-color: rgba(239, 188, 153, 0.34);

  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.14),
      transparent 34%),
    rgba(255, 255, 255, 0.075);

  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  transform: translateY(-7px);
}

.tp-why-card:hover::before {
  right: 21px;
  left: 21px;
}

.tp-why-card:hover::after {
  transform: scale(1.12) rotate(8deg);
}

/* =========================================================
   CARD TOP
========================================================= */

.tp-why-card__top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  margin-bottom: 24px;
}

.tp-why-card__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(239, 188, 153, 0.18);
  border-radius: 15px;

  background: rgba(207, 152, 119, 0.12);
  color: var(--why-copper-light);

  font-size: 21px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.tp-why-card:hover .tp-why-card__icon {
  background: var(--why-copper);
  color: var(--why-dark);

  transform: rotate(-6deg) scale(1.04);
}

.tp-why-card__label {
  padding: 7px 10px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.46);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* =========================================================
   CARD TEXT
========================================================= */

.tp-why-card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 12px;

  color: var(--why-white);

  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.tp-why-card>p {
  position: relative;
  z-index: 2;

  margin: 0 0 22px;

  color: rgba(255, 255, 255, 0.56);

  font-size: 12px;
  line-height: 1.75;
}

/* =========================================================
   CARD FOOTER
========================================================= */

.tp-why-card__footer {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding-top: 16px;
  margin-top: auto;

  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.tp-why-card__footer span {
  color: rgba(255, 255, 255, 0.5);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.tp-why-card__footer i {
  width: 31px;
  height: 31px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(207, 152, 119, 0.12);
  color: var(--why-copper-light);

  font-size: 11px;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.tp-why-card:hover .tp-why-card__footer i {
  background: var(--why-copper);
  color: var(--why-dark);

  transform: translate(2px, -2px);
}

/* =========================================================
   BOTTOM INFORMATION STRIP
========================================================= */

.tp-why-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: 55px;

  overflow: hidden;

  border: 1px solid var(--why-border);
  border-radius: 19px;

  background: rgba(255, 255, 255, 0.055);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tp-why-strip__item {
  position: relative;
  min-height: 100px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 19px;
}

.tp-why-strip__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 22%;

  width: 1px;

  background: rgba(255, 255, 255, 0.1);
}

.tp-why-strip__item>i {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(207, 152, 119, 0.13);
  color: var(--why-copper-light);

  font-size: 17px;
}

.tp-why-strip__item>span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.tp-why-strip__item small {
  margin-bottom: 4px;

  color: rgba(255, 255, 255, 0.42);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tp-why-strip__item strong {
  color: var(--why-white);

  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {
  .tp-why-layout {
    grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
    gap: 42px;
  }

  .tp-why-content h2 {
    font-size: 47px;
  }

  .tp-why-card {
    min-height: 295px;
    padding: 21px;
  }

  .tp-why-card h3 {
    font-size: 19px;
  }

  .tp-why-strip__item {
    padding: 15px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .tp-why-section {
    padding: 80px 0;
  }

  .tp-why-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .tp-why-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .tp-why-content h2 {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;

    font-size: clamp(40px, 6vw, 54px);
  }

  .tp-why-content>p {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
  }

  .tp-why-highlight {
    margin-right: auto;
    margin-left: auto;

    text-align: left;
  }

  .tp-why-grid {
    max-width: 820px;
    margin: 0 auto;
  }

  .tp-why-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-why-strip__item:nth-child(2)::after {
    display: none;
  }

  .tp-why-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .tp-why-section {
    padding: 62px 0;
  }

  .tp-why-section .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tp-why-layout {
    gap: 38px;
  }

  .tp-why-content h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .tp-why-content>p {
    font-size: 13px;
    line-height: 1.75;
  }

  .tp-why-highlight {
    align-items: flex-start;
    padding: 13px;
  }

  .tp-why-highlight__icon {
    width: 43px;
    height: 43px;
    flex-basis: 43px;

    font-size: 17px;
  }

  .tp-why-button {
    width: 100%;
  }

  .tp-why-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .tp-why-card {
    min-height: 250px;
    padding: 20px;

    border-radius: 17px;
  }

  .tp-why-card:hover {
    transform: translateY(-3px);
  }

  .tp-why-card__top {
    margin-bottom: 19px;
  }

  .tp-why-card__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;

    border-radius: 13px;

    font-size: 18px;
  }

  .tp-why-card h3 {
    font-size: 19px;
  }

  .tp-why-card>p {
    font-size: 10px;
  }

  .tp-why-strip {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .tp-why-strip__item {
    min-height: 82px;
  }

  .tp-why-strip__item:not(:last-child)::after {
    top: auto;
    right: 15px;
    bottom: 0;
    left: 15px;

    width: auto;
    height: 1px;
  }

  .tp-why-strip__item:nth-child(-n + 2) {
    border-bottom: 0;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .tp-why-content h2 {
    font-size: 30px;
  }

  .tp-why-eyebrow {
    font-size: 8px;
  }

  .tp-why-card__label {
    font-size: 6.5px;
  }

  .tp-why-highlight strong {
    font-size: 10px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tp-why-section *,
  .tp-why-section *::before,
  .tp-why-section *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   TECHNO PAVERS — CLIENT LOGO SLIDER
========================================================= */

.tp-clients-section {
  --clients-dark: #111315;
  --clients-text: #292c2e;
  --clients-muted: #74787b;
  --clients-copper: #cf9877;
  --clients-copper-dark: #986247;
  --clients-copper-light: #efbc99;
  --clients-cream: #f8f3ef;
  --clients-white: #ffffff;
  --clients-border: rgba(20, 23, 25, 0.1);
  --clients-gap: 18px;

  position: relative;
  padding: clamp(70px, 8vw, 115px) 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 15%,
      rgba(207, 152, 119, 0.13),
      transparent 27%),
    radial-gradient(circle at 100% 90%,
      rgba(207, 152, 119, 0.08),
      transparent 25%),
    #f7f6f4;
}

.tp-clients-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -130px;

  width: 330px;
  height: 330px;

  border: 58px solid rgba(207, 152, 119, 0.04);
  border-radius: 50%;

  pointer-events: none;
}

.tp-clients-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;

  width: min(420px, 55%);
  height: 3px;

  border-radius: 20px 20px 0 0;

  background: linear-gradient(90deg,
      transparent,
      var(--clients-copper),
      transparent);

  transform: translateX(-50%);
}

.tp-clients-section .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.tp-clients-heading {
  max-width: 900px;
  margin: 0 auto 43px;
  text-align: center;
}

.tp-clients-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 8px 14px;
  margin-bottom: 18px;

  border: 1px solid rgba(207, 152, 119, 0.24);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.75);
  color: var(--clients-copper-dark);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.tp-clients-eyebrow i {
  font-size: 12px;
}

.tp-clients-heading h2 {
  margin: 0 0 17px;

  color: var(--clients-text);

  font-size: clamp(37px, 4.3vw, 61px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;

  text-wrap: balance;
}

.tp-clients-heading h2 span {
  color: var(--clients-copper-dark);
}

.tp-clients-heading p {
  max-width: 700px;
  margin: 0 auto;

  color: var(--clients-muted);

  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   SLIDER WRAPPER
========================================================= */

.tp-clients-slider {
  position: relative;

  padding: 19px 0;

  overflow: hidden;

  border: 1px solid var(--clients-border);
  border-radius: 24px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.82));

  box-shadow:
    0 20px 48px rgba(17, 19, 21, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Fade overlays */
.tp-clients-slider__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;

  width: 100px;

  pointer-events: none;
}

.tp-clients-slider__fade--left {
  left: 0;

  background: linear-gradient(90deg,
      #fefefe 10%,
      rgba(254, 254, 254, 0));
}

.tp-clients-slider__fade--right {
  right: 0;

  background: linear-gradient(270deg,
      #fefefe 10%,
      rgba(254, 254, 254, 0));
}

/* =========================================================
   ANIMATED TRACK
========================================================= */

.tp-clients-track {
  width: max-content;

  display: flex;
  align-items: center;
  gap: var(--clients-gap);

  padding: 4px 0;

  animation: tpClientsScroll 34s linear infinite;
  will-change: transform;
}

.tp-clients-slider:hover .tp-clients-track,
.tp-clients-slider:focus-within .tp-clients-track {
  animation-play-state: paused;
}

.tp-clients-group {
  display: flex;
  align-items: stretch;
  gap: var(--clients-gap);

  flex-shrink: 0;
}

/* =========================================================
   CLIENT LOGO CARD
========================================================= */

.tp-client-card {
  position: relative;

  width: 205px;
  height: 125px;
  flex: 0 0 205px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 21px;

  overflow: hidden;

  border: 1px solid rgba(20, 23, 25, 0.09);
  border-radius: 17px;

  background: var(--clients-white);
  color: inherit;
  text-decoration: none;

  box-shadow:
    0 10px 27px rgba(17, 19, 21, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.tp-client-card::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;

  height: 3px;

  background: var(--clients-copper);

  transition:
    right 0.28s ease,
    left 0.28s ease;
}

.tp-client-card::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -48px;

  width: 105px;
  height: 105px;

  border: 19px solid rgba(207, 152, 119, 0.05);
  border-radius: 50%;

  transition: transform 0.3s ease;
}

.tp-client-card:hover {
  border-color: rgba(207, 152, 119, 0.35);

  box-shadow:
    0 18px 38px rgba(17, 19, 21, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);

  transform: translateY(-5px);
}

.tp-client-card:hover::before {
  right: 18px;
  left: 18px;
}

.tp-client-card:hover::after {
  transform: scale(1.1);
}

.tp-client-card img {
  position: relative;
  z-index: 2;

  display: block;

  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 120px;

  object-fit: contain;

  /* filter: grayscale(1); */
  opacity: 0.68;

  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.tp-client-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

/* =========================================================
   BOTTOM INFORMATION PANEL
========================================================= */

.tp-clients-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;

  padding: 20px 22px;
  margin-top: 30px;

  overflow: hidden;

  border: 1px solid var(--clients-border);
  border-radius: 19px;

  background: var(--clients-white);

  box-shadow: 0 15px 38px rgba(17, 19, 21, 0.07);
}

.tp-clients-footer__item {
  position: relative;

  min-height: 58px;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 4px 20px;
}

.tp-clients-footer__item:first-child {
  padding-left: 0;
}

.tp-clients-footer__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 13%;
  right: 0;
  bottom: 13%;

  width: 1px;

  background: var(--clients-border);
}

.tp-clients-footer__item>i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(207, 152, 119, 0.13);
  color: var(--clients-copper-dark);

  font-size: 17px;
}

.tp-clients-footer__item>span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.tp-clients-footer__item small {
  margin-bottom: 4px;

  color: var(--clients-muted);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.tp-clients-footer__item strong {
  color: var(--clients-text);

  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}

.tp-clients-footer__button {
  min-width: 165px;
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 6px 7px 6px 17px;

  border-radius: 12px;

  background: var(--clients-dark);
  color: var(--clients-white);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tp-clients-footer__button i {
  width: 35px;
  height: 35px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--clients-copper);
  color: var(--clients-dark);

  font-size: 12px;

  transition: transform 0.25s ease;
}

.tp-clients-footer__button:hover {
  background: var(--clients-copper-dark);
  color: var(--clients-white);

  box-shadow: 0 13px 28px rgba(152, 98, 71, 0.22);

  transform: translateY(-3px);
}

.tp-clients-footer__button:hover i {
  transform: translate(2px, -2px);
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes tpClientsScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - (var(--clients-gap) / 2)),
        0,
        0);
  }
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {
  .tp-client-card {
    width: 185px;
    height: 115px;
    flex-basis: 185px;
  }

  .tp-client-card img {
    max-height: 65px;
  }

  .tp-clients-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .tp-clients-footer__button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 10px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .tp-clients-section {
    padding: 78px 0;
  }

  .tp-clients-heading h2 {
    font-size: clamp(38px, 6vw, 52px);
  }

  .tp-clients-slider__fade {
    width: 65px;
  }

  .tp-client-card {
    width: 170px;
    height: 108px;
    flex-basis: 170px;
  }

  .tp-clients-footer {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .tp-clients-footer__item {
    padding: 13px 4px;
  }

  .tp-clients-footer__item:first-child {
    padding-left: 4px;
  }

  .tp-clients-footer__item:not(:last-of-type)::after {
    top: auto;
    right: 4px;
    bottom: 0;
    left: 4px;

    width: auto;
    height: 1px;
  }

  .tp-clients-footer__button {
    grid-column: auto;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .tp-clients-section {
    --clients-gap: 10px;

    padding: 60px 0;
  }

  .tp-clients-section .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tp-clients-heading {
    margin-bottom: 30px;
  }

  .tp-clients-heading h2 {
    font-size: 33px;
    letter-spacing: -1px;
  }

  .tp-clients-heading p {
    font-size: 13px;
    line-height: 1.7;
  }

  .tp-clients-slider {
    padding: 13px 0;
    border-radius: 18px;
  }

  .tp-clients-slider__fade {
    width: 35px;
  }

  .tp-client-card {
    width: 142px;
    height: 94px;
    flex-basis: 142px;

    padding: 16px;

    border-radius: 14px;
  }

  .tp-client-card img {
    max-height: 53px;
  }

  .tp-clients-footer {
    margin-top: 22px;
    border-radius: 16px;
  }

  .tp-clients-footer__item>i {
    width: 39px;
    height: 39px;
    flex-basis: 39px;

    font-size: 15px;
  }

  .tp-clients-footer__button {
    min-height: 47px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .tp-clients-heading h2 {
    font-size: 29px;
  }

  .tp-client-card {
    width: 128px;
    height: 88px;
    flex-basis: 128px;
  }

  .tp-client-card img {
    max-height: 48px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tp-clients-track {
    animation: none;
  }

  .tp-clients-section *,
  .tp-clients-section *::before,
  .tp-clients-section *::after {
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   TECHNO PAVERS — FILTERABLE GALLERY
========================================================= */

.tp-gallery-section {
  --gallery-dark: #111315;
  --gallery-text: #292c2e;
  --gallery-muted: #74787b;
  --gallery-copper: #cf9877;
  --gallery-copper-dark: #986247;
  --gallery-copper-light: #efbc99;
  --gallery-cream: #f8f3ef;
  --gallery-white: #ffffff;
  --gallery-border: rgba(20, 23, 25, 0.1);

  position: relative;
  padding: clamp(75px, 8vw, 120px) 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 10%,
      rgba(207, 152, 119, 0.13),
      transparent 27%),
    radial-gradient(circle at 100% 90%,
      rgba(207, 152, 119, 0.08),
      transparent 25%),
    #f7f6f4;
}

.tp-gallery-section::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -130px;

  width: 340px;
  height: 340px;

  border: 60px solid rgba(207, 152, 119, 0.04);
  border-radius: 50%;

  pointer-events: none;
}

.tp-gallery-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;

  width: min(420px, 55%);
  height: 3px;

  border-radius: 20px 20px 0 0;

  background: linear-gradient(90deg,
      transparent,
      var(--gallery-copper),
      transparent);

  transform: translateX(-50%);
}

.tp-gallery-section .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.tp-gallery-heading {
  max-width: 900px;
  margin: 0 auto 35px;
  text-align: center;
}

.tp-gallery-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 8px 14px;
  margin-bottom: 18px;

  border: 1px solid rgba(207, 152, 119, 0.24);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.78);
  color: var(--gallery-copper-dark);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.tp-gallery-heading h2 {
  margin: 0 0 17px;

  color: var(--gallery-text);

  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;

  text-wrap: balance;
}

.tp-gallery-heading h2 span {
  color: var(--gallery-copper-dark);
}

.tp-gallery-heading p {
  max-width: 720px;
  margin: 0 auto;

  color: var(--gallery-muted);

  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   TABS
========================================================= */

.tp-gallery-tabs {
  width: fit-content;
  max-width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 7px;
  margin: 0 auto 40px;

  overflow-x: auto;

  border: 1px solid var(--gallery-border);
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.88);

  box-shadow: 0 13px 34px rgba(17, 19, 21, 0.07);

  scrollbar-width: none;
}

.tp-gallery-tabs::-webkit-scrollbar {
  display: none;
}

.tp-gallery-tab {
  min-height: 47px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 0 16px;

  border: 0;
  border-radius: 11px;

  background: transparent;
  color: var(--gallery-muted);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.tp-gallery-tab i {
  font-size: 13px;
}

.tp-gallery-tab small {
  min-width: 23px;
  height: 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(17, 19, 21, 0.07);
  color: inherit;

  font-size: 7px;
}

.tp-gallery-tab:hover,
.tp-gallery-tab.active {
  background: var(--gallery-dark);
  color: var(--gallery-white);

  box-shadow: 0 10px 22px rgba(17, 19, 21, 0.17);

  transform: translateY(-2px);
}

.tp-gallery-tab.active small {
  background: var(--gallery-copper);
  color: var(--gallery-dark);
}

/* =========================================================
   GALLERY GRID
========================================================= */

.tp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  gap: 16px;
}

.tp-gallery-item {
  min-width: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.tp-gallery-item--wide {
  grid-column: span 2;
}

.tp-gallery-item--tall {
  grid-row: span 2;
}

.tp-gallery-item.is-hidden {
  display: none;
}

.tp-gallery-item.is-filtering {
  opacity: 0;
  transform: scale(0.94);
}

/* =========================================================
   GALLERY CARD
========================================================= */

.tp-gallery-card {
  position: relative;

  width: 100%;
  height: 100%;

  display: block;
  padding: 0;

  overflow: hidden;

  border: 0;
  border-radius: 20px;

  background: #dedbd8;

  text-align: left;

  box-shadow:
    0 17px 42px rgba(17, 19, 21, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  cursor: pointer;

  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.tp-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: inherit;

  pointer-events: none;
}

.tp-gallery-card::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  z-index: 4;

  height: 4px;

  background: var(--gallery-copper);

  transition:
    right 0.35s ease,
    left 0.35s ease;
}

.tp-gallery-card:hover {
  box-shadow:
    0 27px 58px rgba(17, 19, 21, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);

  transform: translateY(-7px);
}

.tp-gallery-card:hover::after {
  right: 20px;
  left: 20px;
}

.tp-gallery-card>img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    filter 0.55s ease,
    transform 0.55s ease;
}

.tp-gallery-card:hover>img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.075);
}

.tp-gallery-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(180deg,
      rgba(7, 9, 10, 0.05) 25%,
      rgba(7, 9, 10, 0.84) 100%);
}

/* Category */
.tp-gallery-card__category {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 11px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;

  background: rgba(11, 13, 14, 0.58);
  color: var(--gallery-white);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;

  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

.tp-gallery-card__category i {
  color: var(--gallery-copper-light);
}

/* Content */
.tp-gallery-card__content {
  position: absolute;
  right: 65px;
  bottom: 19px;
  left: 19px;
  z-index: 2;

  display: flex;
  flex-direction: column;
}

.tp-gallery-card__content small {
  margin-bottom: 5px;

  color: var(--gallery-copper-light);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tp-gallery-card__content strong {
  color: var(--gallery-white);

  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;

  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

/* Open icon */
.tp-gallery-card__open {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;

  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
  color: var(--gallery-white);

  font-size: 13px;

  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.tp-gallery-card:hover .tp-gallery-card__open {
  border-color: var(--gallery-copper);
  background: var(--gallery-copper);
  color: var(--gallery-dark);

  transform: rotate(8deg) scale(1.06);
}

/* =========================================================
   LIGHTBOX
========================================================= */

.tp-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 11000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;

  visibility: hidden;
  opacity: 0;

  transition:
    visibility 0.3s ease,
    opacity 0.3s ease;
}

.tp-gallery-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.tp-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  padding: 0;
  border: 0;

  background: rgba(6, 8, 9, 0.88);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tp-gallery-lightbox__dialog {
  position: relative;
  z-index: 2;

  width: min(1050px, 100%);
  max-height: calc(100vh - 50px);

  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background: var(--gallery-dark);

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);

  transform: translateY(22px) scale(0.97);

  transition: transform 0.35s ease;
}

.tp-gallery-lightbox.is-open .tp-gallery-lightbox__dialog {
  transform: translateY(0) scale(1);
}

.tp-gallery-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;

  width: 43px;
  height: 43px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  background: rgba(17, 19, 21, 0.68);
  color: var(--gallery-white);

  font-size: 15px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp-gallery-lightbox__close:hover {
  background: var(--gallery-copper);
  color: var(--gallery-dark);

  transform: rotate(90deg);
}

.tp-gallery-lightbox__image {
  min-height: 580px;

  background: #090b0c;
}

.tp-gallery-lightbox__image img {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 580px;
  max-height: calc(100vh - 50px);

  object-fit: contain;
}

.tp-gallery-lightbox__content {
  display: flex;
  justify-content: center;
  flex-direction: column;

  padding: 45px 30px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.2),
      transparent 35%),
    var(--gallery-dark);
}

.tp-gallery-lightbox__content>span {
  margin-bottom: 9px;

  color: var(--gallery-copper-light);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.tp-gallery-lightbox__content h3 {
  margin: 0 0 13px;

  color: var(--gallery-white);

  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
}

.tp-gallery-lightbox__content p {
  margin: 0;

  color: rgba(255, 255, 255, 0.6);

  font-size: 11px;
  line-height: 1.7;
}

body.tp-gallery-lightbox-open {
  overflow: hidden;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {
  .tp-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tp-gallery-lightbox__dialog {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .tp-gallery-section {
    padding: 78px 0;
  }

  .tp-gallery-heading h2 {
    font-size: clamp(38px, 6vw, 52px);
  }

  .tp-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .tp-gallery-item--wide {
    grid-column: span 2;
  }

  .tp-gallery-item--tall {
    grid-row: span 1;
  }

  .tp-gallery-lightbox__dialog {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .tp-gallery-lightbox__image,
  .tp-gallery-lightbox__image img {
    min-height: 460px;
    max-height: 65vh;
  }

  .tp-gallery-lightbox__content {
    padding: 25px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .tp-gallery-section {
    padding: 60px 0;
  }

  .tp-gallery-section .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tp-gallery-heading {
    margin-bottom: 27px;
  }

  .tp-gallery-heading h2 {
    font-size: 33px;
    letter-spacing: -1px;
  }

  .tp-gallery-heading p {
    font-size: 13px;
    line-height: 1.7;
  }

  .tp-gallery-tabs {
    width: 100%;
    justify-content: flex-start;

    padding: 6px;
    margin-bottom: 28px;

    border-radius: 14px;
  }

  .tp-gallery-tab {
    min-height: 43px;
    padding: 0 13px;

    font-size: 8px;
  }

  .tp-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
    gap: 12px;
  }

  .tp-gallery-item--wide,
  .tp-gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .tp-gallery-card {
    border-radius: 17px;
  }

  .tp-gallery-card:hover {
    transform: translateY(-3px);
  }

  .tp-gallery-card__content strong {
    font-size: 16px;
  }

  .tp-gallery-lightbox {
    padding: 12px;
  }

  .tp-gallery-lightbox__dialog {
    max-height: calc(100vh - 24px);
    border-radius: 18px;
  }

  .tp-gallery-lightbox__image,
  .tp-gallery-lightbox__image img {
    min-height: 350px;
    max-height: 64vh;
  }

  .tp-gallery-lightbox__content {
    padding: 22px 18px;
  }

  .tp-gallery-lightbox__content h3 {
    font-size: 22px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .tp-gallery-heading h2 {
    font-size: 29px;
  }

  .tp-gallery-grid {
    grid-auto-rows: 240px;
  }

  .tp-gallery-tab {
    padding: 0 10px;
  }

  .tp-gallery-tab small {
    display: none;
  }

  .tp-gallery-lightbox__image,
  .tp-gallery-lightbox__image img {
    min-height: 290px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tp-gallery-section *,
  .tp-gallery-section *::before,
  .tp-gallery-section *::after,
  .tp-gallery-lightbox *,
  .tp-gallery-lightbox *::before,
  .tp-gallery-lightbox *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   CLIENT TESTIMONIALS — NEW DESIGN
========================================================= */

.tp-review-section {
  --review-dark: #101213;
  --review-dark-soft: #191b1d;
  --review-text: #292c2e;
  --review-muted: #74787b;
  --review-copper: #cf9877;
  --review-copper-dark: #986247;
  --review-copper-light: #efbc99;
  --review-white: #ffffff;
  --review-cream: #f7f3ef;
  --review-border: rgba(20, 23, 25, 0.1);
  --review-gap: 18px;
  --review-visible: 2;

  position: relative;
  padding: clamp(75px, 8vw, 120px) 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 15%,
      rgba(207, 152, 119, 0.14),
      transparent 27%),
    radial-gradient(circle at 100% 90%,
      rgba(207, 152, 119, 0.08),
      transparent 26%),
    #f8f7f5;
}

.tp-review-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -145px;

  width: 360px;
  height: 360px;

  border: 62px solid rgba(207, 152, 119, 0.045);
  border-radius: 50%;

  pointer-events: none;
}

.tp-review-section .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADER
========================================================= */

.tp-review-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 55px;

  margin-bottom: 48px;
}

.tp-review-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 14px;
  margin-bottom: 18px;

  border: 1px solid rgba(207, 152, 119, 0.27);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.8);
  color: var(--review-copper-dark);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.tp-review-header h2 {
  max-width: 900px;
  margin: 0;

  color: var(--review-text);

  font-size: clamp(39px, 4.5vw, 63px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -2px;

  text-wrap: balance;
}

.tp-review-header h2 span {
  color: var(--review-copper-dark);
}

.tp-review-header>p {
  max-width: 510px;
  margin: 0;

  color: var(--review-muted);

  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.tp-review-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;
  gap: 25px;
}

/* =========================================================
   LEFT TRUST PANEL
========================================================= */

.tp-review-trust-panel {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 34px;

  overflow: hidden;

  border-radius: 27px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.22),
      transparent 32%),
    linear-gradient(145deg,
      #0e1011 0%,
      #1e1918 55%,
      #101213 100%);

  color: var(--review-white);

  box-shadow: 0 28px 65px rgba(17, 19, 21, 0.22);
}

.tp-review-trust-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 4px;

  background: linear-gradient(90deg,
      transparent,
      var(--review-copper),
      var(--review-copper-light));
}

.tp-review-trust-panel__pattern {
  position: absolute;
  top: -75px;
  right: -75px;

  width: 190px;
  height: 190px;

  border: 32px solid rgba(207, 152, 119, 0.06);
  border-radius: 50%;

  pointer-events: none;
}

.tp-review-trust-panel__top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 35px;
}

.tp-review-trust-panel__icon {
  width: 52px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: var(--review-copper);
  color: var(--review-dark);

  font-size: 21px;
}

.tp-review-trust-panel__label {
  padding: 7px 10px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.58);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Rating score */
.tp-review-score {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;

  padding-bottom: 26px;
  margin-bottom: 25px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.tp-review-score>strong {
  color: var(--review-white);

  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
}

.tp-review-score>div {
  display: flex;
  flex-direction: column;
}

.tp-review-stars {
  display: flex;
  align-items: center;
  gap: 4px;

  margin-bottom: 7px;

  color: #e3a43f;

  font-size: 13px;
}

.tp-review-score span {
  color: rgba(255, 255, 255, 0.52);

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.tp-review-trust-panel__text {
  position: relative;
  z-index: 2;

  margin: 0 0 25px;

  color: rgba(255, 255, 255, 0.64);

  font-size: 14px;
  line-height: 1.8;
}

/* Trust list */
.tp-review-trust-list {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 10px;

  margin-bottom: 27px;
}

.tp-review-trust-list>div {
  display: flex;
  align-items: center;
  gap: 11px;

  padding: 12px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.045);
}

.tp-review-trust-list>div>i {
  color: var(--review-copper-light);
  font-size: 17px;
}

.tp-review-trust-list span {
  display: flex;
  flex-direction: column;
}

.tp-review-trust-list small {
  margin-bottom: 3px;

  color: rgba(255, 255, 255, 0.4);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.tp-review-trust-list strong {
  color: var(--review-white);

  font-size: 12px;
  font-weight: 700;
}

/* Contact button */
.tp-review-contact-button {
  position: relative;
  z-index: 2;

  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  padding: 6px 7px 6px 18px;
  margin-top: auto;

  border-radius: 12px;

  background: var(--review-white);
  color: var(--review-dark);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tp-review-contact-button i {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--review-copper);
  color: var(--review-dark);

  font-size: 13px;

  transition: transform 0.25s ease;
}

.tp-review-contact-button:hover {
  background: var(--review-copper-light);
  color: var(--review-dark);

  box-shadow: 0 15px 30px rgba(207, 152, 119, 0.2);

  transform: translateY(-3px);
}

.tp-review-contact-button:hover i {
  transform: translate(2px, -2px);
}

/* =========================================================
   SLIDER AREA
========================================================= */

.tp-review-slider-area {
  min-width: 0;

  padding: 26px;

  border: 1px solid var(--review-border);
  border-radius: 27px;

  background: rgba(255, 255, 255, 0.75);

  box-shadow: 0 20px 50px rgba(17, 19, 21, 0.08);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* Toolbar */
.tp-review-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding-bottom: 22px;
  margin-bottom: 18px;

  border-bottom: 1px solid var(--review-border);
}

.tp-review-toolbar__title {
  display: flex;
  flex-direction: column;
}

.tp-review-toolbar__title small {
  margin-bottom: 4px;

  color: var(--review-copper-dark);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tp-review-toolbar__title strong {
  color: var(--review-text);

  font-size: 17px;
  font-weight: 800;
}

.tp-review-toolbar__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-review-counter {
  min-width: 82px;

  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;

  margin-right: 6px;

  color: var(--review-muted);
}

.tp-review-counter strong {
  color: var(--review-dark);

  font-size: 17px;
  font-weight: 800;
}

.tp-review-counter small,
.tp-review-counter span {
  font-size: 9px;
  font-weight: 700;
}

.tp-review-arrow {
  width: 45px;
  height: 45px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid var(--review-border);
  border-radius: 50%;

  background: var(--review-white);
  color: var(--review-dark);

  font-size: 14px;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.tp-review-arrow:hover {
  border-color: var(--review-dark);
  background: var(--review-dark);
  color: var(--review-copper-light);

  transform: translateY(-3px);
}

/* Slider */
.tp-review-slider {
  overflow-x: auto;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.tp-review-slider::-webkit-scrollbar {
  display: none;
}

.tp-review-track {
  display: flex;
  align-items: stretch;
  gap: var(--review-gap);

  padding: 5px 2px 20px;
}

/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.tp-review-card {
  position: relative;

  min-width: calc((100% - (var(--review-gap) * (var(--review-visible) - 1))) / var(--review-visible));

  display: flex;
  flex-direction: column;

  padding: 25px;

  overflow: hidden;

  border: 1px solid var(--review-border);
  border-radius: 19px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.12),
      transparent 32%),
    var(--review-white);

  box-shadow: 0 15px 37px rgba(17, 19, 21, 0.07);

  scroll-snap-align: start;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.tp-review-card::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;

  height: 3px;

  background: var(--review-copper);

  transition:
    right 0.3s ease,
    left 0.3s ease;
}

.tp-review-card:hover {
  border-color: rgba(207, 152, 119, 0.4);

  box-shadow: 0 24px 50px rgba(17, 19, 21, 0.13);

  transform: translateY(-6px);
}

.tp-review-card:hover::before {
  right: 20px;
  left: 20px;
}

/* Card header */
.tp-review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 22px;
}

.tp-review-card__quote {
  width: 49px;
  height: 49px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: var(--review-dark);
  color: var(--review-copper-light);

  font-size: 22px;
}

.tp-review-card__tag {
  padding: 7px 10px;

  border-radius: 999px;

  background: rgba(207, 152, 119, 0.12);
  color: var(--review-copper-dark);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Rating */
.tp-review-card__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-bottom: 18px;
}

.tp-review-card__rating>div {
  display: flex;
  gap: 3px;

  color: #dda13d;

  font-size: 11px;
}

.tp-review-card__rating>span {
  color: var(--review-muted);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Quote */
.tp-review-card blockquote {
  min-height: 90px;
  margin: 0 0 22px;

  color: #565b5e;

  font-size: 12px;
  font-style: normal;
  line-height: 1.8;
}

/* Project information */
.tp-review-project {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px;
  margin-bottom: 20px;

  border-radius: 11px;

  background: #f7f4f1;
}

.tp-review-project>i {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(207, 152, 119, 0.14);
  color: var(--review-copper-dark);

  font-size: 15px;
}

.tp-review-project>span {
  display: flex;
  flex-direction: column;
}

.tp-review-project small {
  margin-bottom: 3px;

  color: var(--review-muted);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.tp-review-project strong {
  color: var(--review-text);

  font-size: 9px;
  font-weight: 800;
}

/* Client footer */
.tp-review-client {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;

  padding-top: 18px;
  margin-top: auto;

  border-top: 1px solid var(--review-border);
}

.tp-review-avatar {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--review-copper),
      var(--review-copper-light));

  color: var(--review-dark);

  font-size: 10px;
  font-weight: 900;
}

.tp-review-client>div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.tp-review-client>div strong {
  margin-bottom: 3px;

  overflow: hidden;

  color: var(--review-text);

  font-size: 16px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-review-client>div span {
  color: var(--review-muted);

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.tp-review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  padding: 6px 8px;

  border-radius: 999px;

  background: rgba(45, 133, 76, 0.09);
  color: #287748;

  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

/* =========================================================
   PAGINATION
========================================================= */

.tp-review-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: 5px;
}

.tp-review-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 999px;

  background: rgba(17, 19, 21, 0.2);

  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.tp-review-dot.active {
  width: 28px;
  background: var(--review-copper-dark);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .tp-review-section {
    --review-visible: 1;
  }

  .tp-review-header {
    grid-template-columns: 1fr;
    gap: 20px;

    text-align: center;
  }

  .tp-review-header h2,
  .tp-review-header>p {
    margin-right: auto;
    margin-left: auto;
  }

  .tp-review-layout {
    grid-template-columns: 1fr;
  }

  .tp-review-trust-panel {
    max-width: 760px;
    margin: 0 auto;
  }

  .tp-review-slider-area {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .tp-review-card blockquote {
    min-height: auto;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .tp-review-section {
    padding: 62px 0;
  }

  .tp-review-section .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tp-review-header {
    margin-bottom: 34px;
  }

  .tp-review-header h2 {
    font-size: 33px;
    letter-spacing: -1px;
  }

  .tp-review-header>p {
    font-size: 13px;
  }

  .tp-review-trust-panel {
    padding: 25px 20px;

    border-radius: 21px;
  }

  .tp-review-score>strong {
    font-size: 52px;
  }

  .tp-review-slider-area {
    padding: 17px;

    border-radius: 21px;
  }

  .tp-review-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .tp-review-toolbar__controls {
    width: 100%;
    justify-content: space-between;
  }

  .tp-review-card {
    padding: 20px;

    border-radius: 16px;
  }

  .tp-review-card:hover {
    transform: translateY(-3px);
  }

  .tp-review-client {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tp-review-verified {
    grid-column: 2;
    width: fit-content;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 389.98px) {
  .tp-review-header h2 {
    font-size: 29px;
  }

  .tp-review-trust-panel__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .tp-review-score {
    align-items: flex-start;
    flex-direction: column;
  }

  .tp-review-toolbar__title strong {
    font-size: 15px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tp-review-slider {
    scroll-behavior: auto;
  }

  .tp-review-section *,
  .tp-review-section *::before,
  .tp-review-section *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   TECHNO PAVERS — CONTACT SECTION
========================================================= */

.tp-contact-section {
  --contact-dark: #101213;
  --contact-dark-soft: #191b1d;
  --contact-text: #292c2e;
  --contact-muted: #6f7477;
  --contact-copper: #cf9877;
  --contact-copper-dark: #986247;
  --contact-copper-light: #efbc99;
  --contact-white: #ffffff;
  --contact-cream: #f8f4f1;
  --contact-border: rgba(20, 23, 25, 0.11);
  --contact-green: #25d366;

  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 20%,
      rgba(207, 152, 119, 0.14),
      transparent 27%),
    radial-gradient(circle at 100% 90%,
      rgba(207, 152, 119, 0.09),
      transparent 25%),
    #f8f7f5;
}

.tp-contact-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;

  width: 360px;
  height: 360px;

  border: 62px solid rgba(207, 152, 119, 0.045);
  border-radius: 50%;

  pointer-events: none;
}

.tp-contact-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;

  width: min(450px, 60%);
  height: 4px;

  border-radius: 20px 20px 0 0;

  background: linear-gradient(90deg,
      transparent,
      var(--contact-copper),
      transparent);

  transform: translateX(-50%);
}

.tp-contact-section .container-xxl {
  position: relative;
  z-index: 2;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.tp-contact-heading {
  max-width: 860px;
  margin: 0 auto 45px;

  text-align: center;
}

.tp-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 9px 15px;
  margin-bottom: 18px;

  border: 1px solid rgba(207, 152, 119, 0.3);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.85);
  color: var(--contact-copper-dark);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tp-contact-eyebrow i {
  font-size: 13px;
}

.tp-contact-heading h2 {
  margin: 0 0 17px;

  color: var(--contact-text);

  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;

  text-wrap: balance;
}

.tp-contact-heading h2 span {
  color: var(--contact-copper-dark);
}

.tp-contact-heading p {
  max-width: 700px;
  margin: 0 auto;

  color: var(--contact-muted);

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   CONTACT PANEL
========================================================= */

.tp-contact-panel {
  overflow: hidden;

  border: 1px solid var(--contact-border);
  border-radius: 30px;

  background: var(--contact-white);

  box-shadow:
    0 30px 80px rgba(17, 19, 21, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* =========================================================
   LEFT INFORMATION PANEL
========================================================= */

.tp-contact-info {
  position: relative;

  min-height: 100%;

  display: flex;
  flex-direction: column;

  padding: clamp(30px, 4vw, 50px);

  overflow: hidden;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.22),
      transparent 30%),
    linear-gradient(145deg,
      #0d0f10 0%,
      #211b19 55%,
      #101213 100%);

  color: var(--contact-white);
}

.tp-contact-info::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -90px;

  width: 220px;
  height: 220px;

  border: 38px solid rgba(207, 152, 119, 0.06);
  border-radius: 50%;

  pointer-events: none;
}

.tp-contact-info::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 4px;

  background: linear-gradient(90deg,
      transparent,
      var(--contact-copper),
      var(--contact-copper-light));
}

/* Header */
.tp-contact-info__header {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 15px;

  padding-bottom: 23px;
  margin-bottom: 23px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.tp-contact-info__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: var(--contact-copper);
  color: var(--contact-dark);

  font-size: 22px;

  box-shadow: 0 13px 30px rgba(207, 152, 119, 0.2);
}

.tp-contact-info__header>div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.tp-contact-info__header small {
  margin-bottom: 5px;

  color: var(--contact-copper-light);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tp-contact-info__header h3 {
  margin: 0;

  color: var(--contact-white);

  font-size: 25px;
  font-weight: 800;
  line-height: 1.3;
}

.tp-contact-info__description {
  position: relative;
  z-index: 2;

  margin: 0 0 27px;

  color: rgba(255, 255, 255, 0.64);

  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   CONTACT DETAIL CARDS
========================================================= */

.tp-contact-details {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 11px;
}

.tp-contact-detail {
  position: relative;

  min-height: 78px;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;

  padding: 14px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.05);
  color: var(--contact-white);

  text-decoration: none;

  transition:
    border-color 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease;
}

.tp-contact-detail::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 0;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(207, 152, 119, 0.12));

  transition: width 0.35s ease;
}

.tp-contact-detail:hover {
  border-color: rgba(239, 188, 153, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--contact-white);

  transform: translateX(5px);
}

.tp-contact-detail:hover::before {
  width: 50%;
}

.tp-contact-detail__icon {
  position: relative;
  z-index: 2;

  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: rgba(207, 152, 119, 0.14);
  color: var(--contact-copper-light);

  font-size: 18px;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp-contact-detail:hover .tp-contact-detail__icon {
  background: var(--contact-copper);
  color: var(--contact-dark);

  transform: rotate(-5deg);
}

.tp-contact-detail__content {
  position: relative;
  z-index: 2;

  display: flex;
  min-width: 0;
  flex-direction: column;
}

.tp-contact-detail__content small {
  margin-bottom: 5px;

  color: rgba(255, 255, 255, 0.47);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.tp-contact-detail__content strong {
  overflow-wrap: anywhere;

  color: var(--contact-white);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.tp-contact-detail--address {
  min-height: 96px;
}

.tp-contact-detail__arrow {
  position: relative;
  z-index: 2;

  color: rgba(255, 255, 255, 0.35);

  font-size: 14px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.tp-contact-detail:hover .tp-contact-detail__arrow {
  color: var(--contact-copper-light);

  transform: translate(2px, -2px);
}

/* =========================================================
   SERVICE STATES
========================================================= */

.tp-contact-serving {
  position: relative;
  z-index: 2;

  padding: 18px;
  margin-top: 24px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.045);
}

.tp-contact-serving__heading {
  display: flex;
  align-items: center;
  gap: 11px;

  padding-bottom: 14px;
  margin-bottom: 14px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.tp-contact-serving__heading>i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--contact-copper);
  color: var(--contact-dark);

  font-size: 17px;
}

.tp-contact-serving__heading>span {
  display: flex;
  flex-direction: column;
}

.tp-contact-serving__heading small {
  margin-bottom: 4px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tp-contact-serving__heading strong {
  color: var(--contact-white);

  font-size: 14px;
  font-weight: 700;
}

.tp-contact-serving__states {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tp-contact-serving__states span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 11px;

  border: 1px solid rgba(239, 188, 153, 0.18);
  border-radius: 999px;

  background: rgba(207, 152, 119, 0.09);
  color: var(--contact-copper-light);

  font-size: 12px;
  font-weight: 700;
}

/* Availability */
.tp-contact-availability {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 11px;

  padding-top: 22px;
  margin-top: auto;
}

.tp-contact-availability__status {
  position: relative;

  width: 12px;
  height: 12px;
  flex: 0 0 12px;

  border-radius: 50%;

  background: #4bd87b;
  box-shadow: 0 0 0 5px rgba(75, 216, 123, 0.12);
}

.tp-contact-availability__status::after {
  content: "";
  position: absolute;
  inset: -5px;

  border: 1px solid rgba(75, 216, 123, 0.45);
  border-radius: 50%;

  animation: tpContactPulse 1.8s ease-out infinite;
}

.tp-contact-availability>div {
  display: flex;
  flex-direction: column;
}

.tp-contact-availability small {
  margin-bottom: 3px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 12px;
  text-transform: uppercase;
}

.tp-contact-availability strong {
  color: var(--contact-white);

  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   FORM SIDE
========================================================= */

.tp-contact-form-wrap {
  min-height: 100%;

  padding: clamp(30px, 4vw, 52px);

  background:
    radial-gradient(circle at 100% 0%,
      rgba(207, 152, 119, 0.09),
      transparent 30%),
    var(--contact-white);
}

/* Form header */
.tp-contact-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;

  padding-bottom: 24px;
  margin-bottom: 28px;

  border-bottom: 1px solid var(--contact-border);
}

.tp-contact-form-header>div {
  display: flex;
  flex-direction: column;
}

.tp-contact-form-header>div>span {
  margin-bottom: 6px;

  color: var(--contact-copper-dark);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tp-contact-form-header h3 {
  margin: 0 0 7px;

  color: var(--contact-text);

  font-size: 29px;
  font-weight: 800;
  line-height: 1.25;
}

.tp-contact-form-header p {
  margin: 0;

  color: var(--contact-muted);

  font-size: 14px;
  line-height: 1.65;
}

.tp-contact-form-header__badge {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 9px 12px;

  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 999px;

  background: rgba(37, 211, 102, 0.08);
  color: #188c46;

  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

/* =========================================================
   FORM CONTROLS
========================================================= */

.tp-contact-form .form-label {
  display: block;

  margin-bottom: 8px;

  color: var(--contact-text);

  font-size: 13px;
  font-weight: 700;
}

.tp-contact-form .form-label span {
  color: #b44d3c;
}

.tp-form-control-wrap {
  position: relative;
}

.tp-form-control-wrap>i {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 3;

  color: var(--contact-copper-dark);

  font-size: 15px;

  pointer-events: none;

  transform: translateY(-50%);
}

.tp-form-control-wrap--textarea>i {
  top: 17px;

  transform: none;
}

.tp-contact-form .form-control,
.tp-contact-form .form-select {
  min-height: 56px;

  padding: 13px 16px 13px 46px;

  border: 1px solid var(--contact-border);
  border-radius: 13px;

  background-color: #faf9f7;
  color: var(--contact-text);

  font-size: 14px;
  font-weight: 500;

  box-shadow: none;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.tp-contact-form .form-control::placeholder {
  color: #9b9fa1;
  opacity: 1;
}

.tp-contact-form .form-select {
  cursor: pointer;
}

.tp-contact-form textarea.form-control {
  min-height: 145px;

  padding-top: 15px;

  resize: vertical;
}

.tp-contact-form .form-control:hover,
.tp-contact-form .form-select:hover {
  border-color: rgba(152, 98, 71, 0.35);
  background-color: var(--contact-white);
}

.tp-contact-form .form-control:focus,
.tp-contact-form .form-select:focus {
  border-color: var(--contact-copper-dark);
  background-color: var(--contact-white);

  box-shadow: 0 0 0 4px rgba(207, 152, 119, 0.13);

  transform: translateY(-1px);
}

.tp-contact-form .form-control.is-invalid,
.tp-contact-form .form-select.is-invalid,
.tp-contact-form.was-validated .form-control:invalid,
.tp-contact-form.was-validated .form-select:invalid {
  border-color: #c95f50;

  background-image: none;
}

.tp-contact-form .invalid-feedback {
  margin-top: 6px;

  color: #b44d3c;

  font-size: 12px;
  font-weight: 600;
}

/* =========================================================
   FORM HELP
========================================================= */

.tp-form-help {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;

  padding: 14px;

  border: 1px solid var(--contact-border);
  border-radius: 13px;

  background: var(--contact-cream);
}

.tp-form-help span {
  min-height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 8px;

  border-radius: 9px;

  background: var(--contact-white);
  color: var(--contact-muted);

  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.tp-form-help i {
  color: var(--contact-copper-dark);

  font-size: 14px;
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.tp-contact-submit {
  width: 100%;
  min-height: 62px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 7px 8px 7px 21px;

  border: 0;
  border-radius: 14px;

  background:
    linear-gradient(135deg,
      #1db957,
      var(--contact-green));

  color: #07180d;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;

  box-shadow: 0 15px 34px rgba(37, 211, 102, 0.23);

  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease,
    filter 0.28s ease;
}

.tp-contact-submit>span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tp-contact-submit>span i {
  font-size: 20px;
}

.tp-contact-submit>i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: var(--contact-dark);
  color: var(--contact-white);

  font-size: 15px;

  transition: transform 0.28s ease;
}

.tp-contact-submit:hover {
  filter: brightness(1.04);

  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.31);

  transform: translateY(-3px);
}

.tp-contact-submit:hover>i {
  transform: translateX(4px);
}

.tp-contact-submit:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.3);
  outline-offset: 3px;
}

/* Form note */
.tp-contact-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 13px 15px;
  margin: 0;

  border: 1px solid rgba(20, 23, 25, 0.08);
  border-radius: 12px;

  background: #f8f8f7;
  color: var(--contact-muted);

  font-size: 12px;
  line-height: 1.65;
}

.tp-contact-form-note>i {
  flex: 0 0 auto;

  margin-top: 2px;

  color: var(--contact-copper-dark);

  font-size: 15px;
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes tpContactPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

  .tp-contact-info,
  .tp-contact-form-wrap {
    padding: 36px;
  }

  .tp-form-help {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .tp-contact-section {
    padding: 80px 0;
  }

  .tp-contact-panel {
    max-width: 800px;
    margin: 0 auto;

    border-radius: 24px;
  }

  .tp-contact-info,
  .tp-contact-form-wrap {
    padding: 40px;
  }

  .tp-contact-availability {
    margin-top: 25px;
  }

  .tp-contact-form-header {
    margin-bottom: 25px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .tp-contact-section {
    padding: 62px 0;
  }

  .tp-contact-section .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tp-contact-heading {
    margin-bottom: 32px;
  }

  .tp-contact-heading h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .tp-contact-heading p {
    font-size: 14px;
    line-height: 1.7;
  }

  .tp-contact-panel {
    border-radius: 20px;
  }

  .tp-contact-info,
  .tp-contact-form-wrap {
    padding: 28px 20px;
  }

  .tp-contact-info__header {
    align-items: flex-start;
  }

  .tp-contact-info__header h3 {
    font-size: 22px;
  }

  .tp-contact-detail {
    min-height: 74px;
  }

  .tp-contact-detail:hover {
    transform: translateY(-2px);
  }

  .tp-contact-form-header {
    flex-direction: column;
  }

  .tp-contact-form-header h3 {
    font-size: 25px;
  }

  .tp-contact-form-header__badge {
    align-self: flex-start;
  }

  .tp-contact-form .form-control,
  .tp-contact-form .form-select {
    min-height: 54px;

    font-size: 14px;
  }

  .tp-form-help {
    grid-template-columns: 1fr 1fr;
  }

  .tp-contact-submit {
    min-height: 59px;

    padding-left: 16px;

    font-size: 12px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .tp-contact-heading h2 {
    font-size: 31px;
  }

  .tp-contact-info,
  .tp-contact-form-wrap {
    padding: 25px 17px;
  }

  .tp-contact-detail {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tp-contact-detail__arrow {
    display: none;
  }

  .tp-contact-detail__content strong {
    font-size: 13px;
  }

  .tp-contact-serving__states {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-contact-serving__states span {
    text-align: center;
  }

  .tp-form-help {
    grid-template-columns: 1fr;
  }

  .tp-contact-submit {
    align-items: center;

    text-align: left;
  }

  .tp-contact-submit>span {
    line-height: 1.4;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 359.98px) {
  .tp-contact-heading h2 {
    font-size: 28px;
  }

  .tp-contact-info__header {
    flex-direction: column;
  }

  .tp-contact-serving__states {
    grid-template-columns: 1fr;
  }

  .tp-contact-submit>i {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tp-contact-section *,
  .tp-contact-section *::before,
  .tp-contact-section *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   TECHNO DESIGN PAVERS — PREMIUM FOOTER
========================================================= */

.tp-footer {
  --footer-dark: #0b0d0e;
  --footer-dark-soft: #121516;
  --footer-panel: #17191b;
  --footer-white: #ffffff;
  --footer-text: rgba(255, 255, 255, 0.76);
  --footer-muted: rgba(255, 255, 255, 0.48);
  --footer-border: rgba(255, 255, 255, 0.1);
  --footer-copper: #cf9877;
  --footer-copper-dark: #986247;
  --footer-copper-light: #efbc99;

  position: relative;

  margin-top: 0;

  background: var(--footer-dark);
  color: var(--footer-white);
}

/* =========================================================
   PROJECT CTA
========================================================= */

.tp-footer>.container-xxl {
  position: relative;
  z-index: 3;
}

.tp-footer-cta {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;

  padding: 27px 30px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 23px;

  background:
    radial-gradient(circle at 100% 0%,
      rgba(239, 188, 153, 0.18),
      transparent 35%),
    linear-gradient(135deg,
      #966148 0%,
      #c58c6c 55%,
      #a66e50 100%);

  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);

  transform: translateY(50%);
}

.tp-footer-cta::before {
  content: "";
  position: absolute;
  top: -95px;
  right: 23%;

  width: 220px;
  height: 220px;

  border: 38px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;

  pointer-events: none;
}

.tp-footer-cta__icon {
  position: relative;
  z-index: 2;

  width: 64px;
  height: 64px;
  flex: 0 0 64px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;

  background: var(--footer-dark);
  color: var(--footer-copper-light);

  font-size: 25px;

  box-shadow: 0 15px 33px rgba(0, 0, 0, 0.22);
}

.tp-footer-cta__content {
  position: relative;
  z-index: 2;
}

.tp-footer-cta__content>span {
  display: block;

  margin-bottom: 6px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.tp-footer-cta__content h2 {
  max-width: 660px;
  margin: 0;

  color: var(--footer-white);

  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.7px;
}

.tp-footer-cta__actions {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 12px;
}

/* Call card */
.tp-footer-cta__call {
  min-height: 58px;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 8px 15px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;

  background: rgba(17, 19, 21, 0.16);
  color: var(--footer-white);

  text-decoration: none;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp-footer-cta__call>i {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: var(--footer-dark);
  color: var(--footer-copper-light);

  font-size: 15px;
}

.tp-footer-cta__call>span {
  display: flex;
  flex-direction: column;
}

.tp-footer-cta__call small {
  margin-bottom: 3px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 12px;
  font-weight: 700;
}

.tp-footer-cta__call strong {
  color: var(--footer-white);

  font-size: 14px;
  font-weight: 800;
}

.tp-footer-cta__call:hover {
  background: rgba(17, 19, 21, 0.28);
  color: var(--footer-white);

  transform: translateY(-3px);
}

/* Quote button */
.tp-footer-cta__button {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  padding: 7px 8px 7px 19px;

  border-radius: 13px;

  background: var(--footer-white);
  color: var(--footer-dark);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;

  box-shadow: 0 14px 29px rgba(0, 0, 0, 0.18);

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tp-footer-cta__button i {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: var(--footer-dark);
  color: var(--footer-copper-light);

  font-size: 14px;

  transition: transform 0.25s ease;
}

.tp-footer-cta__button:hover {
  background: var(--footer-copper-light);
  color: var(--footer-dark);

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);

  transform: translateY(-3px);
}

.tp-footer-cta__button:hover i {
  transform: translateX(4px);
}

/* =========================================================
   FOOTER MAIN
========================================================= */

.tp-footer-main {
  position: relative;

  padding: 145px 0 45px;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 0%,
      rgba(207, 152, 119, 0.13),
      transparent 28%),
    radial-gradient(circle at 100% 100%,
      rgba(207, 152, 119, 0.08),
      transparent 26%),
    linear-gradient(145deg,
      #0a0c0d 0%,
      #151211 50%,
      #0b0d0e 100%);
}

.tp-footer-main::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -150px;

  width: 370px;
  height: 370px;

  border: 64px solid rgba(207, 152, 119, 0.04);
  border-radius: 50%;

  pointer-events: none;
}

.tp-footer-main .container-xxl {
  position: relative;
  z-index: 2;
}

.tp-footer-grid {
  display: grid;
  grid-template-columns:
    minmax(300px, 1.25fr) minmax(170px, 0.65fr) minmax(200px, 0.8fr) minmax(290px, 1fr);
  gap: clamp(32px, 4vw, 60px);
}

/* =========================================================
   BRAND AREA
========================================================= */

.tp-footer-brand {
  max-width: 430px;
}

.tp-footer-logo {
  width: min(290px, 100%);

  display: inline-flex;
  align-items: center;

  padding: 13px 16px;
  margin-bottom: 22px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 15px 37px rgba(0, 0, 0, 0.18);

  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.tp-footer-logo:hover {
  box-shadow: 0 20px 47px rgba(0, 0, 0, 0.28);

  transform: translateY(-4px);
}

.tp-footer-logo img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.tp-footer-brand>p {
  max-width: 410px;
  margin: 0 0 24px;

  color: var(--footer-text);

  font-size: 14px;
  line-height: 1.8;
}

/* Brand details */
.tp-footer-brand__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;

  margin-bottom: 22px;
}

.tp-footer-brand__meta>div {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 13px;

  border: 1px solid var(--footer-border);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.045);
}

.tp-footer-brand__meta i {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(207, 152, 119, 0.14);
  color: var(--footer-copper-light);

  font-size: 15px;
}

.tp-footer-brand__meta span {
  display: flex;
  flex-direction: column;
}

.tp-footer-brand__meta small {
  margin-bottom: 3px;

  color: var(--footer-muted);

  font-size: 12px;
  font-weight: 700;
}

.tp-footer-brand__meta strong {
  color: var(--footer-white);

  font-size: 13px;
  font-weight: 700;
}

/* Certifications */
.tp-footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tp-footer-certifications span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 10px;

  border: 1px solid rgba(239, 188, 153, 0.17);
  border-radius: 999px;

  background: rgba(207, 152, 119, 0.08);
  color: var(--footer-copper-light);

  font-size: 12px;
  font-weight: 700;
}

.tp-footer-certifications i {
  font-size: 12px;
}

/* =========================================================
   COLUMN HEADINGS
========================================================= */

.tp-footer-column__heading {
  display: flex;
  align-items: center;
  gap: 11px;

  padding-bottom: 17px;
  margin-bottom: 18px;

  border-bottom: 1px solid var(--footer-border);
}

.tp-footer-column__heading>span {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: rgba(207, 152, 119, 0.14);
  color: var(--footer-copper-light);

  font-size: 17px;
}

.tp-footer-column__heading>div {
  display: flex;
  flex-direction: column;
}

.tp-footer-column__heading small {
  margin-bottom: 3px;

  color: var(--footer-copper-light);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.tp-footer-column__heading h3 {
  margin: 0;

  color: var(--footer-white);

  font-size: 18px;
  font-weight: 800;
}

/* =========================================================
   FOOTER LINKS
========================================================= */

.tp-footer-links {
  display: grid;
  gap: 5px;

  padding: 0;
  margin: 0;

  list-style: none;
}

.tp-footer-links li {
  margin: 0;
}

.tp-footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;

  min-height: 39px;

  color: var(--footer-text);

  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;

  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.tp-footer-links a i {
  color: var(--footer-copper);
  font-size: 17px;

  transition: transform 0.25s ease;
}

.tp-footer-links a:hover {
  padding-left: 5px;

  color: var(--footer-white);
}

.tp-footer-links a:hover i {
  transform: translateX(4px);
}

/* =========================================================
   CONTACT DETAILS
========================================================= */

.tp-footer-contact-list {
  display: grid;
  gap: 10px;
}

.tp-footer-contact-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 11px;

  padding: 13px;

  border: 1px solid var(--footer-border);
  border-radius: 13px;

  background: rgba(255, 255, 255, 0.042);
  color: var(--footer-white);

  text-decoration: none;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

a.tp-footer-contact-item:hover {
  border-color: rgba(239, 188, 153, 0.29);
  background: rgba(255, 255, 255, 0.065);
  color: var(--footer-white);

  transform: translateY(-3px);
}

.tp-footer-contact-item__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: rgba(207, 152, 119, 0.13);
  color: var(--footer-copper-light);

  font-size: 15px;
}

.tp-footer-contact-item>span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.tp-footer-contact-item small {
  margin-bottom: 5px;

  color: var(--footer-muted);

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tp-footer-contact-item strong {
  display: flex;
  flex-direction: column;
  gap: 4px;

  overflow-wrap: anywhere;

  color: var(--footer-white);

  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.tp-footer-contact-item strong a {
  color: var(--footer-white);

  text-decoration: none;

  transition: color 0.25s ease;
}

.tp-footer-contact-item strong a:hover {
  color: var(--footer-copper-light);
}

.tp-footer-contact-item em {
  margin-left: 4px;

  color: var(--footer-copper-light);

  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

/* =========================================================
   SUPPLY COVERAGE PANEL
========================================================= */

.tp-footer-supply {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto auto;
  align-items: center;
  gap: 25px;

  padding: 21px 23px;
  margin-top: 48px;

  border: 1px solid var(--footer-border);
  border-radius: 18px;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.025));

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tp-footer-supply__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tp-footer-supply__heading>span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--footer-copper);
  color: var(--footer-dark);

  font-size: 18px;
}

.tp-footer-supply__heading>div {
  display: flex;
  flex-direction: column;
}

.tp-footer-supply__heading small {
  margin-bottom: 4px;

  color: var(--footer-copper-light);

  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tp-footer-supply__heading strong {
  max-width: 470px;

  color: var(--footer-white);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.tp-footer-supply__states {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.tp-footer-supply__states span {
  padding: 7px 10px;

  border: 1px solid rgba(239, 188, 153, 0.15);
  border-radius: 999px;

  background: rgba(207, 152, 119, 0.08);
  color: var(--footer-copper-light);

  font-size: 12px;
  font-weight: 700;
}

.tp-footer-brochure {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 9px 15px;

  border-radius: 11px;

  background: var(--footer-white);
  color: var(--footer-dark);

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp-footer-brochure:hover {
  background: var(--footer-copper-light);
  color: var(--footer-dark);

  transform: translateY(-3px);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.tp-footer-bottom {
  border-top: 1px solid var(--footer-border);

  background: #080a0b;
}

.tp-footer-bottom__inner {
  min-height: 78px;

  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.tp-footer-bottom p {
  margin: 0;

  color: var(--footer-muted);

  font-size: 13px;
  line-height: 1.6;
}

.tp-footer-bottom p strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.tp-footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 13px;
}

.tp-footer-bottom__links a {
  color: var(--footer-muted);

  font-size: 13px;
  text-decoration: none;

  transition: color 0.25s ease;
}

.tp-footer-bottom__links a:hover {
  color: var(--footer-copper-light);
}

.tp-footer-bottom__links span {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--footer-copper);
}

.tp-footer-back-to-top {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 7px 8px 7px 14px;

  border: 1px solid var(--footer-border);
  border-radius: 10px;

  color: var(--footer-white);

  font-size: 12px;
  font-weight: 700;
  text-decoration: none;

  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.tp-footer-back-to-top i {
  width: 28px;
  height: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: var(--footer-copper);
  color: var(--footer-dark);

  font-size: 13px;
}

.tp-footer-back-to-top:hover {
  border-color: rgba(239, 188, 153, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: var(--footer-white);

  transform: translateY(-3px);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {
  .tp-footer-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tp-footer-cta__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .tp-footer-grid {
    grid-template-columns: 1.1fr 0.7fr 0.85fr;
  }

  .tp-footer-contact-column {
    grid-column: 1 / -1;
  }

  .tp-footer-contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-footer-supply {
    grid-template-columns: 1fr auto;
  }

  .tp-footer-supply__states {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .tp-footer-cta {
    transform: translateY(42%);

    padding: 24px;
  }

  .tp-footer-main {
    padding-top: 135px;
  }

  .tp-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .tp-footer-brand>p {
    max-width: 650px;
  }

  .tp-footer-contact-column {
    grid-column: 1 / -1;
  }

  .tp-footer-bottom__inner {
    grid-template-columns: 1fr auto;
    padding: 18px 0;
  }

  .tp-footer-bottom__links {
    grid-column: 1;
  }

  .tp-footer-back-to-top {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .tp-footer>.container-xxl,
  .tp-footer-main .container-xxl,
  .tp-footer-bottom .container-xxl {
    padding-right: 14px;
    padding-left: 14px;
  }

  .tp-footer-cta {
    grid-template-columns: 1fr;
    gap: 17px;

    padding: 22px 18px;

    border-radius: 19px;

    text-align: center;

    transform: translateY(34%);
  }

  .tp-footer-cta__icon {
    margin: 0 auto;
  }

  .tp-footer-cta__content h2 {
    margin: 0 auto;

    font-size: 24px;
  }

  .tp-footer-cta__actions {
    grid-column: auto;

    width: 100%;

    align-items: stretch;
    flex-direction: column;
  }

  .tp-footer-cta__call,
  .tp-footer-cta__button {
    width: 100%;
  }

  .tp-footer-cta__call {
    justify-content: center;
  }

  .tp-footer-main {
    padding: 150px 0 38px;
  }

  .tp-footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }

  .tp-footer-brand,
  .tp-footer-contact-column {
    grid-column: auto;
  }

  .tp-footer-brand {
    max-width: none;
  }

  .tp-footer-logo {
    width: min(275px, 100%);
  }

  .tp-footer-brand__meta {
    grid-template-columns: 1fr;
  }

  .tp-footer-contact-list {
    grid-template-columns: 1fr;
  }

  .tp-footer-column__heading {
    margin-bottom: 13px;
  }

  .tp-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 15px;
  }

  .tp-footer-supply {
    grid-template-columns: 1fr;
    gap: 18px;

    margin-top: 40px;
  }

  .tp-footer-supply__states {
    grid-column: auto;
    justify-content: flex-start;
  }

  .tp-footer-brochure {
    width: 100%;
  }

  .tp-footer-bottom__inner {
    grid-template-columns: 1fr;

    gap: 14px;

    padding: 24px 0;

    text-align: center;
  }

  .tp-footer-bottom__links {
    grid-column: auto;
    justify-content: center;
  }

  .tp-footer-back-to-top {
    grid-column: auto;
    grid-row: auto;

    justify-content: center;

    width: 100%;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {
  .tp-footer-cta {
    transform: translateY(28%);
  }

  .tp-footer-main {
    padding-top: 145px;
  }

  .tp-footer-cta__content h2 {
    font-size: 22px;
  }

  .tp-footer-brand>p {
    font-size: 13px;
  }

  .tp-footer-links {
    grid-template-columns: 1fr;
  }

  .tp-footer-certifications {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tp-footer-certifications span {
    justify-content: center;
  }

  .tp-footer-supply__heading {
    align-items: flex-start;
  }

  .tp-footer-supply__states {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;
  }

  .tp-footer-supply__states span {
    text-align: center;
  }

  .tp-footer-bottom__links {
    align-items: center;
    flex-direction: column;
  }

  .tp-footer-bottom__links span {
    display: none;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 359.98px) {
  .tp-footer-cta__content h2 {
    font-size: 20px;
  }

  .tp-footer-supply__states {
    grid-template-columns: 1fr;
  }

  .tp-footer-contact-item {
    grid-template-columns: 1fr;
  }

  .tp-footer-contact-item__icon {
    margin-bottom: 3px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tp-footer *,
  .tp-footer *::before,
  .tp-footer *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   PRODUCT ENQUIRY MODAL
========================================================= */

.tp-enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.tp-enquiry-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tp-enquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 18, 0.62);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.tp-enquiry-box {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.96);
  transition: 0.3s ease;
}

.tp-enquiry-modal.active .tp-enquiry-box {
  transform: translateY(0) scale(1);
}

.tp-enquiry-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f1f3;
  color: #111;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.tp-enquiry-close:hover {
  background: #111;
  color: #ffffff;
  transform: rotate(90deg);
}

.tp-enquiry-head {
  padding: 30px 34px 24px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.18), transparent 36%),
    linear-gradient(135deg, #111417, #24282c);
}

.tp-enquiry-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: #cf9877;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-enquiry-head h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 8px;
}

.tp-enquiry-head p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 0;
}

.tp-enquiry-form {
  padding: 30px 34px 34px;
}

.tp-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tp-form-group {
  margin-bottom: 16px;
}

.tp-form-group label {
  display: block;
  color: #202326;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.tp-form-group input,
.tp-form-group textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 14px;
  background: #f8f8f8;
  color: #202326;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 15px;
  outline: 0;
  transition: 0.25s ease;
}

.tp-form-group textarea {
  min-height: 120px;
  resize: none;
}

.tp-form-group input:focus,
.tp-form-group textarea:focus {
  border-color: #cf9877;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(207, 152, 119, 0.14);
}

.tp-form-group input[readonly] {
  background: #fff7f2;
  color: #8a4d2f;
  font-weight: 900;
}

.tp-enquiry-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 50px;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.28);
  transition: 0.3s ease;
}

.tp-enquiry-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.38);
}

.tp-enquiry-submit i {
  font-size: 19px;
}

/* Button text style */
.tp-product-link {
  cursor: pointer;
}

/* Responsive */
@media (max-width: 767.98px) {
  .tp-enquiry-modal {
    padding: 16px;
  }

  .tp-enquiry-box {
    border-radius: 20px;
  }

  .tp-enquiry-head {
    padding: 26px 22px 22px;
  }

  .tp-enquiry-head h3 {
    font-size: 25px;
  }

  .tp-enquiry-form {
    padding: 24px 22px 26px;
  }

  .tp-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 420px) {
  .tp-enquiry-modal {
    padding: 10px;
  }

  .tp-enquiry-box {
    max-height: calc(100vh - 20px);
  }

  .tp-enquiry-head h3 {
    font-size: 22px;
  }

  .tp-form-group input,
  .tp-form-group textarea {
    font-size: 14px;
  }
}


/* =====================================================
   FIXED GALLERY ZOOM LIGHTBOX
====================================================== */

.tp-gallery-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  background: transparent !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: 0.3s ease !important;
}

.tp-gallery-lightbox.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.tp-gallery-lightbox__backdrop {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  background: rgba(0, 0, 0, 0.86) !important;
  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;
  cursor: zoom-out !important;
}

.tp-gallery-lightbox__dialog {
  position: relative !important;
  z-index: 2 !important;
  width: auto !important;
  max-width: 92vw !important;
  max-height: 88vh !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 18px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: scale(0.88) !important;
  opacity: 0 !important;
  transition: 0.35s ease !important;
}

.tp-gallery-lightbox.active .tp-gallery-lightbox__dialog {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.tp-gallery-lightbox__dialog img {
  display: block !important;
  width: auto !important;
  max-width: 92vw !important;
  height: auto !important;
  max-height: 88vh !important;
  object-fit: contain !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45) !important;
}

/* hide old title/content if old html still remains */
.tp-gallery-lightbox__content,
.tp-gallery-lightbox__content h3,
.tp-gallery-lightbox__content p,
#tpGalleryLightboxTitle,
#tpGalleryLightboxDescription {
  display: none !important;
}

.tp-gallery-lightbox__close {
  position: absolute !important;
  top: -18px !important;
  right: -18px !important;
  z-index: 5 !important;
  width: 42px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #111111 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 17px !important;
  cursor: pointer !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32) !important;
  transition: 0.25s ease !important;
}

.tp-gallery-lightbox__close:hover {
  background: #111111 !important;
  color: #ffffff !important;
  transform: rotate(90deg) !important;
}

@media (max-width: 767.98px) {
  .tp-gallery-lightbox {
    padding: 14px !important;
  }

  .tp-gallery-lightbox__dialog img {
    max-width: 94vw !important;
    max-height: 84vh !important;
    border-radius: 14px !important;
  }

  .tp-gallery-lightbox__close {
    top: -12px !important;
    right: -8px !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 15px !important;
  }
}


/* =========================================================
   TECHNO ABOUT PAGE UI
========================================================= */

.tp-about-page {
  overflow: hidden;
  background: #f7f5f3;
}


/* =========================================================
   PREMIUM ABOUT INTRO SECTION
========================================================= */

.tp-about-intro--premium {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.13), transparent 32%),
    radial-gradient(circle at 92% 82%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-about-intro--premium::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 42px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-about-intro--premium::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: 90px;
  width: 300px;
  height: 300px;
  border-radius: 42px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-about-intro--premium .container-xxl {
  position: relative;
  z-index: 2;
}

/* Left Visual */

.tp-about-visual {
  position: relative;
  max-width: 650px;
  min-height: 610px;
  margin: 0 auto;
}

.tp-about-visual__main {
  position: relative;
  z-index: 2;
  width: calc(100% - 56px);
  height: 560px;
  overflow: hidden;
  border-radius: 36px;
  background: #eeeeee;
  box-shadow:
    0 34px 85px rgba(17, 19, 21, 0.20),
    0 10px 26px rgba(17, 19, 21, 0.08);
}

.tp-about-visual__main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.35)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 45%);
  pointer-events: none;
}

.tp-about-visual__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-about-visual:hover .tp-about-visual__main img {
  transform: scale(1.08);
}

.tp-about-visual__shape {
  position: absolute;
  border-radius: 36px;
  pointer-events: none;
}

.tp-about-visual__shape--one {
  top: 34px;
  right: 0;
  width: 72%;
  height: 520px;
  background: #cf9877;
  opacity: 0.22;
}

.tp-about-visual__shape--two {
  left: -24px;
  bottom: 15px;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(152, 98, 71, 0.14);
  border-radius: 50%;
}

/* Visual Cards */

.tp-about-visual__experience {
  position: absolute;
  z-index: 4;
  left: 24px;
  bottom: 24px;
  min-width: 165px;
  padding: 21px 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 22px 50px rgba(17, 19, 21, 0.20);
}

.tp-about-visual__experience strong {
  display: block;
  color: #986247;
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1px;
}

.tp-about-visual__experience span {
  display: block;
  color: #202326;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
  margin-top: 7px;
}

.tp-about-visual__quality {
  position: absolute;
  z-index: 4;
  top: 34px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 255px;
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 20px 48px rgba(17, 19, 21, 0.16);
  backdrop-filter: blur(10px);
}

.tp-about-visual__quality>span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 15px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.tp-about-visual__quality strong {
  display: block;
  color: #191d20;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.tp-about-visual__quality small {
  display: block;
  color: #686b6d;
  font-size: 11px;
  font-weight: 750;
  margin-top: 4px;
}

.tp-about-visual__mini {
  position: absolute;
  z-index: 4;
  right: 38px;
  bottom: 88px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border-radius: 50px;
  background: #111417;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.24);
}

.tp-about-visual__mini i {
  color: #cf9877;
  font-size: 18px;
}

.tp-about-visual__mini span {
  font-size: 12px;
  font-weight: 850;
}

/* Right Content */

.tp-about-intro-content {
  position: relative;
  padding-left: 12px;
}

.tp-about-intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-about-intro-content h2 {
  max-width: 700px;
  color: #191d20;
  font-size: clamp(2.2rem, 4.2vw, 3.55rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.tp-about-intro-content p {
  color: #65686a;
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 14px;
}

/* Product Tags */

.tp-about-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
}

.tp-about-product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  color: #343739;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(17, 19, 21, 0.05);
}

/* Feature Grid */

.tp-about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tp-about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 12px 30px rgba(17, 19, 21, 0.06);
  transition: 0.32s ease;
}

.tp-about-feature-item:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 152, 119, 0.30);
  box-shadow: 0 20px 46px rgba(17, 19, 21, 0.12);
}

.tp-about-feature-item>i {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.15);
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.tp-about-feature-item strong {
  display: block;
  color: #191d20;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 5px;
}

.tp-about-feature-item p {
  color: #6a6d6f;
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* Buttons */

.tp-about-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.tp-about-primary-btn,
.tp-about-secondary-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: 0.3s ease;
}

.tp-about-primary-btn {
  background: #986247;
  color: #ffffff;
  box-shadow: 0 15px 34px rgba(152, 98, 71, 0.24);
}

.tp-about-primary-btn:hover {
  color: #ffffff;
  background: #7c4b34;
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(152, 98, 71, 0.34);
}

.tp-about-secondary-btn {
  background: #111417;
  color: #ffffff;
  box-shadow: 0 15px 34px rgba(17, 19, 21, 0.20);
}

.tp-about-secondary-btn:hover {
  color: #ffffff;
  background: #000000;
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(17, 19, 21, 0.30);
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-about-visual {
    min-height: 560px;
  }

  .tp-about-visual__main {
    height: 520px;
  }

  .tp-about-visual__shape--one {
    height: 480px;
  }

  .tp-about-intro-content {
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .tp-about-intro--premium {
    padding: 85px 0;
  }

  .tp-about-visual {
    max-width: 720px;
    min-height: 550px;
  }

  .tp-about-intro-content {
    text-align: center;
  }

  .tp-about-intro-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-about-intro-content h2,
  .tp-about-intro-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-about-product-tags {
    justify-content: center;
  }

  .tp-about-feature-item {
    text-align: left;
  }

  .tp-about-intro-actions {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .tp-about-intro--premium {
    padding: 70px 0;
  }

  .tp-about-visual {
    min-height: 470px;
  }

  .tp-about-visual__main {
    width: 100%;
    height: 430px;
    border-radius: 26px;
  }

  .tp-about-visual__shape--one {
    display: none;
  }

  .tp-about-visual__shape--two {
    left: -30px;
    bottom: 8px;
    width: 145px;
    height: 145px;
    border-width: 22px;
  }

  .tp-about-visual__experience {
    left: 15px;
    bottom: 15px;
    min-width: 140px;
    padding: 16px 17px;
    border-radius: 18px;
  }

  .tp-about-visual__experience strong {
    font-size: 34px;
  }

  .tp-about-visual__experience span {
    font-size: 12px;
  }

  .tp-about-visual__quality {
    top: 15px;
    right: 15px;
    min-width: 210px;
    padding: 12px 13px;
    border-radius: 16px;
  }

  .tp-about-visual__quality>span {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 19px;
  }

  .tp-about-visual__quality strong {
    font-size: 13px;
  }

  .tp-about-visual__quality small {
    font-size: 10px;
  }

  .tp-about-visual__mini {
    right: 15px;
    bottom: 74px;
    padding: 11px 13px;
  }

  .tp-about-visual__mini span {
    font-size: 11px;
  }

  .tp-about-intro-content h2 {
    font-size: 34px;
  }

  .tp-about-intro-content p {
    font-size: 15px;
  }

  .tp-about-feature-grid {
    grid-template-columns: 1fr;
  }

  .tp-about-primary-btn,
  .tp-about-secondary-btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .tp-about-intro--premium {
    padding: 60px 0;
  }

  .tp-about-visual {
    min-height: 420px;
  }

  .tp-about-visual__main {
    height: 385px;
    border-radius: 22px;
  }

  .tp-about-visual__quality {
    max-width: calc(100% - 30px);
    min-width: auto;
  }

  .tp-about-visual__mini {
    display: none;
  }

  .tp-about-intro-tag {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-about-intro-content h2 {
    font-size: 29px;
  }

  .tp-about-product-tags span {
    font-size: 11px;
    padding: 7px 11px;
  }

  .tp-about-feature-item {
    padding: 15px;
    border-radius: 17px;
  }
}

/* =========================================================
   PREMIUM ABOUT STATS SECTION
========================================================= */

.tp-about-stats--premium {
  position: relative;
  padding: 105px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.16), transparent 32%),
    radial-gradient(circle at 92% 88%, rgba(207, 152, 119, 0.10), transparent 34%),
    linear-gradient(135deg, #111417 0%, #22272c 52%, #0b0d0f 100%);
  overflow: hidden;
}

.tp-about-stats--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.28;
  pointer-events: none;
}

.tp-about-stats--premium::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -120px;
  width: 330px;
  height: 330px;
  border: 48px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-about-stats--premium .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

.tp-about-stats-head {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.tp-about-stats-head span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 16px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-about-stats-head h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.tp-about-stats-head p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

/* Grid */

.tp-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Card */

.tp-about-stat-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  overflow: hidden;
  transition: 0.35s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tp-about-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 52%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-about-stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(207, 152, 119, 0.36);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.tp-about-stat-card:hover::before {
  opacity: 1;
}

/* Card Top */

.tp-about-stat-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.tp-about-stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background: #ffffff;
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transition: 0.35s ease;
}

.tp-about-stat-card:hover .tp-about-stat-icon {
  background: #cf9877;
  color: #111417;
  transform: rotate(-6deg) scale(1.08);
}

.tp-about-stat-card__top>span {
  color: rgba(207, 152, 119, 0.75);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

/* Text */

.tp-about-stat-card strong {
  position: relative;
  z-index: 2;
  display: block;
  color: #ffffff;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin-bottom: 13px;
}

.tp-about-stat-card p {
  position: relative;
  z-index: 2;
  max-width: 190px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
  margin: 0;
}

/* Bottom Line */

.tp-about-stat-line {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  height: 3px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.tp-about-stat-line::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, #986247, #cf9877);
  transition: 0.35s ease;
}

.tp-about-stat-card:hover .tp-about-stat-line::before {
  width: 100%;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-about-stats__grid {
    gap: 18px;
  }

  .tp-about-stat-card {
    min-height: 235px;
    padding: 24px;
  }
}

@media (max-width: 991.98px) {
  .tp-about-stats--premium {
    padding: 85px 0;
  }

  .tp-about-stats-head {
    margin-bottom: 42px;
  }

  .tp-about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-about-stat-card {
    min-height: 230px;
  }
}

@media (max-width: 767.98px) {
  .tp-about-stats--premium {
    padding: 70px 0;
  }

  .tp-about-stats-head h2 {
    font-size: 32px;
  }

  .tp-about-stats-head p {
    font-size: 15px;
  }

  .tp-about-stat-card {
    min-height: 215px;
    padding: 22px;
    border-radius: 24px;
  }

  .tp-about-stat-card__top {
    margin-bottom: 28px;
  }

  .tp-about-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    font-size: 22px;
  }

  .tp-about-stat-card strong {
    font-size: 42px;
  }

  .tp-about-stat-card p {
    font-size: 14px;
  }

  .tp-about-stat-line {
    left: 22px;
    right: 22px;
    bottom: 19px;
  }
}

@media (max-width: 575.98px) {
  .tp-about-stats__grid {
    grid-template-columns: 1fr;
  }

  .tp-about-stat-card {
    min-height: 205px;
    text-align: left;
  }

  .tp-about-stat-card p {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .tp-about-stats--premium {
    padding: 60px 0;
  }

  .tp-about-stats-head span {
    font-size: 10.5px;
    padding: 9px 15px;
  }

  .tp-about-stats-head h2 {
    font-size: 28px;
  }

  .tp-about-stat-card {
    padding: 20px;
    border-radius: 22px;
  }

  .tp-about-stat-card strong {
    font-size: 36px;
  }

  .tp-about-stat-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* =========================================================
   PREMIUM MANUFACTURING STRENGTH SECTION
========================================================= */

.tp-about-manufacturing--premium {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(207, 152, 119, 0.14), transparent 32%),
    radial-gradient(circle at 92% 84%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-about-manufacturing--premium::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 45px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-about-manufacturing--premium::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 95px;
  width: 310px;
  height: 310px;
  border-radius: 42px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-about-manufacturing--premium .container-xxl {
  position: relative;
  z-index: 2;
}

/* Left Intro Panel */

.tp-manufacturing-intro {
  position: sticky;
  top: 110px;
  height: 100%;
  min-height: 580px;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #25292d 58%, #0b0d0f 100%);
  box-shadow: 0 32px 85px rgba(17, 19, 21, 0.18);
  overflow: hidden;
}

.tp-manufacturing-intro::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 34px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
}

.tp-manufacturing-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.tp-manufacturing-kicker,
.tp-manufacturing-intro h2,
.tp-manufacturing-intro p,
.tp-manufacturing-highlight,
.tp-manufacturing-btn {
  position: relative;
  z-index: 2;
}

.tp-manufacturing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-manufacturing-intro h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.tp-manufacturing-intro p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 30px;
}

.tp-manufacturing-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.tp-manufacturing-highlight div {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.tp-manufacturing-highlight strong {
  display: block;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 8px;
}

.tp-manufacturing-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 750;
}

.tp-manufacturing-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #cf9877;
  color: #111417;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(207, 152, 119, 0.24);
  transition: 0.3s ease;
}

.tp-manufacturing-btn:hover {
  color: #111417;
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(255, 255, 255, 0.18);
}

/* Right Grid */

.tp-manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tp-manufacturing-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-manufacturing-card:nth-child(even) {
  transform: translateY(38px);
}

.tp-manufacturing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-manufacturing-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.13);
  transform: scale(0.7);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-manufacturing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.32);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

.tp-manufacturing-card:nth-child(even):hover {
  transform: translateY(26px);
}

.tp-manufacturing-card:hover::before,
.tp-manufacturing-card:hover::after {
  opacity: 1;
}

.tp-manufacturing-card:hover::after {
  transform: scale(1);
}

.tp-manufacturing-card__top,
.tp-manufacturing-card h3,
.tp-manufacturing-card p,
.tp-manufacturing-tags {
  position: relative;
  z-index: 2;
}

.tp-manufacturing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.tp-manufacturing-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 21px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 14px 32px rgba(17, 19, 21, 0.18);
  transition: 0.35s ease;
}

.tp-manufacturing-card:hover .tp-manufacturing-card__icon {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-manufacturing-card__top>span {
  color: rgba(152, 98, 71, 0.34);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.tp-manufacturing-card h3 {
  color: #191d20;
  font-size: 23px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.tp-manufacturing-card p {
  color: #696b6d;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.tp-manufacturing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tp-manufacturing-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.12);
  color: #7c4b34;
  font-size: 11px;
  font-weight: 850;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-manufacturing-intro {
    padding: 34px;
  }

  .tp-manufacturing-card {
    padding: 24px;
  }
}

@media (max-width: 991.98px) {
  .tp-about-manufacturing--premium {
    padding: 85px 0;
  }

  .tp-manufacturing-intro {
    position: relative;
    top: auto;
    min-height: auto;
    text-align: center;
  }

  .tp-manufacturing-highlight {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .tp-manufacturing-grid {
    margin-top: 10px;
  }

  .tp-manufacturing-card:nth-child(even),
  .tp-manufacturing-card:nth-child(even):hover {
    transform: none;
  }

  .tp-manufacturing-card:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 767.98px) {
  .tp-about-manufacturing--premium {
    padding: 70px 0;
  }

  .tp-manufacturing-intro {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .tp-manufacturing-intro h2 {
    font-size: 32px;
  }

  .tp-manufacturing-intro p {
    font-size: 15px;
  }

  .tp-manufacturing-highlight {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tp-manufacturing-highlight div {
    padding: 18px;
  }

  .tp-manufacturing-highlight strong {
    font-size: 32px;
  }

  .tp-manufacturing-btn {
    width: 100%;
    max-width: 320px;
  }

  .tp-manufacturing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tp-manufacturing-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .tp-manufacturing-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 23px;
  }

  .tp-manufacturing-card__top>span {
    font-size: 32px;
  }

  .tp-manufacturing-card h3 {
    font-size: 21px;
  }

  .tp-manufacturing-card p {
    font-size: 14.5px;
  }
}

@media (max-width: 420px) {
  .tp-about-manufacturing--premium {
    padding: 60px 0;
  }

  .tp-manufacturing-kicker {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-manufacturing-intro h2 {
    font-size: 28px;
  }

  .tp-manufacturing-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .tp-manufacturing-card__top {
    margin-bottom: 20px;
  }

  .tp-manufacturing-tags span {
    font-size: 10.5px;
  }
}

/* =========================================================
   PREMIUM QUALITY SECTION
========================================================= */

.tp-about-quality--premium {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(207, 152, 119, 0.13), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #f7f5f3 0%, #ffffff 100%);
  overflow: hidden;
}

.tp-about-quality--premium::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 80px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 42px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-about-quality--premium::after {
  content: "";
  position: absolute;
  right: -110px;
  top: 90px;
  width: 310px;
  height: 310px;
  border-radius: 44px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-about-quality--premium .container-xxl {
  position: relative;
  z-index: 2;
}

/* Main Box */

.tp-quality-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
  padding: 26px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 30px 90px rgba(17, 19, 21, 0.11);
}

/* Left Visual */

.tp-quality-visual {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background: #ececec;
}

.tp-quality-main-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}

.tp-quality-main-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 48%);
  pointer-events: none;
}

.tp-quality-main-img img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-quality-visual:hover .tp-quality-main-img img {
  transform: scale(1.08);
}

/* Floating Cards */

.tp-quality-floating-card {
  position: absolute;
  z-index: 3;
  left: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 45px rgba(17, 19, 21, 0.18);
  backdrop-filter: blur(10px);
}

.tp-quality-floating-card>span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 15px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.tp-quality-floating-card strong {
  display: block;
  color: #191d20;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.1;
}

.tp-quality-floating-card small {
  display: block;
  color: #686b6d;
  font-size: 11px;
  font-weight: 750;
  margin-top: 4px;
}

.tp-quality-mini-card {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  min-width: 145px;
  padding: 19px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 20px 48px rgba(17, 19, 21, 0.22);
}

.tp-quality-mini-card strong {
  display: block;
  color: #986247;
  font-size: 40px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1px;
}

.tp-quality-mini-card span {
  display: block;
  color: #202326;
  font-size: 12px;
  font-weight: 850;
  margin-top: 7px;
}

/* Right Content */

.tp-quality-content {
  position: relative;
  padding: 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.20), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  overflow: hidden;
}

.tp-quality-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.tp-quality-content::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 34px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
}

.tp-quality-kicker,
.tp-quality-content h2,
.tp-quality-content>p,
.tp-quality-process,
.tp-quality-btn {
  position: relative;
  z-index: 2;
}

.tp-quality-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-quality-content h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.tp-quality-content>p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 28px;
}

/* Process Items */

.tp-quality-process {
  display: grid;
  gap: 14px;
}

.tp-quality-process-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 17px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.32s ease;
}

.tp-quality-process-item:hover {
  transform: translateX(8px);
  background: rgba(207, 152, 119, 0.13);
  border-color: rgba(207, 152, 119, 0.28);
}

.tp-quality-process-no {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: #cf9877;
  color: #111417;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
}

.tp-quality-process-item strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 5px;
}

.tp-quality-process-item p {
  color: rgba(255, 255, 255, 0.69);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* Button */

.tp-quality-btn {
  min-height: 54px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  margin-top: 28px;
  border-radius: 50px;
  background: #cf9877;
  color: #111417;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(207, 152, 119, 0.24);
  transition: 0.3s ease;
}

.tp-quality-btn:hover {
  color: #111417;
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(255, 255, 255, 0.18);
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-quality-wrapper {
    gap: 24px;
    padding: 22px;
  }

  .tp-quality-content {
    padding: 34px;
  }
}

@media (max-width: 991.98px) {
  .tp-about-quality--premium {
    padding: 85px 0;
  }

  .tp-quality-wrapper {
    grid-template-columns: 1fr;
  }

  .tp-quality-visual,
  .tp-quality-main-img,
  .tp-quality-main-img img {
    min-height: 470px;
  }

  .tp-quality-content {
    text-align: center;
  }

  .tp-quality-kicker,
  .tp-quality-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-quality-process-item {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .tp-about-quality--premium {
    padding: 70px 0;
  }

  .tp-quality-wrapper {
    padding: 15px;
    border-radius: 26px;
  }

  .tp-quality-visual,
  .tp-quality-main-img,
  .tp-quality-main-img img {
    min-height: 390px;
    border-radius: 22px;
  }

  .tp-quality-floating-card {
    left: 15px;
    top: 15px;
    min-width: 215px;
    padding: 12px 13px;
    border-radius: 16px;
  }

  .tp-quality-floating-card>span {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 19px;
  }

  .tp-quality-mini-card {
    right: 15px;
    bottom: 15px;
    min-width: 125px;
    padding: 15px 16px;
    border-radius: 18px;
  }

  .tp-quality-mini-card strong {
    font-size: 32px;
  }

  .tp-quality-content {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .tp-quality-content h2 {
    font-size: 31px;
  }

  .tp-quality-content>p {
    font-size: 15px;
  }

  .tp-quality-process-item {
    padding: 15px;
    border-radius: 17px;
  }

  .tp-quality-btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .tp-about-quality--premium {
    padding: 60px 0;
  }

  .tp-quality-visual,
  .tp-quality-main-img,
  .tp-quality-main-img img {
    min-height: 340px;
  }

  .tp-quality-floating-card {
    max-width: calc(100% - 30px);
    min-width: auto;
  }

  .tp-quality-mini-card {
    left: 15px;
    right: auto;
  }

  .tp-quality-kicker {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-quality-content h2 {
    font-size: 27px;
  }

  .tp-quality-process-item {
    gap: 12px;
  }

  .tp-quality-process-no {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
    font-size: 12px;
  }
}

/* =========================================================
   PREMIUM MISSION VISION SECTION
========================================================= */

.tp-about-mv--premium {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(207, 152, 119, 0.13), transparent 32%),
    radial-gradient(circle at 90% 82%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-about-mv--premium::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 120px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 44px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-about-mv--premium::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: 90px;
  width: 310px;
  height: 310px;
  border-radius: 44px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-about-mv--premium .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

.tp-mv-heading {
  max-width: 830px;
  margin: 0 auto 55px;
  text-align: center;
}

.tp-mv-heading>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 17px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-mv-heading h2 {
  color: #191d20;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}

.tp-mv-heading p {
  max-width: 690px;
  margin: 0 auto;
  color: #686b6d;
  font-size: 16px;
  line-height: 1.75;
}

/* Wrapper */

.tp-mv-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Cards */

.tp-mv-card {
  position: relative;
  min-height: 560px;
  padding: 38px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 24px 70px rgba(17, 19, 21, 0.10);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.16), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-mv-card::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.13);
  transition: 0.35s ease;
}

.tp-mv-card:hover {
  transform: translateY(-9px);
  border-color: rgba(207, 152, 119, 0.34);
  box-shadow: 0 34px 90px rgba(17, 19, 21, 0.16);
}

.tp-mv-card:hover::before {
  opacity: 1;
}

.tp-mv-card__number,
.tp-mv-card__icon,
.tp-mv-card>span,
.tp-mv-card h3,
.tp-mv-card p,
.tp-mv-card ul {
  position: relative;
  z-index: 2;
}

.tp-mv-card__number {
  position: absolute;
  right: 30px;
  top: 30px;
  color: rgba(152, 98, 71, 0.16);
  font-size: 62px;
  line-height: 1;
  font-weight: 950;
}

.tp-mv-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 28px;
  box-shadow: 0 16px 36px rgba(17, 19, 21, 0.18);
  transition: 0.35s ease;
}

.tp-mv-card:hover .tp-mv-card__icon {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-mv-card>span {
  display: block;
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tp-mv-card h3 {
  color: #191d20;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -0.7px;
  margin-bottom: 16px;
}

.tp-mv-card p {
  color: #696b6d;
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.tp-mv-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tp-mv-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #404345;
  font-size: 14.5px;
  font-weight: 750;
  line-height: 1.45;
}

.tp-mv-card li i {
  color: #986247;
  font-size: 16px;
  margin-top: 2px;
}

/* Mission Dark Card */

.tp-mv-card--mission {
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.20), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.tp-mv-card--mission::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
}

.tp-mv-card--mission::after {
  background: rgba(207, 152, 119, 0.12);
}

.tp-mv-card--mission .tp-mv-card__number {
  color: rgba(255, 255, 255, 0.08);
}

.tp-mv-card--mission .tp-mv-card__icon {
  background: #ffffff;
  color: #986247;
}

.tp-mv-card--mission:hover .tp-mv-card__icon {
  background: #cf9877;
  color: #111417;
}

.tp-mv-card--mission>span {
  color: #cf9877;
}

.tp-mv-card--mission h3 {
  color: #ffffff;
}

.tp-mv-card--mission p,
.tp-mv-card--mission li {
  color: rgba(255, 255, 255, 0.74);
}

.tp-mv-card--mission li i {
  color: #cf9877;
}

/* Center Image */

.tp-mv-center {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 24px 70px rgba(17, 19, 21, 0.12);
}

.tp-mv-center::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 48%);
  pointer-events: none;
}

.tp-mv-center__image,
.tp-mv-center__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.tp-mv-center__image img {
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-mv-center:hover .tp-mv-center__image img {
  transform: scale(1.08);
}

.tp-mv-center__badge {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 20px 48px rgba(17, 19, 21, 0.22);
  backdrop-filter: blur(10px);
}

.tp-mv-center__badge strong {
  display: block;
  color: #986247;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 6px;
}

.tp-mv-center__badge span {
  display: block;
  color: #202326;
  font-size: 13px;
  font-weight: 850;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-mv-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .tp-mv-center {
    grid-column: 1 / -1;
    min-height: 430px;
    order: 3;
  }

  .tp-mv-center__image,
  .tp-mv-center__image img {
    min-height: 430px;
  }

  .tp-mv-card {
    min-height: 520px;
  }
}

@media (max-width: 991.98px) {
  .tp-about-mv--premium {
    padding: 85px 0;
  }

  .tp-mv-heading {
    margin-bottom: 42px;
  }

  .tp-mv-wrapper {
    grid-template-columns: 1fr;
  }

  .tp-mv-card {
    min-height: auto;
  }

  .tp-mv-center {
    order: 2;
  }

  .tp-mv-card--mission {
    order: 3;
  }
}

@media (max-width: 767.98px) {
  .tp-about-mv--premium {
    padding: 70px 0;
  }

  .tp-mv-heading h2 {
    font-size: 32px;
  }

  .tp-mv-heading p {
    font-size: 15px;
  }

  .tp-mv-card {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .tp-mv-card__number {
    right: 22px;
    top: 22px;
    font-size: 46px;
  }

  .tp-mv-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 19px;
    font-size: 25px;
    margin-bottom: 22px;
  }

  .tp-mv-card h3 {
    font-size: 25px;
  }

  .tp-mv-card p {
    font-size: 14.5px;
  }

  .tp-mv-card li {
    font-size: 14px;
  }

  .tp-mv-center,
  .tp-mv-center__image,
  .tp-mv-center__image img {
    min-height: 360px;
    border-radius: 26px;
  }

  .tp-mv-center__badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
    border-radius: 18px;
  }
}

@media (max-width: 420px) {
  .tp-about-mv--premium {
    padding: 60px 0;
  }

  .tp-mv-heading>span {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-mv-heading h2 {
    font-size: 28px;
  }

  .tp-mv-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .tp-mv-card h3 {
    font-size: 22px;
  }

  .tp-mv-center,
  .tp-mv-center__image,
  .tp-mv-center__image img {
    min-height: 310px;
    border-radius: 22px;
  }

  .tp-mv-center__badge strong {
    font-size: 23px;
  }
}

/* =========================================================
   PREMIUM WHY CHOOSE SECTION
========================================================= */

.tp-about-why--premium {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.13), transparent 32%),
    radial-gradient(circle at 92% 84%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #f7f5f3 0%, #ffffff 100%);
  overflow: hidden;
}

.tp-about-why--premium::before {
  content: "";
  position: absolute;
  left: -125px;
  top: 120px;
  width: 285px;
  height: 285px;
  border-radius: 50%;
  border: 45px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-about-why--premium::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 85px;
  width: 315px;
  height: 315px;
  border-radius: 44px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-about-why--premium .container-xxl {
  position: relative;
  z-index: 2;
}

/* Left Panel */

.tp-why-left {
  position: sticky;
  top: 110px;
  height: 100%;
  min-height: 660px;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #25292d 58%, #0b0d0f 100%);
  box-shadow: 0 32px 85px rgba(17, 19, 21, 0.18);
  overflow: hidden;
}

.tp-why-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.tp-why-left::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 34px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
}

.tp-why-kicker,
.tp-why-left h2,
.tp-why-left p,
.tp-why-image,
.tp-why-btn {
  position: relative;
  z-index: 2;
}

.tp-why-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-why-left h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.tp-why-left p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 28px;
}

/* Image */

.tp-why-image {
  position: relative;
  height: 255px;
  margin-bottom: 30px;
  border-radius: 26px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.tp-why-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.15), transparent 45%);
  pointer-events: none;
}

.tp-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.tp-why-left:hover .tp-why-image img {
  transform: scale(1.08);
}

.tp-why-image-card {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  min-width: 150px;
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 16px 38px rgba(17, 19, 21, 0.20);
  backdrop-filter: blur(10px);
}

.tp-why-image-card strong {
  display: block;
  color: #986247;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.tp-why-image-card span {
  display: block;
  color: #202326;
  font-size: 12px;
  font-weight: 850;
  margin-top: 6px;
}

/* Button */

.tp-why-btn {
  min-height: 54px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #cf9877;
  color: #111417;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(207, 152, 119, 0.24);
  transition: 0.3s ease;
}

.tp-why-btn:hover {
  color: #111417;
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(255, 255, 255, 0.18);
}

/* Right Grid */

.tp-why-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tp-why-card {
  position: relative;
  min-height: 255px;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-why-card:nth-child(even) {
  transform: translateY(36px);
}

.tp-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-why-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.13);
  transform: scale(0.7);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.32);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

.tp-why-card:nth-child(even):hover {
  transform: translateY(24px);
}

.tp-why-card:hover::before,
.tp-why-card:hover::after {
  opacity: 1;
}

.tp-why-card:hover::after {
  transform: scale(1);
}

.tp-why-card__icon,
.tp-why-card>span,
.tp-why-card h3,
.tp-why-card p {
  position: relative;
  z-index: 2;
}

.tp-why-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 21px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 24px;
  box-shadow: 0 14px 32px rgba(17, 19, 21, 0.18);
  transition: 0.35s ease;
}

.tp-why-card:hover .tp-why-card__icon {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-why-card>span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(152, 98, 71, 0.22);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.tp-why-card h3 {
  color: #191d20;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.tp-why-card p {
  color: #696b6d;
  font-size: 15px;
  line-height: 1.68;
  margin: 0;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-why-left {
    padding: 34px;
  }

  .tp-why-card {
    padding: 24px;
  }
}

@media (max-width: 991.98px) {
  .tp-about-why--premium {
    padding: 85px 0;
  }

  .tp-why-left {
    position: relative;
    top: auto;
    min-height: auto;
    text-align: center;
  }

  .tp-why-image {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .tp-why-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-why-card:nth-child(even),
  .tp-why-card:nth-child(even):hover {
    transform: none;
  }

  .tp-why-card:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 767.98px) {
  .tp-about-why--premium {
    padding: 70px 0;
  }

  .tp-why-left {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .tp-why-left h2 {
    font-size: 32px;
  }

  .tp-why-left p {
    font-size: 15px;
  }

  .tp-why-image {
    height: 230px;
    border-radius: 22px;
  }

  .tp-why-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tp-why-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .tp-why-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 23px;
  }

  .tp-why-card>span {
    top: 24px;
    right: 24px;
    font-size: 32px;
  }

  .tp-why-card h3 {
    font-size: 21px;
  }

  .tp-why-card p {
    font-size: 14.5px;
  }

  .tp-why-btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .tp-about-why--premium {
    padding: 60px 0;
  }

  .tp-why-kicker {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-why-left h2 {
    font-size: 28px;
  }

  .tp-why-image {
    height: 205px;
  }

  .tp-why-image-card {
    left: 14px;
    bottom: 14px;
    padding: 14px 15px;
  }

  .tp-why-image-card strong {
    font-size: 28px;
  }

  .tp-why-card {
    padding: 22px 18px;
    border-radius: 22px;
  }
}



/* =========================================================
   TECHNO INFRASTRUCTURE PAGE UI
========================================================= */

.tp-infra-page {
  overflow: hidden;
  background: #ffffff;
}



/* =========================================================
   MODERN INFRASTRUCTURE INTRO - DIFFERENT UI
========================================================= */

.tp-infra-intro--modern {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(207, 152, 119, 0.14), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-infra-intro--modern::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 140px;
  width: 290px;
  height: 290px;
  border: 46px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-infra-intro--modern::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 90px;
  width: 320px;
  height: 320px;
  border-radius: 46px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-infra-intro--modern .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

.tp-infra-modern-head {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.tp-infra-modern-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-infra-modern-head h2 {
  color: #191d20;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.tp-infra-modern-head p {
  max-width: 730px;
  margin: 0 auto;
  color: #66696b;
  font-size: 16px;
  line-height: 1.75;
}

/* Layout */

.tp-infra-modern-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.tp-infra-modern-content {
  display: grid;
  gap: 22px;
}

/* Cards */

.tp-infra-modern-card {
  position: relative;
  min-height: 265px;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-infra-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.17), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-infra-modern-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.13);
  transform: scale(0.7);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-infra-modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.34);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

.tp-infra-modern-card:hover::before,
.tp-infra-modern-card:hover::after {
  opacity: 1;
}

.tp-infra-modern-card:hover::after {
  transform: scale(1);
}

.tp-infra-modern-card__icon,
.tp-infra-modern-card>span,
.tp-infra-modern-card h3,
.tp-infra-modern-card p {
  position: relative;
  z-index: 2;
}

.tp-infra-modern-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 21px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 24px;
  box-shadow: 0 14px 32px rgba(17, 19, 21, 0.18);
  transition: 0.35s ease;
}

.tp-infra-modern-card:hover .tp-infra-modern-card__icon {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-infra-modern-card>span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(152, 98, 71, 0.22);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.tp-infra-modern-card h3 {
  color: #191d20;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.tp-infra-modern-card p {
  color: #696b6d;
  font-size: 15px;
  line-height: 1.68;
  margin: 0;
}

/* Dark Cards */

.tp-infra-modern-card--dark,
.tp-infra-modern-card--brown {
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.20), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.tp-infra-modern-card--brown {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(135deg, #986247 0%, #7c4b34 58%, #3d2418 100%);
}

.tp-infra-modern-card--dark::before,
.tp-infra-modern-card--brown::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
}

.tp-infra-modern-card--dark .tp-infra-modern-card__icon,
.tp-infra-modern-card--brown .tp-infra-modern-card__icon {
  background: #ffffff;
  color: #986247;
}

.tp-infra-modern-card--dark:hover .tp-infra-modern-card__icon,
.tp-infra-modern-card--brown:hover .tp-infra-modern-card__icon {
  background: #cf9877;
  color: #111417;
}

.tp-infra-modern-card--dark>span,
.tp-infra-modern-card--brown>span {
  color: rgba(255, 255, 255, 0.12);
}

.tp-infra-modern-card--dark h3,
.tp-infra-modern-card--brown h3 {
  color: #ffffff;
}

.tp-infra-modern-card--dark p,
.tp-infra-modern-card--brown p {
  color: rgba(255, 255, 255, 0.74);
}

/* Center Visual */

.tp-infra-modern-visual {
  position: relative;
  min-height: 640px;
}

.tp-infra-modern-img {
  position: absolute;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 30px 80px rgba(17, 19, 21, 0.18);
}

.tp-infra-modern-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 48%);
  pointer-events: none;
}

.tp-infra-modern-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-infra-modern-visual:hover .tp-infra-modern-img img {
  transform: scale(1.08);
}

.tp-infra-modern-img--main {
  left: 0;
  top: 0;
  width: 86%;
  height: 560px;
  border-radius: 38px;
}

.tp-infra-modern-img--small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 250px;
  border-radius: 28px;
  border: 8px solid #ffffff;
  z-index: 4;
}

/* Visual Badges */

.tp-infra-modern-badge {
  position: absolute;
  z-index: 5;
  left: 26px;
  bottom: 100px;
  min-width: 165px;
  padding: 19px 21px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 22px 50px rgba(17, 19, 21, 0.22);
}

.tp-infra-modern-badge strong {
  display: block;
  color: #986247;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.tp-infra-modern-badge span {
  display: block;
  color: #202326;
  font-size: 13px;
  font-weight: 850;
  margin-top: 7px;
}

.tp-infra-modern-quality {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
  padding: 14px 17px;
  border-radius: 50px;
  background: #111417;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.25);
}

.tp-infra-modern-quality i {
  color: #cf9877;
  font-size: 19px;
}

.tp-infra-modern-quality span {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

/* Bottom Strip */

.tp-infra-modern-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
  padding: 28px 32px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 20px 60px rgba(17, 19, 21, 0.10);
}

.tp-infra-modern-strip strong {
  display: block;
  color: #191d20;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 6px;
}

.tp-infra-modern-strip span {
  display: block;
  color: #696b6d;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.tp-infra-modern-strip a {
  min-height: 54px;
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #986247;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(152, 98, 71, 0.24);
  transition: 0.3s ease;
}

.tp-infra-modern-strip a:hover {
  color: #ffffff;
  background: #111417;
  transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-infra-modern-layout {
    grid-template-columns: 1fr 1fr;
  }

  .tp-infra-modern-visual {
    grid-column: 1 / -1;
    order: -1;
    max-width: 760px;
    width: 100%;
    margin: 0 auto 10px;
  }

  .tp-infra-modern-card {
    min-height: 245px;
  }
}

@media (max-width: 991.98px) {
  .tp-infra-intro--modern {
    padding: 85px 0;
  }

  .tp-infra-modern-head {
    margin-bottom: 45px;
  }

  .tp-infra-modern-head h2 {
    font-size: 34px;
  }

  .tp-infra-modern-layout {
    grid-template-columns: 1fr;
  }

  .tp-infra-modern-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-infra-modern-visual {
    min-height: 560px;
  }

  .tp-infra-modern-img--main {
    height: 500px;
  }

  .tp-infra-modern-strip {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .tp-infra-intro--modern {
    padding: 70px 0;
  }

  .tp-infra-modern-head h2 {
    font-size: 31px;
  }

  .tp-infra-modern-head p {
    font-size: 15px;
  }

  .tp-infra-modern-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tp-infra-modern-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .tp-infra-modern-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 23px;
  }

  .tp-infra-modern-card>span {
    top: 24px;
    right: 24px;
    font-size: 32px;
  }

  .tp-infra-modern-card h3 {
    font-size: 21px;
  }

  .tp-infra-modern-card p {
    font-size: 14.5px;
  }

  .tp-infra-modern-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .tp-infra-modern-img {
    position: relative;
  }

  .tp-infra-modern-img--main,
  .tp-infra-modern-img--small {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 360px;
    border-radius: 24px;
    border: 0;
  }

  .tp-infra-modern-img--small {
    height: 230px;
  }

  .tp-infra-modern-badge {
    left: 16px;
    bottom: 260px;
    padding: 16px 17px;
    border-radius: 18px;
  }

  .tp-infra-modern-badge strong {
    font-size: 28px;
  }

  .tp-infra-modern-quality {
    top: 16px;
    right: 16px;
    max-width: 225px;
    padding: 12px 14px;
  }

  .tp-infra-modern-quality span {
    font-size: 11px;
  }

  .tp-infra-modern-strip {
    margin-top: 40px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .tp-infra-modern-strip strong {
    font-size: 22px;
  }

  .tp-infra-modern-strip a {
    width: 100%;
    min-width: auto;
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .tp-infra-intro--modern {
    padding: 60px 0;
  }

  .tp-infra-modern-tag {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-infra-modern-head h2 {
    font-size: 27px;
  }

  .tp-infra-modern-img--main {
    height: 310px;
  }

  .tp-infra-modern-img--small {
    height: 210px;
  }

  .tp-infra-modern-badge {
    bottom: 238px;
    left: 14px;
  }

  .tp-infra-modern-quality {
    max-width: calc(100% - 28px);
    left: 14px;
    right: 14px;
    justify-content: center;
    border-radius: 18px;
  }

  .tp-infra-modern-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .tp-infra-modern-strip {
    padding: 22px 18px;
  }

  .tp-infra-modern-strip strong {
    font-size: 20px;
  }
}

/* =========================================================
   FACILITY HIGHLIGHTS - MODERN FLOW UI
========================================================= */

.tp-infra-highlights--flow {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.14), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-infra-highlights--flow::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 130px;
  width: 285px;
  height: 285px;
  border-radius: 50%;
  border: 45px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-infra-highlights--flow::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 90px;
  width: 315px;
  height: 315px;
  border-radius: 44px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-infra-highlights--flow .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

.tp-facility-head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.tp-facility-head>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-facility-head h2 {
  color: #191d20;
  font-size: clamp(2.1rem, 4.4vw, 3.75rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.tp-facility-head p {
  max-width: 720px;
  margin: 0 auto;
  color: #66696b;
  font-size: 16px;
  line-height: 1.75;
}

/* Showcase */

.tp-facility-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.tp-facility-showcase__image {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 30px 85px rgba(17, 19, 21, 0.16);
}

.tp-facility-showcase__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 48%);
  pointer-events: none;
}

.tp-facility-showcase__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-facility-showcase__image:hover img {
  transform: scale(1.08);
}

.tp-facility-image-badge {
  position: absolute;
  z-index: 3;
  left: 26px;
  bottom: 26px;
  min-width: 190px;
  padding: 20px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 20px 48px rgba(17, 19, 21, 0.22);
}

.tp-facility-image-badge strong {
  display: block;
  color: #986247;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.tp-facility-image-badge span {
  display: block;
  color: #202326;
  font-size: 13px;
  font-weight: 850;
  margin-top: 7px;
}

/* Right Panel */

.tp-facility-panel {
  position: relative;
  padding: 38px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  box-shadow: 0 30px 85px rgba(17, 19, 21, 0.18);
  overflow: hidden;
}

.tp-facility-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.tp-facility-panel::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-facility-panel__top,
.tp-facility-panel__list,
.tp-facility-panel__btn {
  position: relative;
  z-index: 2;
}

.tp-facility-panel__top>span {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-facility-panel__top h3 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.tp-facility-panel__top p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 25px;
}

.tp-facility-panel__list {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.tp-facility-panel__list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.3s ease;
}

.tp-facility-panel__list div:hover {
  transform: translateX(6px);
  background: rgba(207, 152, 119, 0.13);
  border-color: rgba(207, 152, 119, 0.28);
}

.tp-facility-panel__list i {
  color: #cf9877;
  font-size: 18px;
  margin-top: 2px;
}

.tp-facility-panel__list span {
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;
}

.tp-facility-panel__btn {
  min-height: 54px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #cf9877;
  color: #111417;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(207, 152, 119, 0.24);
  transition: 0.3s ease;
}

.tp-facility-panel__btn:hover {
  color: #111417;
  background: #ffffff;
  transform: translateY(-4px);
}

/* Bottom Flow Cards */

.tp-facility-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tp-facility-flow-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 215px;
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-facility-flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.15), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-facility-flow-card::after {
  content: "";
  position: absolute;
  left: 48px;
  top: 88px;
  bottom: 22px;
  width: 2px;
  border-radius: 20px;
  background: rgba(207, 152, 119, 0.18);
}

.tp-facility-flow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.34);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

.tp-facility-flow-card:hover::before {
  opacity: 1;
}

.tp-facility-flow-card__icon,
.tp-facility-flow-card__content {
  position: relative;
  z-index: 2;
}

.tp-facility-flow-card__icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 17px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(17, 19, 21, 0.16);
  transition: 0.35s ease;
}

.tp-facility-flow-card:hover .tp-facility-flow-card__icon {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-facility-flow-card__content span {
  display: block;
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.tp-facility-flow-card__content h3 {
  color: #191d20;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 9px;
}

.tp-facility-flow-card__content p {
  color: #696b6d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-facility-showcase {
    grid-template-columns: 1fr;
  }

  .tp-facility-showcase__image,
  .tp-facility-showcase__image img {
    min-height: 460px;
  }

  .tp-facility-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .tp-infra-highlights--flow {
    padding: 85px 0;
  }

  .tp-facility-head {
    margin-bottom: 44px;
  }

  .tp-facility-head h2 {
    font-size: 34px;
  }

  .tp-facility-panel {
    text-align: center;
  }

  .tp-facility-panel__list div {
    text-align: left;
  }

  .tp-facility-panel__btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .tp-infra-highlights--flow {
    padding: 70px 0;
  }

  .tp-facility-head h2 {
    font-size: 31px;
  }

  .tp-facility-head p {
    font-size: 15px;
  }

  .tp-facility-showcase {
    gap: 20px;
  }

  .tp-facility-showcase__image,
  .tp-facility-showcase__image img {
    min-height: 360px;
    border-radius: 26px;
  }

  .tp-facility-image-badge {
    left: 16px;
    bottom: 16px;
    min-width: 155px;
    padding: 16px 17px;
    border-radius: 18px;
  }

  .tp-facility-image-badge strong {
    font-size: 28px;
  }

  .tp-facility-panel {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .tp-facility-panel__top h3 {
    font-size: 29px;
  }

  .tp-facility-panel__top p {
    font-size: 15px;
  }

  .tp-facility-panel__btn {
    width: 100%;
    max-width: 320px;
  }

  .tp-facility-flow-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tp-facility-flow-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .tp-infra-highlights--flow {
    padding: 60px 0;
  }

  .tp-facility-head>span,
  .tp-facility-panel__top>span {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-facility-head h2 {
    font-size: 27px;
  }

  .tp-facility-showcase__image,
  .tp-facility-showcase__image img {
    min-height: 310px;
  }

  .tp-facility-panel {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .tp-facility-panel__top h3 {
    font-size: 25px;
  }

  .tp-facility-flow-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .tp-facility-flow-card__icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 20px;
  }

  .tp-facility-flow-card::after {
    left: 41px;
  }
}

/* =========================================================
   INFRASTRUCTURE SHOWCASE - TIMELINE UI
========================================================= */

.tp-infra-showcase--timeline {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(207, 152, 119, 0.18), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(207, 152, 119, 0.10), transparent 34%),
    linear-gradient(135deg, #111417 0%, #24292e 55%, #0b0d0f 100%);
  overflow: hidden;
}

.tp-infra-showcase--timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.28;
  pointer-events: none;
}

.tp-infra-showcase--timeline::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border: 52px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-infra-showcase--timeline .container-xxl {
  position: relative;
  z-index: 2;
}

/* Main Wrapper */

.tp-infra-timeline-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

/* Left Content */

.tp-infra-timeline-content {
  max-width: 610px;
}

.tp-infra-timeline-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.25);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-infra-timeline-content h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4.5vw, 3.85rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
}

.tp-infra-timeline-content>p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 32px;
}

/* Timeline List */

.tp-infra-timeline-list {
  position: relative;
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.tp-infra-timeline-list::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(207, 152, 119, 0.22);
}

.tp-infra-timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.32s ease;
}

.tp-infra-timeline-step:hover,
.tp-infra-timeline-step.active {
  transform: translateX(8px);
  background: rgba(207, 152, 119, 0.13);
  border-color: rgba(207, 152, 119, 0.30);
}

.tp-infra-timeline-step strong {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 17px;
  background: #cf9877;
  color: #111417;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(207, 152, 119, 0.24);
}

.tp-infra-timeline-step h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 6px;
}

.tp-infra-timeline-step p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.tp-infra-timeline-btn {
  min-height: 54px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #cf9877;
  color: #111417;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(207, 152, 119, 0.24);
  transition: 0.3s ease;
}

.tp-infra-timeline-btn:hover {
  color: #111417;
  background: #ffffff;
  transform: translateY(-4px);
}

/* Right Visual */

.tp-infra-timeline-visual {
  position: relative;
  min-height: 680px;
}

.tp-infra-timeline-main-img {
  position: absolute;
  top: 40px;
  right: 0;
  width: 82%;
  height: 560px;
  border-radius: 40px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.28);
}

.tp-infra-timeline-main-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 52%);
  pointer-events: none;
}

.tp-infra-timeline-main-img img,
.tp-infra-timeline-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-infra-timeline-main-img:hover img,
.tp-infra-timeline-small-img:hover img {
  transform: scale(1.08);
}

.tp-infra-timeline-main-label {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border-radius: 50px;
  background: #ffffff;
  color: #111417;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.tp-infra-timeline-main-label i {
  color: #986247;
  font-size: 19px;
}

.tp-infra-timeline-main-label span {
  font-size: 12px;
  font-weight: 900;
}

/* Small Images */

.tp-infra-timeline-small-img {
  position: absolute;
  z-index: 4;
  width: 260px;
  height: 220px;
  border-radius: 28px;
  overflow: hidden;
  background: #eeeeee;
  border: 8px solid #111417;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.30);
}

.tp-infra-timeline-small-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.66));
  pointer-events: none;
}

.tp-infra-timeline-small-img span {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  bottom: 15px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 950;
}

.tp-infra-timeline-small-img--one {
  left: 0;
  top: 0;
}

.tp-infra-timeline-small-img--two {
  left: 42px;
  bottom: 0;
}

/* Count Card */

.tp-infra-timeline-count-card {
  position: absolute;
  z-index: 5;
  right: 30px;
  top: 0;
  min-width: 155px;
  padding: 20px 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.30);
}

.tp-infra-timeline-count-card strong {
  display: block;
  color: #986247;
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
}

.tp-infra-timeline-count-card span {
  display: block;
  color: #202326;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
  margin-top: 7px;
}

/* Bottom Cards */

.tp-infra-timeline-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.tp-infra-timeline-bottom-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.35s ease;
}

.tp-infra-timeline-bottom-card:hover {
  transform: translateY(-7px);
  background: rgba(207, 152, 119, 0.13);
  border-color: rgba(207, 152, 119, 0.30);
}

.tp-infra-timeline-bottom-card i {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 18px;
  background: #ffffff;
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.35s ease;
}

.tp-infra-timeline-bottom-card:hover i {
  background: #cf9877;
  color: #111417;
  transform: rotate(-6deg) scale(1.08);
}

.tp-infra-timeline-bottom-card h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 6px;
}

.tp-infra-timeline-bottom-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-infra-timeline-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .tp-infra-timeline-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
  }

  .tp-infra-timeline-list {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .tp-infra-timeline-step {
    text-align: left;
  }

  .tp-infra-timeline-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-infra-timeline-visual {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 991.98px) {
  .tp-infra-showcase--timeline {
    padding: 85px 0;
  }

  .tp-infra-timeline-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .tp-infra-showcase--timeline {
    padding: 70px 0;
  }

  .tp-infra-timeline-content h2 {
    font-size: 31px;
  }

  .tp-infra-timeline-content>p {
    font-size: 15px;
  }

  .tp-infra-timeline-step {
    padding: 15px;
    border-radius: 18px;
    gap: 13px;
  }

  .tp-infra-timeline-step strong {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
  }

  .tp-infra-timeline-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .tp-infra-timeline-main-img,
  .tp-infra-timeline-small-img,
  .tp-infra-timeline-count-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
  }

  .tp-infra-timeline-main-img {
    height: 370px;
    border-radius: 26px;
  }

  .tp-infra-timeline-small-img {
    height: 230px;
    border: 0;
    border-radius: 24px;
  }

  .tp-infra-timeline-count-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
    min-width: auto;
    border-radius: 22px;
  }

  .tp-infra-timeline-count-card strong {
    font-size: 36px;
  }

  .tp-infra-timeline-main-label {
    left: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }

  .tp-infra-timeline-btn {
    width: 100%;
    max-width: 320px;
  }

  .tp-infra-timeline-bottom-card {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .tp-infra-showcase--timeline {
    padding: 60px 0;
  }

  .tp-infra-timeline-tag {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-infra-timeline-content h2 {
    font-size: 27px;
  }

  .tp-infra-timeline-step {
    align-items: flex-start;
  }

  .tp-infra-timeline-main-img {
    height: 310px;
  }

  .tp-infra-timeline-small-img {
    height: 205px;
  }

  .tp-infra-timeline-main-label {
    border-radius: 18px;
    max-width: calc(100% - 32px);
  }

  .tp-infra-timeline-bottom-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .tp-infra-timeline-bottom-card i {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 20px;
  }
}

/* =========================================================
   MANUFACTURING PROCESS - PREMIUM FLOW UI
========================================================= */

.tp-infra-process--premium-flow {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(207, 152, 119, 0.14), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-infra-process--premium-flow::before {
  content: "";
  position: absolute;
  left: -125px;
  top: 120px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 46px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-infra-process--premium-flow::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 90px;
  width: 320px;
  height: 320px;
  border-radius: 46px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-infra-process--premium-flow .container-xxl {
  position: relative;
  z-index: 2;
}

/* Main Layout */

.tp-process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}

/* Left Panel */

.tp-process-left {
  position: sticky;
  top: 110px;
  min-height: 700px;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  box-shadow: 0 32px 90px rgba(17, 19, 21, 0.18);
  overflow: hidden;
}

.tp-process-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.tp-process-left::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-process-kicker,
.tp-process-left h2,
.tp-process-left p,
.tp-process-left__image,
.tp-process-btn {
  position: relative;
  z-index: 2;
}

.tp-process-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-process-left h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.tp-process-left p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 30px;
}

/* Left Image */

.tp-process-left__image {
  position: relative;
  height: 285px;
  margin-bottom: 30px;
  border-radius: 28px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.tp-process-left__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 48%);
  pointer-events: none;
}

.tp-process-left__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-process-left:hover .tp-process-left__image img {
  transform: scale(1.08);
}

.tp-process-left__badge {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  min-width: 145px;
  padding: 17px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.22);
  backdrop-filter: blur(10px);
}

.tp-process-left__badge strong {
  display: block;
  color: #986247;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.tp-process-left__badge span {
  display: block;
  color: #202326;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
  margin-top: 7px;
}

/* Button */

.tp-process-btn {
  min-height: 54px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #cf9877;
  color: #111417;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(207, 152, 119, 0.24);
  transition: 0.3s ease;
}

.tp-process-btn:hover {
  color: #111417;
  background: #ffffff;
  transform: translateY(-4px);
}

/* Right Steps */

.tp-process-steps {
  position: relative;
  display: grid;
  gap: 18px;
}

.tp-process-steps::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 38px;
  bottom: 38px;
  width: 2px;
  border-radius: 30px;
  background: linear-gradient(180deg, #cf9877, rgba(207, 152, 119, 0.12));
}

.tp-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 72px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 20px 24px 20px 0;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 16px 42px rgba(17, 19, 21, 0.075);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.15), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-process-step:hover {
  transform: translateX(10px);
  border-color: rgba(207, 152, 119, 0.34);
  box-shadow: 0 26px 65px rgba(17, 19, 21, 0.14);
}

.tp-process-step:hover::before {
  opacity: 1;
}

.tp-process-step__no,
.tp-process-step__icon,
.tp-process-step__content {
  position: relative;
  z-index: 2;
}

.tp-process-step__no {
  width: 70px;
  height: 70px;
  border-radius: 0 22px 22px 0;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(17, 19, 21, 0.16);
}

.tp-process-step__icon {
  width: 62px;
  height: 62px;
  border-radius: 21px;
  background: rgba(207, 152, 119, 0.14);
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: 0.35s ease;
}

.tp-process-step:hover .tp-process-step__icon {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-process-step__content h3 {
  color: #191d20;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 950;
  margin-bottom: 7px;
}

.tp-process-step__content p {
  color: #696b6d;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* Bottom Strip */

.tp-process-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding: 24px 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 20px 60px rgba(17, 19, 21, 0.10);
}

.tp-process-strip>div {
  flex: 1;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px;
  border-radius: 22px;
  background: #f7f5f3;
  transition: 0.3s ease;
}

.tp-process-strip>div:hover {
  background: #111417;
  transform: translateY(-5px);
}

.tp-process-strip>div i {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
}

.tp-process-strip>div:hover i {
  background: #cf9877;
  color: #111417;
}

.tp-process-strip>div span {
  color: #191d20;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.tp-process-strip>div:hover span {
  color: #ffffff;
}

.tp-process-strip__arrow {
  color: #986247;
  font-size: 20px;
  flex: 0 0 auto;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-process-layout {
    grid-template-columns: 1fr;
  }

  .tp-process-left {
    position: relative;
    top: auto;
    min-height: auto;
    text-align: center;
  }

  .tp-process-left__image {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .tp-process-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991.98px) {
  .tp-infra-process--premium-flow {
    padding: 85px 0;
  }

  .tp-process-strip {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tp-process-strip>div {
    flex: 0 0 calc(50% - 12px);
  }

  .tp-process-strip__arrow {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .tp-infra-process--premium-flow {
    padding: 70px 0;
  }

  .tp-process-left {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .tp-process-left h2 {
    font-size: 31px;
  }

  .tp-process-left p {
    font-size: 15px;
  }

  .tp-process-left__image {
    height: 235px;
    border-radius: 22px;
  }

  .tp-process-btn {
    width: 100%;
    max-width: 320px;
  }

  .tp-process-steps {
    gap: 16px;
  }

  .tp-process-steps::before {
    display: none;
  }

  .tp-process-step {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .tp-process-step:hover {
    transform: translateY(-6px);
  }

  .tp-process-step__no {
    width: 54px;
    height: 38px;
    border-radius: 14px;
  }

  .tp-process-step__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 23px;
  }

  .tp-process-step__content h3 {
    font-size: 20px;
  }

  .tp-process-step__content p {
    font-size: 14px;
  }

  .tp-process-strip {
    padding: 18px;
    border-radius: 24px;
  }

  .tp-process-strip>div {
    flex: 0 0 100%;
    min-height: 74px;
  }
}

@media (max-width: 420px) {
  .tp-infra-process--premium-flow {
    padding: 60px 0;
  }

  .tp-process-kicker {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-process-left {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .tp-process-left h2 {
    font-size: 27px;
  }

  .tp-process-left__image {
    height: 210px;
  }

  .tp-process-left__badge {
    left: 14px;
    bottom: 14px;
    padding: 14px 15px;
  }

  .tp-process-left__badge strong {
    font-size: 34px;
  }

  .tp-process-step {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .tp-process-strip {
    padding: 15px;
  }
}

/* =========================================================
   PRODUCTION CAPABILITY - MATRIX UI
========================================================= */

.tp-infra-capability--matrix {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.14), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-infra-capability--matrix::before {
  content: "";
  position: absolute;
  left: -125px;
  top: 130px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 46px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-infra-capability--matrix::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 90px;
  width: 320px;
  height: 320px;
  border-radius: 46px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-infra-capability--matrix .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

.tp-capability-head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.tp-capability-head>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-capability-head h2 {
  color: #191d20;
  font-size: clamp(2.1rem, 4.4vw, 3.75rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.tp-capability-head p {
  max-width: 720px;
  margin: 0 auto;
  color: #66696b;
  font-size: 16px;
  line-height: 1.75;
}

/* Main Layout */

.tp-capability-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

/* Visual */

.tp-capability-visual {
  position: relative;
  min-height: 610px;
  border-radius: 38px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 34px 90px rgba(17, 19, 21, 0.18);
}

.tp-capability-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-capability-visual:hover img {
  transform: scale(1.08);
}

.tp-capability-visual__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.55)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.20), transparent 52%);
}

.tp-capability-visual__badge {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 28px;
  min-width: 180px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 22px 55px rgba(17, 19, 21, 0.24);
  backdrop-filter: blur(10px);
}

.tp-capability-visual__badge strong {
  display: block;
  color: #986247;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.tp-capability-visual__badge span {
  display: block;
  color: #202326;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 850;
  margin-top: 8px;
}

.tp-capability-visual__tag {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 50px;
  background: #111417;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.26);
}

.tp-capability-visual__tag i {
  color: #cf9877;
  font-size: 18px;
}

/* Board */

.tp-capability-board {
  position: relative;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  box-shadow: 0 34px 90px rgba(17, 19, 21, 0.18);
  overflow: hidden;
}

.tp-capability-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.tp-capability-board::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-capability-board__top,
.tp-capability-card-grid {
  position: relative;
  z-index: 2;
}

.tp-capability-board__top {
  margin-bottom: 30px;
}

.tp-capability-board__top>span {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-capability-board__top h3 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.tp-capability-board__top p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

/* Capability Cards */

.tp-capability-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tp-capability-card {
  min-height: 205px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.35s ease;
}

.tp-capability-card:hover {
  transform: translateY(-7px);
  background: rgba(207, 152, 119, 0.13);
  border-color: rgba(207, 152, 119, 0.30);
}

.tp-capability-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #ffffff;
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 18px;
  transition: 0.35s ease;
}

.tp-capability-card:hover .tp-capability-card__icon {
  background: #cf9877;
  color: #111417;
  transform: rotate(-6deg) scale(1.08);
}

.tp-capability-card strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 8px;
}

.tp-capability-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
  margin: 0;
}

/* Product Pills */

.tp-capability-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 20px 60px rgba(17, 19, 21, 0.10);
}

.tp-capability-products span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  border-radius: 50px;
  background: #f7f5f3;
  color: #343739;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  border: 1px solid rgba(17, 19, 21, 0.06);
  transition: 0.3s ease;
}

.tp-capability-products span:hover {
  background: #111417;
  color: #ffffff;
  transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-capability-layout {
    grid-template-columns: 1fr;
  }

  .tp-capability-visual,
  .tp-capability-visual img {
    min-height: 500px;
  }
}

@media (max-width: 991.98px) {
  .tp-infra-capability--matrix {
    padding: 85px 0;
  }

  .tp-capability-head {
    margin-bottom: 44px;
  }

  .tp-capability-head h2 {
    font-size: 34px;
  }

  .tp-capability-board {
    text-align: center;
  }

  .tp-capability-card {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .tp-infra-capability--matrix {
    padding: 70px 0;
  }

  .tp-capability-head h2 {
    font-size: 31px;
  }

  .tp-capability-head p {
    font-size: 15px;
  }

  .tp-capability-visual,
  .tp-capability-visual img {
    min-height: 380px;
    border-radius: 26px;
  }

  .tp-capability-visual__tag {
    top: 16px;
    left: 16px;
    padding: 11px 14px;
    font-size: 11px;
  }

  .tp-capability-visual__badge {
    left: 16px;
    bottom: 16px;
    min-width: 150px;
    padding: 17px;
    border-radius: 18px;
  }

  .tp-capability-visual__badge strong {
    font-size: 32px;
  }

  .tp-capability-board {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .tp-capability-board__top h3 {
    font-size: 29px;
  }

  .tp-capability-board__top p {
    font-size: 15px;
  }

  .tp-capability-card-grid {
    grid-template-columns: 1fr;
  }

  .tp-capability-card {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .tp-capability-products {
    padding: 18px;
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .tp-infra-capability--matrix {
    padding: 60px 0;
  }

  .tp-capability-head>span,
  .tp-capability-board__top>span {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-capability-head h2 {
    font-size: 27px;
  }

  .tp-capability-visual,
  .tp-capability-visual img {
    min-height: 320px;
  }

  .tp-capability-visual__tag {
    max-width: calc(100% - 32px);
    border-radius: 18px;
  }

  .tp-capability-board {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .tp-capability-board__top h3 {
    font-size: 25px;
  }

  .tp-capability-card__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .tp-capability-products span {
    font-size: 11px;
    padding: 8px 12px;
  }
}


/* =========================================================
   TECHNO PROJECTS PAGE UI
========================================================= */

.tp-project-page {
  overflow: hidden;
  background: #ffffff;
}

/* =========================================================
   PROJECT INTRO - MODERN DIFFERENT UI
========================================================= */

.tp-project-intro--modern {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.14), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-project-intro--modern::before {
  content: "";
  position: absolute;
  left: -125px;
  top: 120px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 46px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-project-intro--modern::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 90px;
  width: 320px;
  height: 320px;
  border-radius: 46px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-project-intro--modern .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

.tp-project-modern-head {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.tp-project-modern-head>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-project-modern-head h2 {
  color: #191d20;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.tp-project-modern-head p {
  max-width: 730px;
  margin: 0 auto;
  color: #66696b;
  font-size: 16px;
  line-height: 1.75;
}

/* Main Layout */

.tp-project-modern-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  gap: 24px;
  align-items: center;
}

.tp-project-modern-side {
  display: grid;
  gap: 22px;
}

/* Cards */

.tp-project-modern-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-project-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.17), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-project-modern-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.13);
  transform: scale(0.7);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-project-modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.34);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

.tp-project-modern-card:hover::before,
.tp-project-modern-card:hover::after {
  opacity: 1;
}

.tp-project-modern-card:hover::after {
  transform: scale(1);
}

.tp-project-modern-card__icon,
.tp-project-modern-card>span,
.tp-project-modern-card h3,
.tp-project-modern-card p {
  position: relative;
  z-index: 2;
}

.tp-project-modern-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 21px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 24px;
  box-shadow: 0 14px 32px rgba(17, 19, 21, 0.18);
  transition: 0.35s ease;
}

.tp-project-modern-card:hover .tp-project-modern-card__icon {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-project-modern-card>span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(152, 98, 71, 0.22);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.tp-project-modern-card h3 {
  color: #191d20;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.tp-project-modern-card p {
  color: #696b6d;
  font-size: 15px;
  line-height: 1.68;
  margin: 0;
}

/* Dark / Brown Cards */

.tp-project-modern-card--dark,
.tp-project-modern-card--brown {
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.20), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.tp-project-modern-card--brown {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(135deg, #986247 0%, #7c4b34 58%, #3d2418 100%);
}

.tp-project-modern-card--dark::before,
.tp-project-modern-card--brown::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
}

.tp-project-modern-card--dark .tp-project-modern-card__icon,
.tp-project-modern-card--brown .tp-project-modern-card__icon {
  background: #ffffff;
  color: #986247;
}

.tp-project-modern-card--dark:hover .tp-project-modern-card__icon,
.tp-project-modern-card--brown:hover .tp-project-modern-card__icon {
  background: #cf9877;
  color: #111417;
}

.tp-project-modern-card--dark>span,
.tp-project-modern-card--brown>span {
  color: rgba(255, 255, 255, 0.12);
}

.tp-project-modern-card--dark h3,
.tp-project-modern-card--brown h3 {
  color: #ffffff;
}

.tp-project-modern-card--dark p,
.tp-project-modern-card--brown p {
  color: rgba(255, 255, 255, 0.74);
}

/* Center Visual */

.tp-project-modern-visual {
  position: relative;
  min-height: 650px;
  border-radius: 42px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 34px 90px rgba(17, 19, 21, 0.20);
}

.tp-project-modern-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-project-modern-visual:hover img {
  transform: scale(1.08);
}

.tp-project-modern-visual__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 52%);
}

.tp-project-modern-badge {
  position: absolute;
  z-index: 3;
  left: 26px;
  bottom: 26px;
  min-width: 170px;
  padding: 21px 23px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 22px 55px rgba(17, 19, 21, 0.24);
  backdrop-filter: blur(10px);
}

.tp-project-modern-badge strong {
  display: block;
  color: #986247;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.tp-project-modern-badge span {
  display: block;
  color: #202326;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 850;
  margin-top: 8px;
}

.tp-project-modern-float {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 50px;
  background: #111417;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.26);
}

.tp-project-modern-float i {
  color: #cf9877;
  font-size: 18px;
}

/* Bottom Stats */

.tp-project-modern-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.tp-project-modern-stats div {
  position: relative;
  min-height: 145px;
  padding: 26px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-project-modern-stats div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 5px;
  height: 62px;
  border-radius: 0 20px 20px 0;
  background: linear-gradient(180deg, #986247, #cf9877);
}

.tp-project-modern-stats div:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(17, 19, 21, 0.14);
}

.tp-project-modern-stats strong {
  display: block;
  color: #986247;
  font-size: 40px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 10px;
}

.tp-project-modern-stats span {
  display: block;
  color: #202326;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-project-modern-layout {
    grid-template-columns: 1fr 1fr;
  }

  .tp-project-modern-visual {
    grid-column: 1 / -1;
    order: -1;
    min-height: 520px;
  }

  .tp-project-modern-visual img {
    min-height: 520px;
  }

  .tp-project-modern-card {
    min-height: 245px;
  }
}

@media (max-width: 991.98px) {
  .tp-project-intro--modern {
    padding: 85px 0;
  }

  .tp-project-modern-head {
    margin-bottom: 44px;
  }

  .tp-project-modern-head h2 {
    font-size: 34px;
  }

  .tp-project-modern-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .tp-project-intro--modern {
    padding: 70px 0;
  }

  .tp-project-modern-head h2 {
    font-size: 31px;
  }

  .tp-project-modern-head p {
    font-size: 15px;
  }

  .tp-project-modern-layout {
    grid-template-columns: 1fr;
  }

  .tp-project-modern-side {
    gap: 18px;
  }

  .tp-project-modern-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .tp-project-modern-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 23px;
  }

  .tp-project-modern-card>span {
    top: 24px;
    right: 24px;
    font-size: 32px;
  }

  .tp-project-modern-card h3 {
    font-size: 21px;
  }

  .tp-project-modern-card p {
    font-size: 14.5px;
  }

  .tp-project-modern-visual,
  .tp-project-modern-visual img {
    min-height: 390px;
    border-radius: 26px;
  }

  .tp-project-modern-float {
    top: 16px;
    left: 16px;
    padding: 11px 14px;
    font-size: 11px;
  }

  .tp-project-modern-badge {
    left: 16px;
    bottom: 16px;
    min-width: 150px;
    padding: 17px;
    border-radius: 18px;
  }

  .tp-project-modern-badge strong {
    font-size: 32px;
  }

  .tp-project-modern-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tp-project-modern-stats div {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .tp-project-modern-stats strong {
    font-size: 34px;
  }
}

@media (max-width: 420px) {
  .tp-project-intro--modern {
    padding: 60px 0;
  }

  .tp-project-modern-head>span {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-project-modern-head h2 {
    font-size: 27px;
  }

  .tp-project-modern-visual,
  .tp-project-modern-visual img {
    min-height: 320px;
  }

  .tp-project-modern-float {
    max-width: calc(100% - 32px);
    border-radius: 18px;
  }

  .tp-project-modern-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .tp-project-modern-stats div {
    padding: 22px 18px;
    border-radius: 22px;
  }
}

/* =========================================================
   PROJECT GALLERY - PREMIUM BENTO UI
========================================================= */

.tp-project-list-section--portfolio {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(207, 152, 119, 0.14), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-project-list-section--portfolio::before {
  content: "";
  position: absolute;
  left: -125px;
  top: 130px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 46px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-project-list-section--portfolio::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 95px;
  width: 320px;
  height: 320px;
  border-radius: 46px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-project-list-section--portfolio .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading + Filter */

.tp-project-portfolio-head {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.tp-project-portfolio-head__content {
  max-width: 760px;
}

.tp-project-portfolio-head__content>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-project-portfolio-head__content h2 {
  color: #191d20;
  font-size: clamp(2.1rem, 4.4vw, 3.75rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.tp-project-portfolio-head__content p {
  max-width: 700px;
  color: #66696b;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.tp-project-portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 20px 60px rgba(17, 19, 21, 0.10);
}

.tp-project-portfolio-filter button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 50px;
  background: #f7f5f3;
  color: #343739;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition: 0.3s ease;
}

.tp-project-portfolio-filter button:hover,
.tp-project-portfolio-filter button.active {
  background: #111417;
  color: #ffffff;
  border-color: #111417;
  transform: translateY(-3px);
}

/* Bento Grid */

.tp-project-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 285px;
  gap: 22px;
}

.tp-project-portfolio-card {
  position: relative;
  grid-column: span 4;
  border-radius: 32px;
  overflow: hidden;
  background: #111417;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 22px 60px rgba(17, 19, 21, 0.14);
  transition: 0.38s ease;
}

.tp-project-portfolio-card--large {
  grid-column: span 6;
  grid-row: span 2;
}

.tp-project-portfolio-card--wide {
  grid-column: span 6;
}

.tp-project-portfolio-card.hide {
  display: none;
}

.tp-project-portfolio-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 90px rgba(17, 19, 21, 0.22);
}

.tp-project-portfolio-card__image {
  position: absolute;
  inset: 0;
}

.tp-project-portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.7s ease;
}

.tp-project-portfolio-card:hover .tp-project-portfolio-card__image img {
  transform: scale(1.1);
}

.tp-project-portfolio-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.30), transparent 50%);
}

.tp-project-portfolio-card__category {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.94);
  color: #986247;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.tp-project-portfolio-card__view {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #cf9877;
  color: #111417;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(207, 152, 119, 0.24);
  transition: 0.3s ease;
}

.tp-project-portfolio-card__view:hover {
  background: #ffffff;
  color: #111417;
  transform: rotate(90deg) scale(1.05);
}

.tp-project-portfolio-card__content {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.tp-project-portfolio-card__content small {
  display: block;
  color: #cf9877;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.tp-project-portfolio-card__content h3 {
  max-width: 520px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.tp-project-portfolio-card--large .tp-project-portfolio-card__content h3 {
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  letter-spacing: -1.1px;
}

.tp-project-portfolio-card__content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14.5px;
  line-height: 1.58;
  margin-bottom: 15px;
}

.tp-project-portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tp-project-portfolio-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 850;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-project-portfolio-head {
    grid-template-columns: 1fr;
  }

  .tp-project-portfolio-filter {
    justify-content: flex-start;
  }

  .tp-project-portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 330px;
  }

  .tp-project-portfolio-card,
  .tp-project-portfolio-card--large,
  .tp-project-portfolio-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 991.98px) {
  .tp-project-list-section--portfolio {
    padding: 85px 0;
  }

  .tp-project-portfolio-head {
    text-align: center;
    margin-bottom: 40px;
  }

  .tp-project-portfolio-head__content {
    margin: 0 auto;
  }

  .tp-project-portfolio-head__content h2 {
    font-size: 34px;
  }

  .tp-project-portfolio-filter {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .tp-project-list-section--portfolio {
    padding: 70px 0;
  }

  .tp-project-portfolio-head__content h2 {
    font-size: 31px;
  }

  .tp-project-portfolio-head__content p {
    font-size: 15px;
  }

  .tp-project-portfolio-filter {
    padding: 16px;
    border-radius: 22px;
  }

  .tp-project-portfolio-filter button {
    flex: 1 1 auto;
  }

  .tp-project-portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 18px;
  }

  .tp-project-portfolio-card {
    min-height: 410px;
    border-radius: 26px;
  }

  .tp-project-portfolio-card__category {
    top: 16px;
    left: 16px;
  }

  .tp-project-portfolio-card__view {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .tp-project-portfolio-card__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .tp-project-portfolio-card__content h3,
  .tp-project-portfolio-card--large .tp-project-portfolio-card__content h3 {
    font-size: 24px;
  }

  .tp-project-portfolio-card__content p {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .tp-project-list-section--portfolio {
    padding: 60px 0;
  }

  .tp-project-portfolio-head__content>span {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-project-portfolio-head__content h2 {
    font-size: 27px;
  }

  .tp-project-portfolio-filter button {
    width: 100%;
  }

  .tp-project-portfolio-card {
    min-height: 370px;
    border-radius: 22px;
  }

  .tp-project-portfolio-card__content h3,
  .tp-project-portfolio-card--large .tp-project-portfolio-card__content h3 {
    font-size: 21px;
  }

  .tp-project-portfolio-tags span {
    font-size: 10.5px;
  }
}

/* =========================================================
   PROJECT GALLERY - DIRECTORY LIST UI
========================================================= */

.tp-project-list-section--directory {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.14), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-project-list-section--directory::before {
  content: "";
  position: absolute;
  left: -125px;
  top: 130px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 46px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-project-list-section--directory::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 90px;
  width: 320px;
  height: 320px;
  border-radius: 46px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-project-list-section--directory .container-xxl {
  position: relative;
  z-index: 2;
}

/* Layout */

.tp-project-directory-wrap {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 34px;
  align-items: start;
}

/* Sidebar */

.tp-project-directory-sidebar {
  position: sticky;
  top: 110px;
  padding: 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  box-shadow: 0 32px 90px rgba(17, 19, 21, 0.18);
  overflow: hidden;
}

.tp-project-directory-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.tp-project-directory-sidebar::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-project-directory-kicker,
.tp-project-directory-sidebar h2,
.tp-project-directory-sidebar p,
.tp-project-directory-filter {
  position: relative;
  z-index: 2;
}

.tp-project-directory-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-project-directory-sidebar h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.tp-project-directory-sidebar p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.tp-project-directory-filter {
  display: grid;
  gap: 12px;
}

.tp-project-directory-filter button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: 0.3s ease;
}

.tp-project-directory-filter button i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  background: rgba(207, 152, 119, 0.16);
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.tp-project-directory-filter button:hover,
.tp-project-directory-filter button.active {
  background: #cf9877;
  color: #111417;
  border-color: #cf9877;
  transform: translateX(6px);
}

.tp-project-directory-filter button:hover i,
.tp-project-directory-filter button.active i {
  background: #111417;
  color: #cf9877;
}

/* Project List */

.tp-project-directory-list {
  display: grid;
  gap: 22px;
}

.tp-project-directory-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 0;
  min-height: 270px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-project-directory-card.hide {
  display: none;
}

.tp-project-directory-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.34);
  box-shadow: 0 32px 80px rgba(17, 19, 21, 0.15);
}

.tp-project-directory-card__image {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: #eeeeee;
}

.tp-project-directory-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 52%);
  pointer-events: none;
}

.tp-project-directory-card__image img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-project-directory-card:hover .tp-project-directory-card__image img {
  transform: scale(1.08);
}

.tp-project-directory-card__image button {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #cf9877;
  color: #111417;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(207, 152, 119, 0.26);
  transition: 0.3s ease;
}

.tp-project-directory-card__image button:hover {
  background: #ffffff;
  transform: rotate(90deg) scale(1.06);
}

/* Card Content */

.tp-project-directory-card__content {
  position: relative;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.tp-project-directory-card__content::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.12);
  transition: 0.35s ease;
}

.tp-project-directory-card:hover .tp-project-directory-card__content::before {
  transform: scale(1.18);
  background: rgba(207, 152, 119, 0.18);
}

.tp-project-directory-card__top,
.tp-project-directory-card__content h3,
.tp-project-directory-card__content p,
.tp-project-directory-tags {
  position: relative;
  z-index: 2;
}

.tp-project-directory-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.tp-project-directory-card__top span {
  color: #986247;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-project-directory-card__top small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.13);
  color: #7c4b34;
  font-size: 11px;
  font-weight: 850;
}

.tp-project-directory-card__content h3 {
  color: #191d20;
  font-size: 29px;
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.tp-project-directory-card__content p {
  max-width: 560px;
  color: #696b6d;
  font-size: 15px;
  line-height: 1.68;
  margin-bottom: 18px;
}

.tp-project-directory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tp-project-directory-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 11px;
  border-radius: 50px;
  background: #f7f5f3;
  color: #343739;
  font-size: 11px;
  font-weight: 850;
  border: 1px solid rgba(17, 19, 21, 0.06);
  transition: 0.3s ease;
}

.tp-project-directory-tags span:hover {
  background: #111417;
  color: #ffffff;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-project-directory-wrap {
    grid-template-columns: 1fr;
  }

  .tp-project-directory-sidebar {
    position: relative;
    top: auto;
    text-align: center;
  }

  .tp-project-directory-filter {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tp-project-directory-filter button {
    justify-content: center;
    text-align: center;
  }

  .tp-project-directory-card {
    grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 991.98px) {
  .tp-project-list-section--directory {
    padding: 85px 0;
  }

  .tp-project-directory-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-project-directory-card {
    grid-template-columns: 1fr;
  }

  .tp-project-directory-card__image,
  .tp-project-directory-card__image img {
    min-height: 330px;
  }
}

@media (max-width: 767.98px) {
  .tp-project-list-section--directory {
    padding: 70px 0;
  }

  .tp-project-directory-sidebar {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .tp-project-directory-sidebar h2 {
    font-size: 31px;
  }

  .tp-project-directory-sidebar p {
    font-size: 15px;
  }

  .tp-project-directory-filter {
    grid-template-columns: 1fr;
  }

  .tp-project-directory-filter button {
    justify-content: flex-start;
    text-align: left;
  }

  .tp-project-directory-card {
    border-radius: 26px;
  }

  .tp-project-directory-card__image,
  .tp-project-directory-card__image img {
    min-height: 280px;
  }

  .tp-project-directory-card__content {
    padding: 26px 22px;
  }

  .tp-project-directory-card__content h3 {
    font-size: 24px;
  }

  .tp-project-directory-card__content p {
    font-size: 14.5px;
  }
}

@media (max-width: 420px) {
  .tp-project-list-section--directory {
    padding: 60px 0;
  }

  .tp-project-directory-kicker {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-project-directory-sidebar {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .tp-project-directory-sidebar h2 {
    font-size: 27px;
  }

  .tp-project-directory-card {
    border-radius: 22px;
  }

  .tp-project-directory-card__image,
  .tp-project-directory-card__image img {
    min-height: 235px;
  }

  .tp-project-directory-card__content {
    padding: 22px 18px;
  }

  .tp-project-directory-card__content h3 {
    font-size: 21px;
  }

  .tp-project-directory-card__image button {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* =========================================================
   PROJECT APPLICATIONS - PREMIUM UI
========================================================= */

.tp-project-types--application {
  position: relative;
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.14), transparent 34%),
    radial-gradient(circle at 92% 86%, rgba(17, 19, 21, 0.07), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-project-types--application::before {
  content: "";
  position: absolute;
  left: -125px;
  top: 120px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 46px solid rgba(207, 152, 119, 0.10);
  pointer-events: none;
}

.tp-project-types--application::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: 95px;
  width: 320px;
  height: 320px;
  border-radius: 46px;
  background: rgba(207, 152, 119, 0.08);
  transform: rotate(18deg);
  pointer-events: none;
}

.tp-project-types--application .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

.tp-project-app-head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.tp-project-app-head>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-project-app-head h2 {
  color: #191d20;
  font-size: clamp(2.1rem, 4.4vw, 3.75rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 16px;
}

.tp-project-app-head p {
  max-width: 720px;
  margin: 0 auto;
  color: #66696b;
  font-size: 16px;
  line-height: 1.75;
}

/* Layout */

.tp-project-app-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

/* Visual */

.tp-project-app-visual {
  position: relative;
  min-height: 650px;
  border-radius: 38px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 34px 90px rgba(17, 19, 21, 0.18);
}

.tp-project-app-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-project-app-visual:hover img {
  transform: scale(1.08);
}

.tp-project-app-visual__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 52%);
}

.tp-project-app-visual__tag {
  position: absolute;
  z-index: 3;
  top: 26px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 50px;
  background: #111417;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.26);
}

.tp-project-app-visual__tag i {
  color: #cf9877;
  font-size: 18px;
}

.tp-project-app-visual__box {
  position: absolute;
  z-index: 3;
  left: 26px;
  bottom: 26px;
  min-width: 175px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 22px 55px rgba(17, 19, 21, 0.24);
  backdrop-filter: blur(10px);
}

.tp-project-app-visual__box strong {
  display: block;
  color: #986247;
  font-size: 48px;
  line-height: 1;
  font-weight: 950;
}

.tp-project-app-visual__box span {
  display: block;
  color: #202326;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 850;
  margin-top: 8px;
}

/* Cards */

.tp-project-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tp-project-app-card {
  position: relative;
  min-height: 314px;
  padding: 28px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-project-app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.17), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-project-app-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.13);
  transform: scale(0.7);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-project-app-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.34);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

.tp-project-app-card:hover::before,
.tp-project-app-card:hover::after {
  opacity: 1;
}

.tp-project-app-card:hover::after {
  transform: scale(1);
}

.tp-project-app-card__top,
.tp-project-app-card h3,
.tp-project-app-card p,
.tp-project-app-tags {
  position: relative;
  z-index: 2;
}

.tp-project-app-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.tp-project-app-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 21px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 14px 32px rgba(17, 19, 21, 0.18);
  transition: 0.35s ease;
}

.tp-project-app-card:hover .tp-project-app-card__icon {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-project-app-card__top>span {
  color: rgba(152, 98, 71, 0.22);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.tp-project-app-card h3 {
  color: #191d20;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.tp-project-app-card p {
  color: #696b6d;
  font-size: 15px;
  line-height: 1.68;
  margin-bottom: 18px;
}

.tp-project-app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tp-project-app-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 11px;
  border-radius: 50px;
  background: #f7f5f3;
  color: #343739;
  font-size: 11px;
  font-weight: 850;
  border: 1px solid rgba(17, 19, 21, 0.06);
}

/* Dark Cards */

.tp-project-app-card--dark,
.tp-project-app-card--brown {
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.20), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.tp-project-app-card--brown {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(135deg, #986247 0%, #7c4b34 58%, #3d2418 100%);
}

.tp-project-app-card--dark::before,
.tp-project-app-card--brown::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
}

.tp-project-app-card--dark .tp-project-app-card__icon,
.tp-project-app-card--brown .tp-project-app-card__icon {
  background: #ffffff;
  color: #986247;
}

.tp-project-app-card--dark:hover .tp-project-app-card__icon,
.tp-project-app-card--brown:hover .tp-project-app-card__icon {
  background: #cf9877;
  color: #111417;
}

.tp-project-app-card--dark .tp-project-app-card__top>span,
.tp-project-app-card--brown .tp-project-app-card__top>span {
  color: rgba(255, 255, 255, 0.13);
}

.tp-project-app-card--dark h3,
.tp-project-app-card--brown h3 {
  color: #ffffff;
}

.tp-project-app-card--dark p,
.tp-project-app-card--brown p {
  color: rgba(255, 255, 255, 0.72);
}

.tp-project-app-card--dark .tp-project-app-tags span,
.tp-project-app-card--brown .tp-project-app-tags span {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.12);
}

/* CTA */

.tp-project-app-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 30px 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 20px 60px rgba(17, 19, 21, 0.10);
}

.tp-project-app-cta strong {
  display: block;
  color: #191d20;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 6px;
}

.tp-project-app-cta span {
  display: block;
  color: #696b6d;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.tp-project-app-cta a {
  min-height: 54px;
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #986247;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(152, 98, 71, 0.24);
  transition: 0.3s ease;
}

.tp-project-app-cta a:hover {
  background: #111417;
  color: #ffffff;
  transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-project-app-layout {
    grid-template-columns: 1fr;
  }

  .tp-project-app-visual,
  .tp-project-app-visual img {
    min-height: 500px;
  }
}

@media (max-width: 991.98px) {
  .tp-project-types--application {
    padding: 85px 0;
  }

  .tp-project-app-head {
    margin-bottom: 44px;
  }

  .tp-project-app-head h2 {
    font-size: 34px;
  }

  .tp-project-app-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .tp-project-types--application {
    padding: 70px 0;
  }

  .tp-project-app-head h2 {
    font-size: 31px;
  }

  .tp-project-app-head p {
    font-size: 15px;
  }

  .tp-project-app-visual,
  .tp-project-app-visual img {
    min-height: 380px;
    border-radius: 26px;
  }

  .tp-project-app-visual__tag {
    top: 16px;
    left: 16px;
    padding: 11px 14px;
    font-size: 11px;
  }

  .tp-project-app-visual__box {
    left: 16px;
    bottom: 16px;
    min-width: 150px;
    padding: 17px;
    border-radius: 18px;
  }

  .tp-project-app-visual__box strong {
    font-size: 36px;
  }

  .tp-project-app-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tp-project-app-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .tp-project-app-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 23px;
  }

  .tp-project-app-card__top>span {
    font-size: 32px;
  }

  .tp-project-app-card h3 {
    font-size: 21px;
  }

  .tp-project-app-card p {
    font-size: 14.5px;
  }

  .tp-project-app-cta {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .tp-project-app-cta strong {
    font-size: 22px;
  }

  .tp-project-app-cta a {
    width: 100%;
    min-width: auto;
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .tp-project-types--application {
    padding: 60px 0;
  }

  .tp-project-app-head>span {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-project-app-head h2 {
    font-size: 27px;
  }

  .tp-project-app-visual,
  .tp-project-app-visual img {
    min-height: 320px;
  }

  .tp-project-app-visual__tag {
    max-width: calc(100% - 32px);
    border-radius: 18px;
  }

  .tp-project-app-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .tp-project-app-cta {
    padding: 22px 18px;
  }

  .tp-project-app-cta strong {
    font-size: 20px;
  }
}


/* =========================================================
   TECHNO CONTACT PAGE UI
========================================================= */

.tp-contact-page {
  overflow: hidden;
  background: #ffffff;
}

/* Hero */

.tp-contact-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  padding: 150px 0 115px;
  background:
    linear-gradient(90deg, rgba(12, 15, 18, 0.88), rgba(12, 15, 18, 0.56)),
    url("assets/images/Factory-imgs/3.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.tp-contact-hero::before {
  content: "";
  position: absolute;
  right: -130px;
  top: -140px;
  width: 370px;
  height: 370px;
  border: 55px solid rgba(207, 152, 119, 0.12);
  border-radius: 50%;
}

.tp-contact-hero::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(207, 152, 119, 0.14);
}

.tp-contact-hero .container-xxl {
  position: relative;
  z-index: 2;
}

.tp-contact-hero__content {
  max-width: 900px;
}

.tp-contact-kicker,
.tp-contact-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.15);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-contact-hero h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 22px 0 20px;
}

.tp-contact-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.tp-contact-breadcrumb {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.tp-contact-breadcrumb a,
.tp-contact-breadcrumb i,
.tp-contact-breadcrumb strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.tp-contact-breadcrumb strong {
  color: #f2c4a5;
}

/* Info Cards */

.tp-contact-info {
  position: relative;
  padding: 95px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
}

.tp-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tp-contact-info-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.17), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-contact-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.34);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

.tp-contact-info-card:hover::before {
  opacity: 1;
}

.tp-contact-info-card__icon,
.tp-contact-info-card span,
.tp-contact-info-card h3,
.tp-contact-info-card p,
.tp-contact-info-card a {
  position: relative;
  z-index: 2;
}

.tp-contact-info-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 21px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 22px;
  box-shadow: 0 14px 32px rgba(17, 19, 21, 0.18);
  transition: 0.35s ease;
}

.tp-contact-info-card:hover .tp-contact-info-card__icon {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-contact-info-card>span {
  display: block;
  color: #986247;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.tp-contact-info-card h3 {
  color: #191d20;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 950;
  margin-bottom: 11px;
}

.tp-contact-info-card p {
  color: #696b6d;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.tp-contact-info-card a {
  color: #111417;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.tp-contact-info-card a:hover {
  color: #986247;
}

/* Dark Info Cards */

.tp-contact-info-card--dark,
.tp-contact-info-card--brown {
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.20), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.tp-contact-info-card--brown {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(135deg, #986247 0%, #7c4b34 58%, #3d2418 100%);
}

.tp-contact-info-card--dark::before,
.tp-contact-info-card--brown::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
}

.tp-contact-info-card--dark .tp-contact-info-card__icon,
.tp-contact-info-card--brown .tp-contact-info-card__icon {
  background: #ffffff;
  color: #986247;
}

.tp-contact-info-card--dark:hover .tp-contact-info-card__icon,
.tp-contact-info-card--brown:hover .tp-contact-info-card__icon {
  background: #cf9877;
  color: #111417;
}

.tp-contact-info-card--dark>span,
.tp-contact-info-card--brown>span {
  color: #cf9877;
}

.tp-contact-info-card--dark h3,
.tp-contact-info-card--brown h3 {
  color: #ffffff;
}

.tp-contact-info-card--dark p,
.tp-contact-info-card--brown p {
  color: rgba(255, 255, 255, 0.72);
}

.tp-contact-info-card--dark a,
.tp-contact-info-card--brown a {
  color: #ffffff;
}

/* Main Contact */

.tp-contact-main {
  position: relative;
  padding: 115px 0;
  background: #ffffff;
}

.tp-contact-main-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: stretch;
}

/* Left */

.tp-contact-left {
  position: relative;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  box-shadow: 0 32px 90px rgba(17, 19, 21, 0.18);
  overflow: hidden;
}

.tp-contact-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.tp-contact-left::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-contact-section-tag,
.tp-contact-left h2,
.tp-contact-left p,
.tp-contact-left__image,
.tp-contact-left__points {
  position: relative;
  z-index: 2;
}

.tp-contact-left h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin: 22px 0 18px;
}

.tp-contact-left>p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 30px;
}

.tp-contact-left__image {
  position: relative;
  height: 285px;
  margin-bottom: 28px;
  border-radius: 28px;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.tp-contact-left__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 48%);
  pointer-events: none;
}

.tp-contact-left__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.65s ease;
}

.tp-contact-left:hover .tp-contact-left__image img {
  transform: scale(1.08);
}

.tp-contact-left__badge {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  min-width: 145px;
  padding: 17px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.22);
  backdrop-filter: blur(10px);
}

.tp-contact-left__badge strong {
  display: block;
  color: #986247;
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.tp-contact-left__badge span {
  display: block;
  color: #202326;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
  margin-top: 7px;
}

.tp-contact-left__points {
  display: grid;
  gap: 12px;
}

.tp-contact-left__points div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 15px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-contact-left__points i {
  color: #cf9877;
  font-size: 18px;
}

.tp-contact-left__points span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

/* Form */

.tp-contact-form-box {
  padding: 38px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 30px 90px rgba(17, 19, 21, 0.11);
}

.tp-contact-form-head {
  margin-bottom: 28px;
}

.tp-contact-form-head span {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  margin-bottom: 16px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  color: #986247;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-contact-form-head h3 {
  color: #191d20;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.tp-contact-form-head p {
  color: #696b6d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.tp-contact-form {
  display: grid;
  gap: 18px;
}

.tp-contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tp-contact-field {
  position: relative;
}

.tp-contact-field label {
  display: block;
  color: #222527;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.tp-contact-field input,
.tp-contact-field select,
.tp-contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 17px;
  border: 1px solid rgba(17, 19, 21, 0.10);
  background: #f7f5f3;
  color: #191d20;
  font-size: 14px;
  font-weight: 650;
  outline: none;
  transition: 0.25s ease;
}

.tp-contact-field textarea {
  min-height: 130px;
  resize: vertical;
}

.tp-contact-field input:focus,
.tp-contact-field select:focus,
.tp-contact-field textarea:focus {
  background: #ffffff;
  border-color: #986247;
  box-shadow: 0 0 0 4px rgba(207, 152, 119, 0.16);
}

.tp-contact-field small {
  display: none;
  color: #c23b22;
  font-size: 12px;
  font-weight: 750;
  margin-top: 7px;
}

.tp-contact-field.error input,
.tp-contact-field.error select,
.tp-contact-field.error textarea {
  border-color: #c23b22;
  background: rgba(194, 59, 34, 0.06);
}

.tp-contact-field.error small {
  display: block;
}

.tp-contact-submit-btn {
  min-height: 58px;
  border: 0;
  border-radius: 50px;
  background: #986247;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(152, 98, 71, 0.24);
  transition: 0.3s ease;
}

.tp-contact-submit-btn:hover {
  background: #111417;
  transform: translateY(-4px);
}

.tp-contact-form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #696b6d;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.tp-contact-form-note i {
  color: #986247;
}

/* Map */

.tp-contact-map-section {
  padding: 115px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.13), transparent 34%),
    linear-gradient(180deg, #f7f5f3 0%, #ffffff 100%);
}

.tp-contact-map-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}

.tp-contact-map-content {
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  box-shadow: 0 32px 90px rgba(17, 19, 21, 0.18);
}

.tp-contact-map-content>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-contact-map-content h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 950;
  margin-bottom: 16px;
}

.tp-contact-map-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.tp-contact-map-list {
  display: grid;
  gap: 14px;
}

.tp-contact-map-list>div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-contact-map-list i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 15px;
  background: #ffffff;
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.tp-contact-map-list strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 4px;
}

.tp-contact-map-list a,
.tp-contact-map-list span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
  text-decoration: none;
}

.tp-contact-map-list a:hover {
  color: #cf9877;
}

.tp-contact-map-box {
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 30px 90px rgba(17, 19, 21, 0.11);
}

.tp-contact-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.tp-contact-map-placeholder {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.18), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
}

.tp-contact-map-placeholder i {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.tp-contact-map-placeholder strong {
  color: #191d20;
  font-size: 26px;
  font-weight: 950;
}

.tp-contact-map-placeholder span {
  color: #696b6d;
  font-size: 15px;
}

/* CTA */

.tp-contact-cta {
  padding: 0 0 105px;
  background: #ffffff;
}

.tp-contact-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.20), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  box-shadow: 0 28px 80px rgba(17, 19, 21, 0.16);
}

.tp-contact-cta__box span {
  display: block;
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tp-contact-cta__box h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 950;
  margin-bottom: 10px;
}

.tp-contact-cta__box p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.tp-contact-cta__box a {
  min-width: 170px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 50px;
  background: #cf9877;
  color: #111417;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease;
}

.tp-contact-cta__box a:hover {
  background: #ffffff;
  color: #111417;
  transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-contact-main-layout,
  .tp-contact-map-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .tp-contact-hero {
    min-height: auto;
    padding: 125px 0 90px;
    text-align: center;
  }

  .tp-contact-hero__content,
  .tp-contact-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-contact-breadcrumb {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-contact-info,
  .tp-contact-main,
  .tp-contact-map-section {
    padding: 85px 0;
  }

  .tp-contact-left,
  .tp-contact-map-content {
    text-align: center;
  }

  .tp-contact-left__points div,
  .tp-contact-map-list>div {
    text-align: left;
  }

  .tp-contact-cta__box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .tp-contact-hero {
    padding: 105px 0 75px;
  }

  .tp-contact-hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .tp-contact-hero p {
    font-size: 15px;
  }

  .tp-contact-info,
  .tp-contact-main,
  .tp-contact-map-section {
    padding: 70px 0;
  }

  .tp-contact-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tp-contact-info-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .tp-contact-left,
  .tp-contact-form-box,
  .tp-contact-map-content {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .tp-contact-left h2,
  .tp-contact-form-head h3,
  .tp-contact-map-content h2 {
    font-size: 31px;
  }

  .tp-contact-left__image {
    height: 235px;
    border-radius: 22px;
  }

  .tp-contact-form-row {
    grid-template-columns: 1fr;
  }

  .tp-contact-submit-btn {
    width: 100%;
  }

  .tp-contact-map-box,
  .tp-contact-map-box iframe,
  .tp-contact-map-placeholder {
    min-height: 360px;
    border-radius: 26px;
  }

  .tp-contact-cta {
    padding-bottom: 70px;
  }

  .tp-contact-cta__box {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .tp-contact-cta__box h2 {
    font-size: 27px;
  }

  .tp-contact-cta__box a {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .tp-contact-hero h1 {
    font-size: 32px;
  }

  .tp-contact-kicker,
  .tp-contact-section-tag,
  .tp-contact-map-content>span,
  .tp-contact-cta__box span {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-contact-left,
  .tp-contact-form-box,
  .tp-contact-map-content {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .tp-contact-left h2,
  .tp-contact-form-head h3,
  .tp-contact-map-content h2 {
    font-size: 27px;
  }

  .tp-contact-left__image {
    height: 210px;
  }

  .tp-contact-field input,
  .tp-contact-field select,
  .tp-contact-field textarea {
    border-radius: 14px;
  }

  .tp-contact-map-box,
  .tp-contact-map-box iframe,
  .tp-contact-map-placeholder {
    min-height: 310px;
  }
}


/* =========================================================
   PAVER BLOCKS & TILES PAGE UI
========================================================= */

.tp-paver-page {
  overflow: hidden;
  background: #ffffff;
}

/* =========================================================
   SIMPLE BROWN BREADCRUMB
========================================================= */

.tp-simple-breadcrumb {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 105px 0 70px;
  background:
    linear-gradient(90deg, #4b2408 0%, #7a3a0b 48%, #8a430d 100%);
  overflow: hidden;
}

.tp-simple-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.07), transparent 30%);
  pointer-events: none;
}

.tp-simple-breadcrumb__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.tp-simple-breadcrumb h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 28px;
  letter-spacing: -0.8px;
}

.tp-simple-breadcrumb nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tp-simple-breadcrumb nav a,
.tp-simple-breadcrumb nav span,
.tp-simple-breadcrumb nav i {
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.tp-simple-breadcrumb nav a:hover {
  color: #ffd8b5;
}

.tp-simple-breadcrumb nav i {
  font-size: 13px;
}

/* Responsive */

@media (max-width: 767.98px) {
  .tp-simple-breadcrumb {
    min-height: 190px;
    padding: 90px 0 55px;
  }

  .tp-simple-breadcrumb h1 {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .tp-simple-breadcrumb nav a,
  .tp-simple-breadcrumb nav span,
  .tp-simple-breadcrumb nav i {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .tp-simple-breadcrumb {
    min-height: 170px;
    padding: 80px 0 48px;
  }

  .tp-simple-breadcrumb h1 {
    font-size: 27px;
  }

  .tp-simple-breadcrumb nav {
    gap: 9px;
  }
}

/* Intro */

.tp-paver-intro {
  padding: 95px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(207, 152, 119, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
}

.tp-paver-intro__box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
  padding: 30px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 30px 90px rgba(17, 19, 21, 0.11);
}

.tp-paver-intro__content {
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
}

.tp-paver-intro__content>span,
.tp-paver-heading>span,
.tp-paver-application__content>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #cf9877;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-paver-intro__content h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.tp-paver-intro__content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.tp-paver-intro__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.tp-paver-intro__stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f5 100%);
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 16px 45px rgba(17, 19, 21, 0.08);
}

.tp-paver-intro__stats strong {
  color: #986247;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.tp-paver-intro__stats span {
  color: #202326;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
  text-align: right;
}

/* Products */

/* =========================================================
   PAVER PRODUCTS - SIMPLE 4 COLUMN GRID
========================================================= */

.tp-paver-products--simple-grid {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(207, 152, 119, 0.13), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(17, 19, 21, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-paver-products--simple-grid::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 120px;
  width: 280px;
  height: 280px;
  border: 44px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-paver-products--simple-grid .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

.tp-paver-simple-head {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.tp-paver-simple-head>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-paver-simple-head h2 {
  color: #191d20;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 15px;
}

.tp-paver-simple-head p {
  max-width: 700px;
  margin: 0 auto;
  color: #66696b;
  font-size: 16px;
  line-height: 1.75;
}

/* Group */

.tp-paver-group {
  margin-top: 50px;
}

.tp-paver-group+.tp-paver-group {
  margin-top: 80px;
}

.tp-paver-group-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17, 19, 21, 0.10);
}

.tp-paver-group-title span {
  display: block;
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tp-paver-group-title h3 {
  color: #191d20;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin: 0;
}

.tp-paver-group-title p {
  max-width: 520px;
  color: #696b6d;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Product Grid */

.tp-paver-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* Product Card */

.tp-paver-product-card {
  position: relative;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-paver-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.36);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

/* Image */

.tp-paver-product-img {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: #eeeeee;
}

.tp-paver-product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 48%);
  pointer-events: none;
}

.tp-paver-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.tp-paver-product-card:hover .tp-paver-product-img img {
  transform: scale(1.08);
}

.tp-paver-product-img>span {
  position: absolute;
  z-index: 3;
  left: 16px;
  top: 16px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 50px;
  background: #ffffff;
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(17, 19, 21, 0.14);
}

/* Content */

.tp-paver-product-content {
  padding: 22px;
}

.tp-paver-product-content h4 {
  color: #191d20;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin: 0 0 17px;
}

.tp-paver-product-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  border-top: 1px solid rgba(17, 19, 21, 0.10);
}

.tp-paver-product-content ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.10);
}

.tp-paver-product-content ul span {
  color: #696b6d;
  font-size: 13px;
  font-weight: 750;
}

.tp-paver-product-content ul strong {
  color: #191d20;
  font-size: 13px;
  font-weight: 950;
  text-align: right;
}

/* Colors */

.tp-paver-product-colors {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.tp-paver-product-colors i {
  width: 26px;
  height: 26px;
  display: block;
  border-radius: 8px;
  background: var(--paver-color);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(17, 19, 21, 0.14);
}

/* WhatsApp Button */

.tp-paver-whatsapp-btn {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 50px;
  background: #986247;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(152, 98, 71, 0.22);
  transition: 0.3s ease;
}

.tp-paver-whatsapp-btn i {
  font-size: 16px;
}

.tp-paver-whatsapp-btn:hover {
  background: #111417;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 1399.98px) {
  .tp-paver-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .tp-paver-products--simple-grid {
    padding: 85px 0;
  }

  .tp-paver-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-paver-group-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .tp-paver-group-title p {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .tp-paver-products--simple-grid {
    padding: 70px 0;
  }

  .tp-paver-simple-head h2 {
    font-size: 32px;
  }

  .tp-paver-simple-head p {
    font-size: 15px;
  }

  .tp-paver-group {
    margin-top: 42px;
  }

  .tp-paver-group+.tp-paver-group {
    margin-top: 60px;
  }

  .tp-paver-group-title h3 {
    font-size: 31px;
  }

  .tp-paver-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-paver-product-card {
    border-radius: 22px;
  }

  .tp-paver-product-img {
    height: 260px;
  }

  .tp-paver-product-content {
    padding: 22px 18px;
  }
}

@media (max-width: 420px) {
  .tp-paver-products--simple-grid {
    padding: 60px 0;
  }

  .tp-paver-simple-head>span,
  .tp-paver-group-title span {
    font-size: 10.5px;
  }

  .tp-paver-simple-head h2 {
    font-size: 28px;
  }

  .tp-paver-group-title h3 {
    font-size: 27px;
  }

  .tp-paver-product-img {
    height: 225px;
  }

  .tp-paver-product-content h4 {
    font-size: 20px;
  }

  .tp-paver-product-content ul li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .tp-paver-product-content ul strong {
    text-align: left;
  }
}

/* Lightbox */

.tp-paver-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.tp-paver-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tp-paver-lightbox__backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  cursor: zoom-out;
}

.tp-paver-lightbox__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.45);
  transform: scale(0.88);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-paver-lightbox.active .tp-paver-lightbox__dialog {
  transform: scale(1);
  opacity: 1;
}

.tp-paver-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.tp-paver-lightbox__close:hover {
  background: #111417;
  color: #ffffff;
  transform: rotate(90deg);
}

.tp-paver-lightbox__image {
  height: 500px;
  background: #eeeeee;
}

.tp-paver-lightbox__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tp-paver-lightbox__content {
  padding: 28px;
}

.tp-paver-lightbox__content span {
  display: block;
  color: #986247;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.tp-paver-lightbox__content h3 {
  color: #191d20;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 10px;
}

.tp-paver-lightbox__content p {
  color: #696b6d;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Responsive */

@media (max-width: 1199.98px) {
  .tp-paver-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-paver-card--large,
  .tp-paver-card--wide {
    grid-column: span 1;
  }

  .tp-paver-application__box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .tp-paver-hero {
    min-height: auto;
    padding: 125px 0 90px;
    text-align: center;
  }

  .tp-paver-hero__content,
  .tp-paver-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-paver-hero__actions {
    justify-content: center;
  }

  .tp-paver-intro,
  .tp-paver-products,
  .tp-paver-application {
    padding: 85px 0;
  }

  .tp-paver-intro__box {
    grid-template-columns: 1fr;
  }

  .tp-paver-intro__content,
  .tp-paver-application__content {
    text-align: center;
  }

  .tp-paver-application__content a {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-paver-cta__box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .tp-paver-hero {
    padding: 105px 0 75px;
  }

  .tp-paver-hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .tp-paver-hero p {
    font-size: 15px;
  }

  .tp-paver-btn {
    width: 100%;
    max-width: 320px;
  }

  .tp-paver-intro,
  .tp-paver-products,
  .tp-paver-application {
    padding: 70px 0;
  }

  .tp-paver-intro__box {
    padding: 16px;
    border-radius: 26px;
  }

  .tp-paver-intro__content,
  .tp-paver-application__content {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .tp-paver-intro__content h2,
  .tp-paver-heading h2,
  .tp-paver-application__content h2 {
    font-size: 31px;
  }

  .tp-paver-intro__stats div {
    padding: 22px;
    border-radius: 22px;
  }

  .tp-paver-intro__stats strong {
    font-size: 34px;
  }

  .tp-paver-filter button {
    flex: 1 1 auto;
  }

  .tp-paver-catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-paver-card {
    border-radius: 26px;
  }

  .tp-paver-card__media,
  .tp-paver-card--large .tp-paver-card__media {
    height: 265px;
  }

  .tp-paver-card__body {
    padding: 24px 20px;
  }

  .tp-paver-card__body h3 {
    font-size: 23px;
  }

  .tp-paver-card__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .tp-paver-card__bottom a {
    width: 100%;
  }

  .tp-paver-application__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-paver-cta {
    padding-bottom: 70px;
  }

  .tp-paver-cta__box {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .tp-paver-cta__box h2 {
    font-size: 27px;
  }

  .tp-paver-cta__box a {
    width: 100%;
    max-width: 320px;
  }

  .tp-paver-lightbox {
    padding: 14px;
  }

  .tp-paver-lightbox__dialog {
    border-radius: 22px;
  }

  .tp-paver-lightbox__image {
    height: 330px;
  }

  .tp-paver-lightbox__content {
    padding: 22px;
  }

  .tp-paver-lightbox__content h3 {
    font-size: 23px;
  }
}

@media (max-width: 420px) {
  .tp-paver-hero h1 {
    font-size: 32px;
  }

  .tp-paver-kicker,
  .tp-paver-intro__content>span,
  .tp-paver-heading>span,
  .tp-paver-application__content>span,
  .tp-paver-cta__box span {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  .tp-paver-heading h2,
  .tp-paver-application__content h2 {
    font-size: 27px;
  }

  .tp-paver-filter button {
    width: 100%;
  }

  .tp-paver-card__media,
  .tp-paver-card--large .tp-paver-card__media {
    height: 230px;
  }

  .tp-paver-specs div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .tp-paver-specs strong {
    text-align: left;
  }

  .tp-paver-application__grid {
    grid-template-columns: 1fr;
  }

  .tp-paver-lightbox__image {
    height: 280px;
  }
}


/* =========================================================
   SIMPLE BROWN BREADCRUMB
========================================================= */

.tp-simple-breadcrumb {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 105px 0 70px;
  background: linear-gradient(90deg, #4b2408 0%, #7a3a0b 48%, #8a430d 100%);
  overflow: hidden;
}

.tp-simple-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.07), transparent 30%);
  pointer-events: none;
}

.tp-simple-breadcrumb__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.tp-simple-breadcrumb h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 28px;
  letter-spacing: -0.8px;
}

.tp-simple-breadcrumb nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tp-simple-breadcrumb nav a,
.tp-simple-breadcrumb nav span,
.tp-simple-breadcrumb nav i {
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.tp-simple-breadcrumb nav a:hover {
  color: #ffd8b5;
}


/* =========================================================
   RCC HUME PIPES PAGE
========================================================= */

.tp-rcc-page {
  overflow: hidden;
  background: #ffffff;
}

/* Products */

.tp-rcc-products {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(207, 152, 119, 0.13), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(17, 19, 21, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

.tp-rcc-products::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 120px;
  width: 280px;
  height: 280px;
  border: 44px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.tp-rcc-products .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

.tp-rcc-head {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.tp-rcc-head>span,
.tp-rcc-application__content>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tp-rcc-head h2 {
  color: #191d20;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 15px;
}

.tp-rcc-head p {
  max-width: 720px;
  margin: 0 auto;
  color: #66696b;
  font-size: 16px;
  line-height: 1.75;
}

/* Group */

.tp-rcc-group {
  margin-top: 50px;
}

.tp-rcc-group+.tp-rcc-group {
  margin-top: 80px;
}

.tp-rcc-group-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17, 19, 21, 0.10);
}

.tp-rcc-group-title span {
  display: block;
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tp-rcc-group-title h3 {
  color: #191d20;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin: 0;
}

.tp-rcc-group-title p {
  max-width: 520px;
  color: #696b6d;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Grid */

.tp-rcc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.tp-rcc-product-grid--special {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Card */

.tp-rcc-product-card {
  position: relative;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.tp-rcc-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.36);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

/* Image */

.tp-rcc-product-img {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: #eeeeee;
}

.tp-rcc-product-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 48%);
  pointer-events: none;
}

.tp-rcc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.tp-rcc-product-card:hover .tp-rcc-product-img img {
  transform: scale(1.08);
}

.tp-rcc-product-img>span {
  position: absolute;
  z-index: 3;
  left: 16px;
  top: 16px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 50px;
  background: #ffffff;
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(17, 19, 21, 0.14);
}

/* Content */

.tp-rcc-product-content {
  padding: 22px;
}

.tp-rcc-product-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  margin-bottom: 12px;
}

.tp-rcc-product-top span {
  color: #986247;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-rcc-product-top small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.13);
  color: #7c4b34;
  font-size: 11px;
  font-weight: 850;
}

.tp-rcc-product-content h4 {
  color: #191d20;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.4px;
  margin: 0 0 17px;
}

.tp-rcc-product-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  border-top: 1px solid rgba(17, 19, 21, 0.10);
}

.tp-rcc-product-content ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 19, 21, 0.10);
}

.tp-rcc-product-content ul span {
  color: #696b6d;
  font-size: 13px;
  font-weight: 750;
}

.tp-rcc-product-content ul strong {
  color: #191d20;
  font-size: 13px;
  font-weight: 950;
  text-align: right;
}

/* Diameter List */

.tp-rcc-dia-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.tp-rcc-dia-list span {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 6px 9px;
  border-radius: 50px;
  background: #f7f5f3;
  color: #343739;
  font-size: 11px;
  font-weight: 850;
  border: 1px solid rgba(17, 19, 21, 0.06);
}

/* WhatsApp Button */

.tp-rcc-whatsapp-btn {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 50px;
  background: #986247;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(152, 98, 71, 0.22);
  transition: 0.3s ease;
}

.tp-rcc-whatsapp-btn i {
  font-size: 16px;
}

.tp-rcc-whatsapp-btn:hover {
  background: #111417;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 1399.98px) {
  .tp-rcc-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tp-rcc-product-grid--special {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .tp-simple-breadcrumb {
    min-height: 190px;
    padding: 90px 0 55px;
  }

  .tp-rcc-products,
  .tp-rcc-application {
    padding: 85px 0;
  }

  .tp-rcc-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-rcc-group-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .tp-rcc-group-title p {
    max-width: 100%;
  }

  .tp-rcc-application__box {
    grid-template-columns: 1fr;
  }

  .tp-rcc-application__content {
    text-align: center;
  }

  .tp-rcc-application__content a {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-rcc-cta__box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .tp-simple-breadcrumb h1 {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .tp-rcc-products,
  .tp-rcc-application {
    padding: 70px 0;
  }

  .tp-rcc-head h2 {
    font-size: 32px;
  }

  .tp-rcc-head p {
    font-size: 15px;
  }

  .tp-rcc-group {
    margin-top: 42px;
  }

  .tp-rcc-group+.tp-rcc-group {
    margin-top: 60px;
  }

  .tp-rcc-group-title h3 {
    font-size: 31px;
  }

  .tp-rcc-product-grid,
  .tp-rcc-product-grid--special {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-rcc-product-card {
    border-radius: 22px;
  }

  .tp-rcc-product-img {
    height: 260px;
  }

  .tp-rcc-product-content {
    padding: 22px 18px;
  }

  .tp-rcc-application__content {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .tp-rcc-application__content h2 {
    font-size: 31px;
  }

  .tp-rcc-application__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-rcc-cta {
    padding-bottom: 70px;
  }

  .tp-rcc-cta__box {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .tp-rcc-cta__box h2 {
    font-size: 27px;
  }

  .tp-rcc-cta__box a {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 420px) {
  .tp-simple-breadcrumb {
    min-height: 170px;
    padding: 80px 0 48px;
  }

  .tp-simple-breadcrumb h1 {
    font-size: 27px;
  }

  .tp-rcc-products,
  .tp-rcc-application {
    padding: 60px 0;
  }

  .tp-rcc-head>span,
  .tp-rcc-group-title span,
  .tp-rcc-application__content>span,
  .tp-rcc-cta__box span {
    font-size: 10.5px;
  }

  .tp-rcc-head h2,
  .tp-rcc-application__content h2 {
    font-size: 27px;
  }

  .tp-rcc-group-title h3 {
    font-size: 27px;
  }

  .tp-rcc-product-img {
    height: 225px;
  }

  .tp-rcc-product-content h4 {
    font-size: 20px;
  }

  .tp-rcc-product-content ul li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .tp-rcc-product-content ul strong {
    text-align: left;
  }

  .tp-rcc-application__grid {
    grid-template-columns: 1fr;
  }
}


/* Product PNG Image Fix */
.tp-paver-product-img--contain {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
}

.tp-paver-product-img--contain::before {
  background:
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 50%);
}

.tp-paver-product-img--contain img {
  object-fit: contain !important;
  padding: 28px;
}

@media (max-width: 767.98px) {
  .tp-paver-product-img--contain img {
    padding: 22px;
  }
}

/* Interlocking Brick PNG Image Fix */
.tp-paver-product-img--contain {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
}

.tp-paver-product-img--contain::before {
  background:
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 50%);
}

.tp-paver-product-img--contain img {
  object-fit: contain !important;
  padding: 28px;
}

@media (max-width: 767.98px) {
  .tp-paver-product-img--contain img {
    padding: 22px;
  }
}

/* Kerb & Road Product Image Fix */
.tp-paver-product-img--contain {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
}

.tp-paver-product-img--contain::before {
  background:
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 50%);
}

.tp-paver-product-img--contain img {
  object-fit: contain !important;
  padding: 28px;
}

/* Road Application Cards */
.tp-road-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.tp-road-application-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  transition: 0.35s ease;
}

.tp-road-application-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.36);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

.tp-road-application-card i {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: 0.35s ease;
}

.tp-road-application-card:hover i {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-road-application-card strong {
  display: block;
  color: #191d20;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 8px;
}

.tp-road-application-card span {
  display: block;
  color: #696b6d;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .tp-road-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .tp-paver-product-img--contain img {
    padding: 22px;
  }

  .tp-road-application-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-road-application-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 22px;
  }
}

/* RCC Concrete Product Image Fix */
.tp-paver-product-img--contain {
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
}

.tp-paver-product-img--contain::before {
  background:
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04), transparent 50%);
}

.tp-paver-product-img--contain img {
  object-fit: contain !important;
  padding: 28px;
}

/* RCC Product Application Cards */
.tp-rcc-concrete-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.tp-rcc-concrete-application-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 18px 50px rgba(17, 19, 21, 0.08);
  transition: 0.35s ease;
}

.tp-rcc-concrete-application-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 152, 119, 0.36);
  box-shadow: 0 30px 75px rgba(17, 19, 21, 0.15);
}

.tp-rcc-concrete-application-card i {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: #111417;
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: 0.35s ease;
}

.tp-rcc-concrete-application-card:hover i {
  background: #986247;
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
}

.tp-rcc-concrete-application-card strong {
  display: block;
  color: #191d20;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 8px;
}

.tp-rcc-concrete-application-card span {
  display: block;
  color: #696b6d;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .tp-rcc-concrete-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .tp-paver-product-img--contain img {
    padding: 22px;
  }

  .tp-rcc-concrete-application-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-rcc-concrete-application-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 22px;
  }
}

/* =========================================================
   PAGE LOAD ENQUIRY MODAL
========================================================= */

.tp-page-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.35s ease;
}

.tp-page-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tp-page-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.tp-page-modal__box {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 34px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.45);
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: 0.35s ease;
}

.tp-page-modal.active .tp-page-modal__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.tp-page-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111417;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(17, 19, 21, 0.16);
  transition: 0.3s ease;
}

.tp-page-modal__close:hover {
  background: #111417;
  color: #ffffff;
  transform: rotate(90deg);
}

/* Left */

.tp-page-modal__left {
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  position: relative;
  overflow: hidden;
}

.tp-page-modal__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
}

.tp-page-modal__left>span,
.tp-page-modal__left h2,
.tp-page-modal__left p,
.tp-page-modal__points {
  position: relative;
  z-index: 2;
}

.tp-page-modal__left>span {
  display: inline-flex;
  padding: 9px 15px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  color: #cf9877;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-page-modal__left h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 950;
  margin-bottom: 14px;
}

.tp-page-modal__left p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 24px;
}

.tp-page-modal__points {
  display: grid;
  gap: 11px;
}

.tp-page-modal__points div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-page-modal__points i {
  color: #cf9877;
}

.tp-page-modal__points span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 750;
}

/* Right */

.tp-page-modal__right {
  padding: 42px;
  background: #ffffff;
}

.tp-page-modal__form-head {
  margin-bottom: 22px;
}

.tp-page-modal__form-head span {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 13px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  color: #986247;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-page-modal__form-head h3 {
  color: #191d20;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 950;
  margin: 0;
}

.tp-page-modal__form {
  display: grid;
  gap: 14px;
}

.tp-page-modal__field label {
  display: block;
  color: #222527;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.tp-page-modal__field input,
.tp-page-modal__field select,
.tp-page-modal__field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border-radius: 15px;
  border: 1px solid rgba(17, 19, 21, 0.10);
  background: #f7f5f3;
  color: #191d20;
  font-size: 14px;
  font-weight: 650;
  outline: none;
  transition: 0.25s ease;
}

.tp-page-modal__field textarea {
  min-height: 95px;
  resize: vertical;
}

.tp-page-modal__field input:focus,
.tp-page-modal__field select:focus,
.tp-page-modal__field textarea:focus {
  background: #ffffff;
  border-color: #986247;
  box-shadow: 0 0 0 4px rgba(207, 152, 119, 0.16);
}

.tp-page-modal__field small {
  display: none;
  color: #c23b22;
  font-size: 12px;
  font-weight: 750;
  margin-top: 6px;
}

.tp-page-modal__field.error input,
.tp-page-modal__field.error select,
.tp-page-modal__field.error textarea {
  border-color: #c23b22;
  background: rgba(194, 59, 34, 0.06);
}

.tp-page-modal__field.error small {
  display: block;
}

.tp-page-modal__submit {
  min-height: 52px;
  border: 0;
  border-radius: 50px;
  background: #986247;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(152, 98, 71, 0.24);
  transition: 0.3s ease;
}

.tp-page-modal__submit:hover {
  background: #111417;
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 991.98px) {
  .tp-page-modal__box {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .tp-page-modal__left,
  .tp-page-modal__right {
    padding: 32px 26px;
  }

  .tp-page-modal__left h2 {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .tp-page-modal {
    padding: 14px;
  }

  .tp-page-modal__box {
    border-radius: 24px;
  }

  .tp-page-modal__left,
  .tp-page-modal__right {
    padding: 26px 18px;
  }

  .tp-page-modal__left h2 {
    font-size: 25px;
  }

  .tp-page-modal__form-head h3 {
    font-size: 24px;
  }

  .tp-page-modal__submit {
    width: 100%;
  }
}


/* =========================================================
   CONTACT SECTION FORM UI FIX
========================================================= */

#tpContactSection {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(207, 152, 119, 0.14), transparent 32%),
    radial-gradient(circle at 92% 90%, rgba(17, 19, 21, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f3 100%);
  overflow: hidden;
}

#tpContactSection::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 130px;
  width: 290px;
  height: 290px;
  border: 46px solid rgba(207, 152, 119, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

#tpContactSection .container-xxl {
  position: relative;
  z-index: 2;
}

/* Heading */

#tpContactSection .tp-contact-heading {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

#tpContactSection .tp-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.14);
  border: 1px solid rgba(207, 152, 119, 0.24);
  color: #986247;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#tpContactSection .tp-contact-heading h2 {
  color: #191d20;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
}

#tpContactSection .tp-contact-heading h2 span {
  color: #986247;
}

#tpContactSection .tp-contact-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #66696b;
  font-size: 16px;
  line-height: 1.75;
}

/* Main Panel */

#tpContactSection .tp-contact-panel {
  border-radius: 38px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  box-shadow: 0 34px 100px rgba(17, 19, 21, 0.14);
}

/* Left Contact Info */

#tpContactSection .tp-contact-info {
  height: 100%;
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 58%, #0b0d0f 100%);
  position: relative;
  overflow: hidden;
}

#tpContactSection .tp-contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

#tpContactSection .tp-contact-info>* {
  position: relative;
  z-index: 2;
}

#tpContactSection .tp-contact-info__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

#tpContactSection .tp-contact-info__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 22px;
  background: #ffffff;
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

#tpContactSection .tp-contact-info__header small {
  display: block;
  color: #cf9877;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

#tpContactSection .tp-contact-info__header h3 {
  color: #ffffff;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 950;
  margin: 0;
}

#tpContactSection .tp-contact-info__description {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Contact Detail */

#tpContactSection .tp-contact-details {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

#tpContactSection .tp-contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: 0.3s ease;
}

#tpContactSection .tp-contact-detail:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

#tpContactSection .tp-contact-detail__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 15px;
  background: rgba(207, 152, 119, 0.16);
  color: #cf9877;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

#tpContactSection .tp-contact-detail__content {
  flex: 1;
  min-width: 0;
}

#tpContactSection .tp-contact-detail__content small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 4px;
}

#tpContactSection .tp-contact-detail__content strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
}

#tpContactSection .tp-contact-detail__arrow {
  color: #cf9877;
  font-size: 16px;
}

#tpContactSection .tp-contact-detail--address {
  align-items: flex-start;
}

/* Serving */

#tpContactSection .tp-contact-serving {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 18px;
}

#tpContactSection .tp-contact-serving__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

#tpContactSection .tp-contact-serving__heading i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 15px;
  background: #ffffff;
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

#tpContactSection .tp-contact-serving__heading small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 4px;
}

#tpContactSection .tp-contact-serving__heading strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

#tpContactSection .tp-contact-serving__states {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#tpContactSection .tp-contact-serving__states span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 50px;
  background: rgba(207, 152, 119, 0.16);
  color: #f4d0b8;
  font-size: 11px;
  font-weight: 850;
}

/* Availability */

#tpContactSection .tp-contact-availability {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#tpContactSection .tp-contact-availability__status {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: #1fd16a;
  box-shadow: 0 0 0 6px rgba(31, 209, 106, 0.16);
}

#tpContactSection .tp-contact-availability small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 4px;
}

#tpContactSection .tp-contact-availability strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

/* Right Form Area */

#tpContactSection .tp-contact-form-wrap {
  height: 100%;
  padding: 42px;
  background: #ffffff;
}

#tpContactSection .tp-contact-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

#tpContactSection .tp-contact-form-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #986247;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#tpContactSection .tp-contact-form-header h3 {
  color: #191d20;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

#tpContactSection .tp-contact-form-header p {
  color: #696b6d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

#tpContactSection .tp-contact-form-header__badge {
  flex: 0 0 auto;
  padding: 11px 16px !important;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.12);
  color: #118c43 !important;
  border: 1px solid rgba(37, 211, 102, 0.18);
  margin: 0 !important;
}

/* Form Labels */

#tpContactSection .tp-contact-form .form-label {
  color: #222527;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

#tpContactSection .tp-contact-form .form-label span {
  color: #986247;
}

/* Input Wrapper */

#tpContactSection .tp-form-control-wrap {
  position: relative;
}

#tpContactSection .tp-form-control-wrap>i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #986247;
  font-size: 16px;
  z-index: 2;
}

#tpContactSection .tp-form-control-wrap--textarea>i {
  top: 18px;
  transform: none;
}

/* Bootstrap Input Override */

#tpContactSection .tp-contact-form .form-control,
#tpContactSection .tp-contact-form .form-select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px 14px 45px;
  border-radius: 17px;
  border: 1px solid rgba(17, 19, 21, 0.10);
  background-color: #f7f5f3;
  color: #191d20;
  font-size: 14px;
  font-weight: 650;
  box-shadow: none;
  outline: none;
  transition: 0.25s ease;
}

#tpContactSection .tp-contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
  padding-top: 15px;
}

#tpContactSection .tp-contact-form .form-control:focus,
#tpContactSection .tp-contact-form .form-select:focus {
  background-color: #ffffff;
  border-color: #986247;
  box-shadow: 0 0 0 4px rgba(207, 152, 119, 0.16);
}

#tpContactSection .tp-contact-form .form-control::placeholder {
  color: #989898;
}

#tpContactSection .tp-contact-form .form-control.is-invalid,
#tpContactSection .tp-contact-form .form-select.is-invalid {
  border-color: #c23b22;
  background-color: rgba(194, 59, 34, 0.06);
}

#tpContactSection .tp-contact-form .invalid-feedback {
  color: #c23b22;
  font-size: 12px;
  font-weight: 750;
  margin-top: 7px;
}

/* Help Chips */

#tpContactSection .tp-form-help {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  background: #f7f5f3;
  border: 1px solid rgba(17, 19, 21, 0.06);
}

#tpContactSection .tp-form-help span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #343739;
  font-size: 12px;
  font-weight: 850;
}

#tpContactSection .tp-form-help i {
  color: #986247;
}

/* Submit */

#tpContactSection .tp-contact-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 50px;
  background: #986247;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 22px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(152, 98, 71, 0.24);
  transition: 0.3s ease;
}

#tpContactSection .tp-contact-submit span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

#tpContactSection .tp-contact-submit:hover {
  background: #111417;
  transform: translateY(-3px);
}

/* Note */

#tpContactSection .tp-contact-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  margin: 0;
  border-radius: 18px;
  background: rgba(207, 152, 119, 0.10);
  border: 1px solid rgba(207, 152, 119, 0.16);
}

#tpContactSection .tp-contact-form-note i {
  color: #986247;
  font-size: 18px;
  margin-top: 2px;
}

#tpContactSection .tp-contact-form-note span {
  color: #696b6d;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

/* Responsive */

@media (max-width: 991.98px) {
  #tpContactSection {
    padding: 85px 0;
  }

  #tpContactSection .tp-contact-info,
  #tpContactSection .tp-contact-form-wrap {
    padding: 34px 26px;
  }

  #tpContactSection .tp-contact-form-header {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  #tpContactSection {
    padding: 70px 0;
  }

  #tpContactSection .tp-contact-heading h2 {
    font-size: 32px;
  }

  #tpContactSection .tp-contact-heading p {
    font-size: 15px;
  }

  #tpContactSection .tp-contact-panel {
    border-radius: 26px;
  }

  #tpContactSection .tp-contact-info,
  #tpContactSection .tp-contact-form-wrap {
    padding: 28px 20px;
  }

  #tpContactSection .tp-contact-info__header {
    align-items: flex-start;
  }

  #tpContactSection .tp-contact-info__header h3 {
    font-size: 23px;
  }

  #tpContactSection .tp-contact-form-header h3 {
    font-size: 28px;
  }

  #tpContactSection .tp-contact-submit {
    justify-content: center;
  }

  #tpContactSection .tp-contact-submit>i {
    display: none;
  }
}

@media (max-width: 420px) {
  #tpContactSection .tp-contact-heading h2 {
    font-size: 27px;
  }

  #tpContactSection .tp-contact-eyebrow {
    font-size: 10.5px;
    padding: 9px 14px;
  }

  #tpContactSection .tp-contact-detail {
    align-items: flex-start;
  }

  #tpContactSection .tp-contact-detail__arrow {
    display: none;
  }
}

/* =========================================================
   WORKING MOBILE OFFCANVAS MENU
========================================================= */

.tp5-mobile-menu-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #986247;
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 28px rgba(152, 98, 71, 0.22);
}

@media (max-width: 991.98px) {
  .tp5-mobile-menu-btn {
    display: inline-flex;
  }
}

.tp5-mobile-offcanvas {
  width: min(100%, 390px) !important;
  border: 0 !important;
  background: #f7f5f3 !important;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
}

.tp5-mobile-offcanvas .offcanvas-header {
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.24), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 60%, #0b0d0f 100%);
}

.tp5-mobile-logo {
  display: inline-flex;
  align-items: center;
  max-width: 190px;
}

.tp5-mobile-logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.tp5-mobile-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111417;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.tp5-mobile-offcanvas .offcanvas-body {
  padding: 18px;
  background: #f7f5f3;
}

/* Menu */

.tp5-mobile-menu {
  display: grid;
  gap: 12px;
}

.tp5-mobile-menu>a,
.tp5-mobile-product-toggle {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 18px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  background: #ffffff;
  color: #191d20;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(17, 19, 21, 0.07);
  transition: 0.28s ease;
}

.tp5-mobile-product-toggle {
  cursor: pointer;
  text-align: left;
}

.tp5-mobile-menu>a span,
.tp5-mobile-product-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #191d20;
  font-size: 15px;
  font-weight: 850;
}

.tp5-mobile-menu>a span i,
.tp5-mobile-product-toggle span i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  background: rgba(207, 152, 119, 0.14);
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.tp5-mobile-menu>a>i,
.tp5-mobile-product-toggle>i {
  color: #986247;
  font-size: 14px;
  transition: 0.28s ease;
}

.tp5-mobile-menu>a:hover,
.tp5-mobile-product-toggle:hover,
.tp5-mobile-product-toggle[aria-expanded="true"] {
  background: #111417;
  color: #ffffff;
  border-color: #111417;
}

.tp5-mobile-menu>a:hover span,
.tp5-mobile-product-toggle:hover span,
.tp5-mobile-product-toggle[aria-expanded="true"] span {
  color: #ffffff;
}

.tp5-mobile-menu>a:hover span i,
.tp5-mobile-product-toggle:hover span i,
.tp5-mobile-product-toggle[aria-expanded="true"] span i {
  background: #cf9877;
  color: #111417;
}

.tp5-mobile-product-toggle[aria-expanded="true"] .tp5-mobile-plus {
  color: #cf9877;
  transform: rotate(45deg);
}

/* Sub Menu */

.tp5-mobile-product-list {
  display: grid;
  gap: 8px;
  padding: 14px;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(17, 19, 21, 0.08);
}

.tp5-mobile-product-list a {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 34px;
  border-radius: 14px;
  background: #f7f5f3;
  color: #343739;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: 0.25s ease;
}

.tp5-mobile-product-list a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #986247;
  transform: translateY(-50%);
}

.tp5-mobile-product-list a:hover {
  background: #986247;
  color: #ffffff;
}

.tp5-mobile-product-list a:hover::before {
  background: #ffffff;
}

/* Contact Buttons */

.tp5-mobile-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.tp5-mobile-contact a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  background: #986247;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.tp5-mobile-contact a:last-child {
  background: #111417;
}

@media (max-width: 420px) {
  .tp5-mobile-offcanvas {
    width: 100% !important;
  }

  .tp5-mobile-offcanvas .offcanvas-body {
    padding: 14px;
  }

  .tp5-mobile-menu {
    gap: 10px;
  }

  .tp5-mobile-menu>a,
  .tp5-mobile-product-toggle {
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .tp5-mobile-menu>a span,
  .tp5-mobile-product-toggle span {
    font-size: 14px;
  }

  .tp5-mobile-menu>a span i,
  .tp5-mobile-product-toggle span i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 12px;
    font-size: 15px;
  }

  .tp5-mobile-contact {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   MOBILE NAVBAR FINAL FIX
========================================================= */

.tp5-mobile-trigger {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #986247;
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(152, 98, 71, 0.24);
}

@media (max-width: 991.98px) {
  .tp5-mobile-trigger {
    display: inline-flex;
  }
}

.tp5-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.tp5-mobile-drawer.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tp5-mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.tp5-mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 390px);
  height: 100%;
  padding: 0;
  background: #f7f5f3;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  transition: 0.35s ease;
  overflow-y: auto;
}

.tp5-mobile-drawer.active .tp5-mobile-drawer__panel {
  transform: translateX(0);
}

/* Header */

.tp5-mobile-drawer__header {
  min-height: 92px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(207, 152, 119, 0.24), transparent 38%),
    linear-gradient(135deg, #111417 0%, #24292e 60%, #0b0d0f 100%);
}

.tp5-mobile-drawer__logo {
  display: inline-flex;
  align-items: center;
  max-width: 190px;
}

.tp5-mobile-drawer__logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.tp5-mobile-drawer__close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111417;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s ease;
}

.tp5-mobile-drawer__close:hover {
  background: #cf9877;
  color: #111417;
  transform: rotate(90deg);
}

/* Menu */

.tp5-mobile-menu {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.tp5-mobile-menu>a,
.tp5-mobile-products__toggle {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 18px;
  border: 1px solid rgba(17, 19, 21, 0.08);
  background: #ffffff;
  color: #191d20;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(17, 19, 21, 0.07);
  transition: 0.28s ease;
}

.tp5-mobile-products__toggle {
  cursor: pointer;
  text-align: left;
}

.tp5-mobile-menu>a span,
.tp5-mobile-products__toggle span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #191d20;
  font-size: 15px;
  font-weight: 850;
}

.tp5-mobile-menu>a span i,
.tp5-mobile-products__toggle span i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  background: rgba(207, 152, 119, 0.14);
  color: #986247;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.tp5-mobile-menu>a>i,
.tp5-mobile-products__toggle>i {
  color: #986247;
  font-size: 14px;
  transition: 0.28s ease;
}

.tp5-mobile-menu>a:hover,
.tp5-mobile-products__toggle:hover,
.tp5-mobile-products.active .tp5-mobile-products__toggle {
  background: #111417;
  color: #ffffff;
  border-color: #111417;
}

.tp5-mobile-menu>a:hover span,
.tp5-mobile-products__toggle:hover span,
.tp5-mobile-products.active .tp5-mobile-products__toggle span {
  color: #ffffff;
}

.tp5-mobile-menu>a:hover span i,
.tp5-mobile-products__toggle:hover span i,
.tp5-mobile-products.active .tp5-mobile-products__toggle span i {
  background: #cf9877;
  color: #111417;
}

.tp5-mobile-products.active .tp5-mobile-products__plus {
  color: #cf9877;
  transform: rotate(45deg);
}

/* Product Dropdown */

.tp5-mobile-products__list {
  display: none;
  gap: 8px;
  padding: 14px;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 21, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(17, 19, 21, 0.08);
}

.tp5-mobile-products.active .tp5-mobile-products__list {
  display: grid;
}

.tp5-mobile-products__list a {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 34px;
  border-radius: 14px;
  background: #f7f5f3;
  color: #343739;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: 0.25s ease;
}

.tp5-mobile-products__list a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #986247;
  transform: translateY(-50%);
}

.tp5-mobile-products__list a:hover {
  background: #986247;
  color: #ffffff;
}

.tp5-mobile-products__list a:hover::before {
  background: #ffffff;
}

/* Bottom Buttons */

.tp5-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 18px 22px;
}

.tp5-mobile-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  background: #986247;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.tp5-mobile-actions a:last-child {
  background: #111417;
}

/* Body lock */

body.tp5-menu-open {
  overflow: hidden;
}

/* Small Mobile */

@media (max-width: 420px) {
  .tp5-mobile-drawer__panel {
    width: 100%;
  }

  .tp5-mobile-menu {
    padding: 14px;
    gap: 10px;
  }

  .tp5-mobile-menu>a,
  .tp5-mobile-products__toggle {
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .tp5-mobile-menu>a span,
  .tp5-mobile-products__toggle span {
    font-size: 14px;
  }

  .tp5-mobile-menu>a span i,
  .tp5-mobile-products__toggle span i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 12px;
    font-size: 15px;
  }

  .tp5-mobile-actions {
    grid-template-columns: 1fr;
    padding: 0 14px 18px;
  }
}

/* =========================================================
   FINAL MOBILE HEADER + NAV DRAWER STYLE FIX
   Paste at bottom of CSS file
========================================================= */

@media (max-width: 991.98px) {

  /* ---------- Top Dark Info Area Fix ---------- */
  .tp5-topbar,
  .tp5-header-top,
  .topbar,
  .topbararea,
  .tp-topbar {
    padding: 8px 10px !important;
    background: #151719 !important;
  }

  .tp5-topbar .container,
  .tp5-topbar .container-xxl,
  .tp5-header-top .container,
  .tp5-header-top .container-xxl,
  .topbar .container,
  .topbararea .container,
  .tp-topbar .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .tp5-topbar a,
  .tp5-topbar span,
  .tp5-header-top a,
  .tp5-header-top span,
  .topbar a,
  .topbar span,
  .topbararea a,
  .topbararea span,
  .tp-topbar a,
  .tp-topbar span {
    font-size: 10px !important;
    line-height: 1.3 !important;
    word-break: break-word;
  }

  /* ---------- Main Mobile Header Fix ---------- */
  .tp5-header,
  .tp5-main-header,
  .main-header,
  header {
    z-index: 9999 !important;
  }

  .tp5-header-main,
  .tp5-navbar,
  .tp5-header .navbar,
  .main-header .navbar,
  .tp5-nav-wrap {
    padding: 8px 10px !important;
    min-height: auto !important;
    background: #ffffff !important;
  }

  .tp5-header-main .container,
  .tp5-header-main .container-xxl,
  .tp5-navbar .container,
  .tp5-navbar .container-xxl,
  .tp5-header .container,
  .tp5-header .container-xxl {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* ---------- Logo Fix ---------- */
  .tp5-logo,
  .navbar-brand,
  .tp5-mobile-logo,
  .tp5-mobile-drawer__logo {
    max-width: 175px !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .tp5-logo img,
  .navbar-brand img,
  .tp5-mobile-logo img,
  .tp5-mobile-drawer__logo img {
    max-width: 100% !important;
    max-height: 54px !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* ---------- Header Right Icons Fix ---------- */
  .tp5-header-actions,
  .tp5-mobile-header-actions,
  .tp5-header-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .tp5-header-actions a,
  .tp5-mobile-header-actions a,
  .tp5-header-buttons a,
  .tp5-mobile-trigger,
  .tp5-mobile-menu-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .tp5-mobile-trigger,
  .tp5-mobile-menu-btn {
    background: #986247 !important;
    color: #ffffff !important;
    border: 0 !important;
  }

  /* ---------- Drawer Position Fix ---------- */
  .tp5-mobile-drawer {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
  }

  .tp5-mobile-drawer__panel {
    width: min(100%, 360px) !important;
    background: #f7f5f3 !important;
  }

  /* ---------- Drawer Header Fix ---------- */
  .tp5-mobile-drawer__header {
    min-height: 82px !important;
    padding: 16px 18px !important;
    background:
      radial-gradient(circle at top right, rgba(207, 152, 119, 0.22), transparent 40%),
      linear-gradient(135deg, #111417 0%, #24292e 60%, #0b0d0f 100%) !important;
  }

  .tp5-mobile-drawer__close {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #111417 !important;
    border: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
  }

  /* ---------- Mobile Menu Cards Fix ---------- */
  .tp5-mobile-menu {
    display: grid !important;
    gap: 11px !important;
    padding: 16px !important;
  }

  .tp5-mobile-menu>a,
  .tp5-mobile-products__toggle,
  .tp5-mobile-product-toggle,
  .tp5-mobile-products>button {
    width: 100% !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(17, 19, 21, 0.08) !important;
    background: #ffffff !important;
    color: #191d20 !important;
    text-decoration: none !important;
    box-shadow: 0 10px 26px rgba(17, 19, 21, 0.07) !important;
    outline: none !important;
  }

  .tp5-mobile-menu>a span,
  .tp5-mobile-products__toggle span,
  .tp5-mobile-product-toggle span,
  .tp5-mobile-products>button span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 11px !important;
    color: #191d20 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
  }

  .tp5-mobile-menu>a span i,
  .tp5-mobile-products__toggle span i,
  .tp5-mobile-product-toggle span i,
  .tp5-mobile-products>button span i {
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
    border-radius: 13px !important;
    background: rgba(207, 152, 119, 0.14) !important;
    color: #986247 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
  }

  .tp5-mobile-menu>a>i,
  .tp5-mobile-products__toggle>i,
  .tp5-mobile-product-toggle>i,
  .tp5-mobile-products>button>i {
    color: #986247 !important;
    font-size: 13px !important;
  }

  /* ---------- Our Products Active Color Fix ---------- */
  .tp5-mobile-products.active .tp5-mobile-products__toggle,
  .tp5-mobile-products.active .tp5-mobile-product-toggle,
  .tp5-mobile-products.active>button,
  .tp5-mobile-products__toggle[aria-expanded="true"],
  .tp5-mobile-product-toggle[aria-expanded="true"],
  .tp5-mobile-products>button[aria-expanded="true"] {
    background: #111417 !important;
    color: #ffffff !important;
    border-color: #111417 !important;
  }

  .tp5-mobile-products.active .tp5-mobile-products__toggle span,
  .tp5-mobile-products.active .tp5-mobile-product-toggle span,
  .tp5-mobile-products.active>button span,
  .tp5-mobile-products__toggle[aria-expanded="true"] span,
  .tp5-mobile-product-toggle[aria-expanded="true"] span,
  .tp5-mobile-products>button[aria-expanded="true"] span {
    color: #ffffff !important;
  }

  .tp5-mobile-products.active .tp5-mobile-products__toggle span i,
  .tp5-mobile-products.active .tp5-mobile-product-toggle span i,
  .tp5-mobile-products.active>button span i,
  .tp5-mobile-products__toggle[aria-expanded="true"] span i,
  .tp5-mobile-product-toggle[aria-expanded="true"] span i,
  .tp5-mobile-products>button[aria-expanded="true"] span i {
    background: #cf9877 !important;
    color: #111417 !important;
  }

  .tp5-mobile-products.active .tp5-mobile-products__plus,
  .tp5-mobile-products.active .tp5-mobile-plus,
  .tp5-mobile-products__toggle[aria-expanded="true"] .tp5-mobile-products__plus,
  .tp5-mobile-product-toggle[aria-expanded="true"] .tp5-mobile-plus {
    color: #cf9877 !important;
    transform: rotate(45deg) !important;
  }

  /* ---------- Dropdown Product List Fix ---------- */
  .tp5-mobile-products__list,
  .tp5-mobile-product-list {
    gap: 8px !important;
    padding: 12px !important;
    margin-top: 8px !important;
    background: #ffffff !important;
    border-radius: 18px !important;
    border: 1px solid rgba(17, 19, 21, 0.08) !important;
    box-shadow: 0 14px 34px rgba(17, 19, 21, 0.08) !important;
  }

  .tp5-mobile-products__list a,
  .tp5-mobile-product-list a {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    padding: 11px 14px 11px 34px !important;
    border-radius: 14px !important;
    background: #f7f5f3 !important;
    color: #343739 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    position: relative !important;
  }

  .tp5-mobile-products__list a::before,
  .tp5-mobile-product-list a::before {
    content: "" !important;
    position: absolute !important;
    left: 15px !important;
    top: 50% !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: #986247 !important;
    transform: translateY(-50%) !important;
  }

  /* ---------- Bottom Buttons Fix ---------- */
  .tp5-mobile-actions,
  .tp5-mobile-contact {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 16px 20px !important;
  }

  .tp5-mobile-actions a,
  .tp5-mobile-contact a {
    min-height: 46px !important;
    border-radius: 50px !important;
    background: #986247 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
  }

  .tp5-mobile-actions a:last-child,
  .tp5-mobile-contact a:last-child {
    background: #111417 !important;
  }
}

/* Very Small Mobile */
@media (max-width: 420px) {
  .tp5-mobile-drawer__panel {
    width: 100% !important;
  }

  .tp5-mobile-menu {
    padding: 14px !important;
    gap: 10px !important;
  }

  .tp5-mobile-actions,
  .tp5-mobile-contact {
    padding: 0 14px 18px !important;
  }
}


/* =========================================================
   MOBILE HEADER ICON SHAPE FINAL FIX
========================================================= */

@media (max-width: 991.98px) {

  .tp5-mobile-main-header {
    width: calc(100% - 24px);
    margin: 8px auto 0;
    min-height: 76px;
    padding: 12px 12px;
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    align-items: end;
    justify-content: end;
    gap: 12px;
    box-shadow: 0 14px 34px rgba(17, 19, 21, 0.12);
    position: relative;
    z-index: 9999;
  }

  .tp5-mobile-brand {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .tp5-mobile-brand a {
    display: inline-flex;
    align-items: center;
    max-width: 180px;
    text-decoration: none;
  }

  .tp5-mobile-brand img {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    display: block;
  }

  .tp5-mobile-icon-actions {
    flex: 0 0 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap;
  }

  .tp5-mobile-icon-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #986247 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
    box-shadow: 0 10px 22px rgba(152, 98, 71, 0.24) !important;
    cursor: pointer !important;
  }

  .tp5-mobile-icon-btn i {
    font-size: 17px !important;
    line-height: 1 !important;
    color: #ffffff !important;
    display: block !important;
  }

  .tp5-mobile-menu-open i {
    font-size: 23px !important;
  }

  .tp5-mobile-icon-btn:hover {
    background: #111417 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
  }

  /* Hide old broken mobile action styles */
  .tp5-header-actions,
  .tp5-mobile-header-actions,
  .tp5-header-buttons {
    flex-wrap: nowrap !important;
  }

  .tp5-header-actions a,
  .tp5-mobile-header-actions a,
  .tp5-header-buttons a,
  .tp5-mobile-trigger,
  .tp5-mobile-menu-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
  }
}

/* Small Mobile Fix */
@media (max-width: 420px) {

  .tp5-mobile-main-header {
    width: calc(100% - 18px);
    padding: 10px;
    gap: 8px;
  }

  .tp5-mobile-brand a {
    max-width: 155px;
  }

  .tp5-mobile-brand img {
    max-height: 48px;
  }

  .tp5-mobile-icon-actions {
    gap: 6px !important;
  }

  .tp5-mobile-icon-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    border-radius: 13px !important;
  }

  .tp5-mobile-icon-btn i {
    font-size: 15px !important;
  }

  .tp5-mobile-menu-open i {
    font-size: 21px !important;
  }
}


/* =========================================================
   MOBILE HEADER: LOGO LEFT + PHONE/WHATSAPP/MENU RIGHT
========================================================= */

@media (max-width: 991.98px) {

  .tp5-navbar {
    width: calc(100% - 18px) !important;
    min-height: 70px !important;
    margin: 8px auto 0 !important;
    padding: 10px 10px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    box-shadow: 0 14px 34px rgba(17, 19, 21, 0.12) !important;
    position: relative !important;
    z-index: 9999 !important;
  }

  .tp5-brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 150px) !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }

  .tp5-brand img {
    width: auto !important;
    max-width: 165px !important;
    max-height: 50px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .tp5-mobile-icon-actions {
    flex: 0 0 auto !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 7px !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .tp5-mobile-icon-actions a,
  .tp5-mobile-icon-actions button,
  .tp5-mobile-icon-btn,
  .tp5-mobile-trigger,
  .tp5-mobile-menu-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #986247 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
    box-shadow: 0 10px 22px rgba(152, 98, 71, 0.22) !important;
    cursor: pointer !important;
    flex: 0 0 42px !important;
  }

  .tp5-mobile-icon-actions a i,
  .tp5-mobile-icon-actions button i,
  .tp5-mobile-icon-btn i,
  .tp5-mobile-trigger i,
  .tp5-mobile-menu-btn i {
    color: #ffffff !important;
    font-size: 17px !important;
    line-height: 1 !important;
    display: block !important;
  }

  .tp5-mobile-icon-actions button i.bi-list,
  .tp5-mobile-trigger i.bi-list,
  .tp5-mobile-menu-btn i.bi-list {
    font-size: 24px !important;
  }

  .tp5-mobile-icon-actions a:hover,
  .tp5-mobile-icon-actions button:hover {
    background: #111417 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
  }

  .tp5-desktop-area {
    display: none !important;
  }
}

/* Small Mobile */
@media (max-width: 420px) {

  .tp5-navbar {
    width: calc(100% - 14px) !important;
    padding: 9px 8px !important;
    gap: 6px !important;
  }

  .tp5-brand {
    max-width: calc(100% - 132px) !important;
  }

  .tp5-brand img {
    max-width: 145px !important;
    max-height: 46px !important;
  }

  .tp5-mobile-icon-actions {
    gap: 5px !important;
  }

  .tp5-mobile-icon-actions a,
  .tp5-mobile-icon-actions button,
  .tp5-mobile-icon-btn,
  .tp5-mobile-trigger,
  .tp5-mobile-menu-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    flex-basis: 38px !important;
    border-radius: 13px !important;
  }

  .tp5-mobile-icon-actions a i,
  .tp5-mobile-icon-actions button i {
    font-size: 15px !important;
  }

  .tp5-mobile-icon-actions button i.bi-list {
    font-size: 22px !important;
  }
}


/* =========================================================
   MOBILE HEADER ICON BUTTON FIX
========================================================= */

.tp5-mobile-icon-actions {
  display: none;
}

@media (max-width: 991.98px) {

  .tp5-navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: calc(100% - 18px) !important;
    margin: 8px auto 0 !important;
    padding: 10px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    overflow: visible !important;
  }

  .tp5-brand,
  .navbar-brand {
    flex: 1 1 auto !important;
    max-width: calc(100% - 150px) !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .tp5-brand img,
  .navbar-brand img {
    max-width: 150px !important;
    max-height: 48px !important;
    object-fit: contain !important;
    display: block !important;
  }

  .tp5-mobile-icon-actions {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 7px !important;
    margin-left: auto !important;
    white-space: nowrap !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 20 !important;
  }

  .tp5-mobile-icon-actions .tp5-mobile-icon-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    border-radius: 14px !important;
    background: #986247 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
    box-shadow: 0 10px 22px rgba(152, 98, 71, 0.24) !important;
    cursor: pointer !important;
    flex: 0 0 42px !important;
    overflow: hidden !important;
  }

  .tp5-mobile-icon-actions .tp5-mobile-icon-btn i {
    color: #ffffff !important;
    font-size: 17px !important;
    line-height: 1 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .tp5-mobile-icon-actions .tp5-mobile-menu-open i {
    font-size: 24px !important;
  }

  .tp5-mobile-icon-actions .tp5-mobile-icon-btn:hover {
    background: #111417 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
  }

  .tp5-desktop-area {
    display: none !important;
  }
}

@media (max-width: 420px) {

  .tp5-navbar {
    width: calc(100% - 12px) !important;
    padding: 8px !important;
    gap: 6px !important;
  }

  .tp5-brand,
  .navbar-brand {
    max-width: calc(100% - 132px) !important;
  }

  .tp5-brand img,
  .navbar-brand img {
    max-width: 135px !important;
    max-height: 44px !important;
  }

  .tp5-mobile-icon-actions {
    gap: 5px !important;
  }

  .tp5-mobile-icon-actions .tp5-mobile-icon-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    flex-basis: 38px !important;
    border-radius: 13px !important;
  }

  .tp5-mobile-icon-actions .tp5-mobile-icon-btn i {
    font-size: 15px !important;
  }

  .tp5-mobile-icon-actions .tp5-mobile-menu-open i {
    font-size: 22px !important;
  }
}

.tp-contact-field small {
  display: none;
  color: #dc3545;
  font-size: 12px;
  margin-top: 6px;
}

.tp-contact-field.error small {
  display: block;
}

.tp-contact-field.error input,
.tp-contact-field.error select,
.tp-contact-field.error textarea {
  border-color: #dc3545 !important;
}

.tp-contact-field input:focus,
.tp-contact-field select:focus,
.tp-contact-field textarea:focus {
  outline: none;
}

.tp-page-modal__field small {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
}

.tp-page-modal__field.error small {
    display: block;
}

.tp-page-modal__field.error input,
.tp-page-modal__field.error select,
.tp-page-modal__field.error textarea {
    border-color: #dc3545 !important;
}

.tp-page-modal__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.tp-form-control-wrap.tp-input-error {
    border-color: #dc3545 !important;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545 !important;
}

.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
    display: block;
}