/* ===================================================================
   SINGH PRODUCTION — MarkitUp-Inspired Theme
   Font: Jost, Caveat | Primary: #14A89E (Teal) | Secondary: #B42B2B (Red)
   =================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: background 0.7s cubic-bezier(0.3, 0, 0.3, 1),
              color 0.7s cubic-bezier(0.3, 0, 0.3, 1);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.4s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ---------- Light Theme (Default) ---------- */
body.home {
  background: linear-gradient(180deg, #ffffff 0%, #F0EBE3 100%);
  color: #262626;
}

body.home h1, body.home h2, body.home h3,
body.home h4, body.home h5, body.home h6 {
  color: #000000;
}

/* ---------- Dark Theme ---------- */
body.dark-skin {
  background: linear-gradient(180deg, #31363C 0%, #222831 100%);
  color: #EAEAEA;
}

body.dark-skin h1, body.dark-skin h2, body.dark-skin h3,
body.dark-skin h4, body.dark-skin h5, body.dark-skin h6 {
  color: #ffffff;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

body.dark-skin .preloader {
  background: #222831;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.centrize {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.vertical-center {
  text-align: center;
}

.spinner-logo {
  position: relative;
  display: inline-block;
}

.spinner-logo img {
  width: 180px;
  animation: pulse 1.5s ease-in-out infinite;
}

.spinner-line {
  width: 60%;
  height: 3px;
  background: #14A89E;
  margin: 16px auto 0;
  border-radius: 2px;
  animation: loading-bar 1.4s ease-in-out infinite;
  transform-origin: left;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.96); }
}

@keyframes loading-bar {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.header.sticky {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

body.dark-skin .header.sticky {
  background: rgba(34, 40, 49, 0.92);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__builder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 36px;
  transition: opacity 0.4s ease;
}

.header.sticky .logo {
  opacity: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---------- Header Contact Button ---------- */
.btn-header {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  border: 2px solid #000;
  border-radius: 30px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: rgba(0,0,0,0.2) 5px 5px 0px 0px;
  transition: all 0.7s cubic-bezier(0.3, 0, 0.3, 1);
}

body.dark-skin .btn-header {
  border-color: #a3a5a7;
  color: #eaeaea;
  box-shadow: rgba(255,255,255,0.1) 5px 5px 0px 0px;
}

.btn-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #14A89E;
  border-radius: 26px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.3, 0, 0.3, 1);
  z-index: 1;
}

.btn-header:hover::before {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  opacity: 1;
}

.btn-header span {
  position: relative;
  z-index: 2;
}

.btn-header:hover {
  color: #fff;
}

/* ---------- Theme Switcher ---------- */
.switcher-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.3, 0, 0.3, 1);
  position: relative;
}

.switcher-btn:hover {
  transform: rotate(30deg);
}

.switcher-btn .sw-before,
.switcher-btn .sw-after {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.switcher-btn .sw-before svg path {
  fill: #000;
}

.switcher-btn .sw-after {
  display: none;
}

body.dark-skin .switcher-btn .sw-before {
  display: none;
}

body.dark-skin .switcher-btn .sw-after {
  display: flex;
}

body.dark-skin .switcher-btn .sw-after svg path {
  fill: #fff;
}

/* ---------- Hamburger Menu Button ---------- */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1010;
}

.menu-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.4s ease;
}

body.dark-skin .menu-btn span {
  background: #fff;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #ffffff;
  z-index: 1005;
  transition: right 0.5s cubic-bezier(0.3, 0, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

body.dark-skin .mobile-menu {
  background: #31363C;
  box-shadow: -10px 0 30px rgba(0,0,0,0.4);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 0;
}

.mobile-menu__inner a {
  padding: 15px 0;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

body.dark-skin .mobile-menu__inner a {
  border-bottom-color: rgba(255,255,255,0.08);
}

.mobile-menu__inner a:hover {
  color: #14A89E;
  padding-left: 10px;
}

/* ---------- Wrapper ---------- */
.wrapper {
  position: relative;
}

/* ---------- Sections ---------- */
.lui-section {
  padding: 80px 0;
  position: relative;
}

.lui-section-hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* ---------- Gradient Backgrounds ---------- */
.lui-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* ---------- Decorative Vertical Line ---------- */
.v-line {
  position: relative;
}

.v-line-left::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

body.dark-skin .v-line-left::before {
  background: rgba(255, 255, 255, 0.08);
}

.v-line-right::after {
  content: '';
  position: absolute;
  right: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

body.dark-skin .v-line-right::after {
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Decorative Dot Patterns ---------- */
.dot-pattern {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(7, 8px);
  gap: 12px;
  opacity: 0.35;
  pointer-events: none;
}

.dot-pattern span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
}

body.dark-skin .dot-pattern span {
  background: #fff;
}

/* ---------- Circle Decorations ---------- */
.circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.circle-1 {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,0,0,0.15);
  top: 80px;
  left: 120px;
  animation: float-circle 6s ease-in-out infinite;
}

.circle-2 {
  width: 12px;
  height: 12px;
  background: rgba(0,0,0,0.1);
  bottom: 120px;
  left: 100px;
  animation: float-circle 8s ease-in-out infinite reverse;
}

.circle-3 {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.1);
  bottom: 200px;
  right: 100px;
  animation: float-circle 7s ease-in-out infinite;
}

body.dark-skin .circle-1 {
  border-color: rgba(255,255,255,0.2);
}

body.dark-skin .circle-2 {
  background: rgba(255,255,255,0.15);
}

body.dark-skin .circle-3 {
  border-color: rgba(255,255,255,0.15);
}

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

/* ---------- Section Headings ---------- */
.lui-heading {
  margin-bottom: 50px;
}

.m-titles.align-center {
  text-align: center;
}

.m-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #0fa5a5;
  -webkit-text-fill-color: #0fa5a5;
}

body.dark-skin .m-title {
  color: #0fa5a5;
  -webkit-text-fill-color: #0fa5a5;
}

.m-subtitle {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.m-subtitle b, .m-subtitle strong {
  font-weight: 600;
}

/* ---------- lui-subtitle ---------- */
.lui-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.lui-subtitle b, .lui-subtitle strong {
  color: #14A89E;
}

/* ---------- Hero Section ---------- */
.hero-started {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-slide {
  flex: 1;
  min-width: 0;
}

.content {
  position: relative;
}

.titles {
  margin-bottom: 30px;
}

.title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin: 10px 0;
  color: #0fa5a5;
  -webkit-text-fill-color: #0fa5a5;
}

body.dark-skin .title {
  color: #0fa5a5;
  -webkit-text-fill-color: #0fa5a5;
}

.hero-title {
  color: #0fa5a5;
  text-shadow:
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    -3px 0 0 #000,
    3px 0 0 #000,
    0 -3px 0 #000,
    0 3px 0 #000,
    5px 5px 0 rgba(0,0,0,0.3);
  -webkit-text-fill-color: #0fa5a5;
  paint-order: stroke fill;
}

body.dark-skin .hero-title {
  color: #0fa5a5;
  text-shadow:
    -2px -2px 0 rgba(0,0,0,0.5),
    2px -2px 0 rgba(0,0,0,0.5),
    -2px 2px 0 rgba(0,0,0,0.5),
    2px 2px 0 rgba(0,0,0,0.5),
    -3px 0 0 rgba(0,0,0,0.5),
    3px 0 0 rgba(0,0,0,0.5),
    0 -3px 0 rgba(0,0,0,0.5),
    0 3px 0 rgba(0,0,0,0.5),
    5px 5px 0 rgba(0,0,0,0.4);
  -webkit-text-fill-color: #0fa5a5;
  paint-order: stroke fill;
}

.titles .label {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 400;
}

.titles .label strong {
  color: #B42B2B;
  font-weight: 600;
}

.description {
  margin-bottom: 30px;
}

.description p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
  opacity: 0.85;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.social-links a:hover {
  color: #14A89E;
  transform: translateY(-3px);
}

/* ---------- CTA Buttons ---------- */
.bts {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 2px solid #000;
  border-radius: 30px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: rgba(0,0,0,0.2) 5px 5px 0px 0px;
  transition: all 0.7s cubic-bezier(0.3, 0, 0.3, 1);
}

body.dark-skin .btn {
  border-color: #a3a5a7;
  color: #eaeaea;
  box-shadow: rgba(255,255,255,0.1) 5px 5px 0px 0px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #14A89E;
  border-radius: 26px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.3, 0, 0.3, 1);
  z-index: 1;
}

.btn:hover::before {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  opacity: 1;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn:hover {
  color: #fff;
}

.btn-lnk {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.4s ease;
}

.btn-lnk::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.btn-lnk:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-lnk:hover {
  color: #14A89E;
}

/* ---------- Hero Graphic (Removed - Using Video) ---------- */
.hero-image-wrapper {
    position: relative;
}

/* ---------- Hero Image ---------- */
.hero-image-container {
    position: relative;
    max-width: 580px;
    margin: -50px -120px 0 auto;
}

.hero-editing-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* ---------- Info List (Stats Badges) ---------- */
.info-list {
    margin-top: -35px;
    position: relative;
    z-index: 20;
    margin-right: -220px;
}

.info-list ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  padding: 12px 24px;
  box-shadow: rgba(0,0,0,0.2) 5px 5px 0px 0px;
  min-width: 160px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-list li:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0,0,0,0.3) 8px 8px 0px 0px;
}

body.dark-skin .info-list li {
  background: #222831;
  border-color: #a3a5a7;
  box-shadow: rgba(255,255,255,0.1) 5px 5px 0px 0px;
}

.info-list .num {
  font-family: 'Jost', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.info-list .value {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.3;
}

.info-list .value strong {
  color: #B42B2B;
}

/* ---------- About Section ---------- */
.about-content {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.feature i {
  color: #14A89E;
  font-size: 16px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-item {
  background: #fff;
  border: 2px solid #000;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: rgba(0,0,0,0.2) 5px 5px 0px 0px;
  transition: transform 0.4s ease;
}

body.dark-skin .stat-item {
  background: #31363C;
  border-color: #a3a5a7;
  box-shadow: rgba(255,255,255,0.1) 5px 5px 0px 0px;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  background: #fff;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.3, 0, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.3, 0, 0.3, 1),
              border-color 0.5s ease;
}

body.dark-skin .service-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(20, 168, 158, 0.3);
}

body.dark-skin .service-item:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(20,168,158,0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(20px, 20px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #000;
  box-shadow: rgba(0,0,0,0.2) 5px 5px 0px 0px;
  transition: all 0.4s ease;
}

body.dark-skin .service-icon {
  border-color: #a3a5a7;
  color: #eaeaea;
  box-shadow: rgba(255,255,255,0.1) 5px 5px 0px 0px;
}

.service-title {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #14A89E !important;
  margin-bottom: 8px;
}

.service-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-text {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.75;
}

/* ---------- Clients Section ---------- */
.clients-wrapper {
  overflow: hidden;
  margin: 20px 0;
  position: relative;
}

.clients-wrapper::before,
.clients-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #F0EBE3 0%, transparent 100%);
}

.clients-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #F0EBE3 0%, transparent 100%);
}

body.dark-skin .clients-wrapper::before {
  background: linear-gradient(to right, #222831 0%, transparent 100%);
}

body.dark-skin .clients-wrapper::after {
  background: linear-gradient(to left, #222831 0%, transparent 100%);
}

.clients-track {
  display: flex;
  gap: 30px;
  animation: scroll-clients 30s linear infinite;
  width: max-content;
}

.clients-wrapper.reverse .clients-track {
  animation: scroll-clients-reverse 30s linear infinite;
}

.client-logo {
  flex-shrink: 0;
}

.logo-box {
  width: 150px;
  height: 80px;
  background: #fff;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

body.dark-skin .logo-box {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.logo-box:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-clients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-clients-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ---------- Testimonials Section ---------- */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-item {
  display: none;
  padding: 0;
  animation: fadeSlide 0.6s ease forwards;
}

.testimonial-item.active {
  display: block;
}

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

.testimonial-content {
  background: #fff;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  text-align: center;
}

body.dark-skin .testimonial-content {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.quote-icon {
  margin-bottom: 24px;
}

.quote-icon svg {
  opacity: 0.6;
}

.quote-icon svg path {
  fill: #14A89E;
  stroke: #000;
}

body.dark-skin .quote-icon svg path {
  stroke: #fff;
}

.testimonial-content p {
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.85;
}

.testimonial-info {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 20px;
}

body.dark-skin .testimonial-info {
  border-top-color: rgba(255,255,255,0.08);
}

.testimonial-info .name {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-info .role {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.6;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.4s ease;
}

body.dark-skin .dot {
  background: rgba(255,255,255,0.15);
}

.dot.active {
  background: #14A89E;
  transform: scale(1.2);
}

.dot:hover {
  background: #14A89E;
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: rgba(0,0,0,0.2) 5px 5px 0px 0px;
  transition: all 0.4s ease;
}

body.dark-skin .contact-item .icon {
  border-color: #a3a5a7;
  color: #eaeaea;
  box-shadow: rgba(255,255,255,0.1) 5px 5px 0px 0px;
}

.contact-item .title {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #0fa5a5;
  -webkit-text-fill-color: #0fa5a5;
}

body.dark-skin .contact-item .title {
  color: #0fa5a5;
}

.contact-item .text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

body.dark-skin .contact-item .text {
  color: #ccc;
}

.contact-item .text a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

body.dark-skin .contact-item .text a {
  color: #ccc;
}

body.dark-skin .contact-item .text a:hover {
  color: #0fa5a5;
}

/* ---------- Contact Form ---------- */
.contact-form-wrapper {
  margin-top: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  outline: none;
}

body.dark-skin .form-group input,
body.dark-skin .form-group textarea {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: #eaeaea;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

body.dark-skin .form-group input::placeholder,
body.dark-skin .form-group textarea::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #14A89E;
  box-shadow: 0 0 0 3px rgba(20,168,158,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Contact Graphic ---------- */
.contact-graphic {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-graphic img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 30px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

body.dark-skin .footer {
  border-top-color: rgba(255,255,255,0.06);
}

.footer__builder {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 18px;
  transition: color 0.4s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #14A89E;
  transform: translateY(-2px);
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.6;
}

/* ---------- Scroll Animations ---------- */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 2px solid #14A89E;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  display: none;
}

@media (pointer: fine) {
  .cursor {
    display: block;
  }
}

.cursor.cursor-hover {
  width: 44px;
  height: 44px;
  border-color: #14A89E;
  background: rgba(20,168,158,0.1);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 1024px) {
  .hero-started {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-slide {
    order: 0;
    max-width: 450px;
    margin: 0 auto;
  }

  .hero-image-container {
    margin: 0 auto;
  }

  .info-list {
    margin-right: 0;
  }

  .description p {
    max-width: none;
  }

  .social-links {
    justify-content: center;
  }

  .bts {
    justify-content: center;
  }

  .info-list ul {
    justify-content: center;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 1;
    min-width: 140px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-image {
    order: -1;
  }

  .contact-graphic {
    max-width: 400px;
  }

  .v-line-left::before,
  .v-line-right::after {
    display: none;
  }
}

@media (max-width: 768px) {
    .lui-section {
        padding: 60px 0;
    }

    .lui-section-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-image-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-editing-img {
        max-width: 100%;
    }

    .info-list {
        margin-top: -20px;
        margin-right: 0;
    }

    .info-list li {
        padding: 10px 18px;
        min-width: 140px;
    }

    .info-list .num {
        font-size: 22px;
    }

    .info-list .value {
        font-size: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 28px 24px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 16px;
    }

    .menu-btn {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    .title {
        font-size: clamp(32px, 10vw, 56px);
        letter-spacing: 1px;
    }

    .hero-title {
        text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000,
            3px 3px 0 rgba(0,0,0,0.3);
    }

    body.dark-skin .hero-title {
        text-shadow:
            -1px -1px 0 rgba(0,0,0,0.5),
            1px -1px 0 rgba(0,0,0,0.5),
            -1px 1px 0 rgba(0,0,0,0.5),
            1px 1px 0 rgba(0,0,0,0.5),
            3px 3px 0 rgba(0,0,0,0.4);
    }

    .testimonial-content {
        padding: 30px 24px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .m-title {
        font-size: clamp(28px, 6vw, 40px);
        letter-spacing: 1px;
    }

    .lui-heading {
        margin-bottom: 30px;
    }

    .lui-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .contact-form {
        gap: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact-item .icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .contact-item .title {
        font-size: 13px;
    }

    .contact-item .text {
        font-size: 14px;
    }

    .contact-graphic {
        max-width: 320px;
    }

    .contact-graphic img {
        border-radius: 14px;
    }

    .about-text p {
        font-size: 15px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-num {
        font-size: 32px;
    }

    .dot-pattern {
        display: none;
    }

    .circle {
        display: none;
    }

    .mobile-menu__inner {
        padding: 80px 30px 30px;
    }

    .mobile-menu__inner a {
        font-size: 16px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .bts {
        flex-direction: column;
        gap: 16px;
    }

    .bts .btn {
        width: 100%;
    }

    .hero-image-container {
        max-width: 280px;
    }

    .info-list ul {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .info-list li {
        width: 100%;
        max-width: 240px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .logo img {
        height: 28px;
    }

    .header__builder {
        padding: 0 16px;
    }

    .testimonial-content {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .testimonial-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .testimonial-info .name {
        font-size: 16px;
    }

    .lui-section {
        padding: 50px 0;
    }

    .lui-section-hero {
        padding: 80px 0 50px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .btn-header {
        padding: 6px 18px;
        font-size: 11px;
    }

    .switcher-btn {
        width: 36px;
        height: 36px;
    }

    .mobile-menu {
        width: 100%;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-copyright {
        font-size: 12px;
    }
}
