/* ==================== CSS VARIABLES ==================== */
:root {
  --primary: #a83417;
  --primary-rgb: 168, 52, 23;
  --primary-dark: #832610;
  --primary-light: #c85a38;
  --dark: #1c1c22;
  --dark2: #252530;
  --bg: #fafaf7;
  --bg2: #f2f0eb;
  --bg3: #e8e5df;
  --text: #1c1c22;
  --text2: #555560;
  --text3: #8a8a95;
  --border: #e0ddd8;
  --card: #ffffff;
  --nav-bg: rgba(250, 250, 247, 0.96);
  --sh1: 0 2px 15px rgba(0, 0, 0, 0.06);
  --sh2: 0 8px 40px rgba(0, 0, 0, 0.1);
  --sh3: 0 20px 80px rgba(0, 0, 0, 0.15);
  --r: 16px;
  --rs: 8px;
  --rl: 24px;
  --tr: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  --trf: all 0.15s ease;
}
[data-theme="dark"] {
  --bg: #0c0c10;
  --bg2: #13131a;
  --bg3: #1a1a24;
  --text: #f0ede8;
  --text2: #a8a5a0;
  --text3: #606068;
  --border: #252530;
  --card: #13131a;
  --nav-bg: rgba(12, 12, 16, 0.96);
  --sh1: 0 2px 15px rgba(0, 0, 0, 0.25);
  --sh2: 0 8px 40px rgba(0, 0, 0, 0.4);
  --sh3: 0 20px 80px rgba(0, 0, 0, 0.6);
}

/* ==================== BASE ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}
body {
  font-family: "Instrument Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Phudu", cursive;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--tr);
}
img {
  max-width: 100%;
}
section {
  overflow: hidden;
}

/* ==================== LOADER ==================== */
#loader {
  position: fixed;
  inset: 0;
  background: #0c0c10;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s, visibility 0.6s;
}
#loader.gone {
  opacity: 0;
  visibility: hidden;
}
.ld-logo {
  font-family: "Phudu", cursive;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
}
.ld-logo span {
  color: var(--primary);
}
.ld-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.ld-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  animation: ldFill 1.8s ease forwards;
}
@keyframes ldFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ==================== CURSOR ==================== */
.c-dot,
.c-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transition: opacity 0.3s;
}
.c-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  transform: translate(-50%, -50%);
}
.c-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--primary);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.c-ring.big {
  width: 52px;
  height: 52px;
  border-color: rgba(var(--primary-rgb), 0.4);
}
@media (max-width: 1024px) {
  .c-dot,
  .c-ring {
    display: none;
  }
}

/* ==================== UTILITIES ==================== */
.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 6px 14px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 100px;
  margin-bottom: 16px;
}
.sec-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.sec-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.sec-title span {
  color: var(--primary);
}
.sec-desc {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 580px;
  line-height: 1.8;
}
.sec-hd {
  margin-bottom: 60px;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: var(--tr);
  cursor: pointer;
}
.btn-p:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(var(--primary-rgb), 0.4);
}
.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  transition: var(--tr);
}
.btn-o:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-w {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #fff;
  color: var(--primary);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #fff;
  transition: var(--tr);
}
.btn-w:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ==================== TOPBAR ==================== */
#topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  padding: 9px 0;
  transition: var(--tr);
}
[data-theme="dark"] #topbar {
  background: #070710;
}
.tb-l a {
  color: rgba(255, 255, 255, 0.65);
  margin-right: 18px;
  transition: var(--trf);
}
.tb-l a:hover,
.tb-l a i {
  color: var(--primary);
}
.tb-l i {
  margin-right: 5px;
  font-size: 0.78rem;
}
.tb-r {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.tb-soc a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  transition: var(--trf);
  margin-left: 8px;
}
.tb-soc a:hover {
  color: var(--primary);
}
.t-toggle {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 4px 12px 4px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  transition: var(--trf);
}
.t-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.t-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

/* ==================== NAVBAR ==================== */
#navbar {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 998;
  transition: all 0.4s;
}
#navbar.scrolled {
  box-shadow: var(--sh2);
}
.navbar-brand {
  font-family: "Phudu", cursive;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text) !important;
  letter-spacing: -1px;
}
.navbar-brand span {
  color: var(--primary);
}
.nav-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text2) !important;
  padding: 8px 12px !important;
  border-radius: var(--rs);
  transition: var(--trf) !important;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text) !important;
  background: var(--bg2);
}
.nav-cta {
  padding: 10px 22px !important;
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 100px !important;
}
.nav-cta:hover {
  opacity: 0.88;
  background: var(--primary) !important;
  color: #fff !important;
}
.navbar-toggler {
  border: none;
  padding: 8px;
  background: var(--bg2);
  border-radius: var(--rs);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.tog-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.tog-line {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr);
}
.tog-line:nth-child(2) {
  width: 16px;
}

/* ==================== HERO ==================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-pbg {
  position: absolute;
  inset: -20% 0;
  background: url("../img/customer/stove-fire3.jpg")
    center/cover no-repeat;
  will-change: transform;
}
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 14, 0.93) 0%,
    rgba(28, 28, 34, 0.78) 55%,
    rgba(var(--primary-rgb), 0.12) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(var(--primary-rgb), 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseD 2s ease infinite;
}
@keyframes pulseD {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.hero-title {
  font-family: "Phudu", cursive;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .hl {
  color: var(--primary);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
  line-height: 1.82;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn-hp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: var(--tr);
}
.btn-hp:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.5);
}
.btn-hs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transition: var(--tr);
}
.btn-hs:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-3px);
}
.play-circle {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  transition: var(--tr);
  flex-shrink: 0;
}
.btn-hs:hover .play-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.hstat {
  color: #fff;
  padding: 0 28px;
}
.hstat:first-child {
  padding-left: 0;
}
.hstat-num {
  font-family: "Phudu", cursive;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hstat-num span {
  color: var(--primary);
}
.hstat-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hstat-div {
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
  align-self: center;
  height: 44px;
}
.hero-img-wrap {
  border-radius: var(--rl);
  overflow: hidden;
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 16px 20px;
  color: #fff;
}
.hero-float.f1 {
  bottom: 28px;
  left: -28px;
  animation: fl1 3s ease-in-out infinite;
}
.hero-float.f2 {
  top: 28px;
  right: -18px;
  animation: fl2 3.5s ease-in-out infinite;
}
@keyframes fl1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes fl2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.fl-lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.fl-val {
  font-family: "Phudu", cursive;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
}
.fl-val span {
  color: var(--primary);
}
.scroll-ind {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 13px;
  margin: 0 auto 8px;
  position: relative;
}
.scroll-mouse::after {
  content: "";
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: sMouse 1.8s ease infinite;
}
@keyframes sMouse {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }
}
.scroll-txt {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ==================== TICKER ==================== */
.ticker {
  padding: 22px 0;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 50px;
  animation: tick 22s linear infinite;
  white-space: nowrap;
}
.tick-item {
  font-family: "Phudu", cursive;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  transition: color 0.2s;
  cursor: default;
}
.tick-item:hover {
  color: var(--primary);
}
.tick-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==================== FEATURES ==================== */
#features {
  padding: 80px 0;
  background: var(--bg2);
}
.feat-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--tr);
  height: 100%;
}
.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh3);
  border-color: rgba(var(--primary-rgb), 0.3);
}
.feat-ico {
  width: 58px;
  height: 58px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--rs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--tr);
}
.feat-card:hover .feat-ico {
  background: var(--primary);
  color: #fff;
}
.feat-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ==================== ABOUT ==================== */
#about {
  padding: 100px 0;
  background: var(--bg);
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--rl);
}
.about-exp {
  position: absolute;
  bottom: 28px;
  right: -18px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r);
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.4);
}
.about-exp-n {
  font-family: "Phudu", cursive;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.about-exp-l {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.05em;
}
.about-clients {
  position: absolute;
  top: 28px;
  right: -18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
  box-shadow: var(--sh2);
}
.cl-avs {
  display: flex;
  margin-bottom: 8px;
}
.cl-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--card);
  margin-right: -8px;
  object-fit: cover;
}
.cl-cnt {
  font-weight: 700;
  font-size: 0.85rem;
}
.cl-lbl {
  font-size: 0.75rem;
  color: var(--text2);
}
.about-cnt {
  padding-left: 44px;
}
.about-desc {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.82;
  margin-bottom: 28px;
}
.astat {
  padding: 22px;
  background: var(--bg2);
  border-radius: var(--r);
  border: 1px solid var(--border);
  text-align: center;
}
.astat-n {
  font-family: "Phudu", cursive;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.astat-l {
  font-size: 0.8rem;
  color: var(--text2);
  font-weight: 500;
}
.skill-row {
  margin-bottom: 18px;
}
.skill-hd {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.88rem;
}
.skill-nm {
  font-weight: 600;
}
.skill-pc {
  font-weight: 600;
  color: var(--primary);
}
.prog-track {
  height: 5px;
  background: var(--bg3);
  border-radius: 10px;
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ==================== SERVICES ==================== */
#services {
  padding: 100px 0;
  background: var(--bg2);
}
.svc-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--tr);
  cursor: pointer;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--tr);
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh3);
}
.svc-num {
  font-family: "Phudu", cursive;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--bg3);
  line-height: 1;
  margin-bottom: 18px;
  transition: var(--tr);
}
.svc-card:hover .svc-num {
  color: rgba(var(--primary-rgb), 0.12);
}
.svc-ico {
  width: 54px;
  height: 54px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--rs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--tr);
}
.svc-card:hover .svc-ico {
  background: var(--primary);
  color: #fff;
}
.svc-title {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-tag {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  padding: 4px 10px;
  border-radius: 100px;
}
.svc-arr {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text2);
  transition: var(--tr);
}
.svc-card:hover .svc-arr {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

/* ==================== SHOWREEL ==================== */
#showreel {
  padding: 70px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
[data-theme="dark"] #showreel {
  background: #070710;
}
.sr-bg {
  position: absolute;
  inset: 0;
  background: url("../img/customer/log-pile2.jpg")
    center/cover;
  opacity: 0.06;
}
.sr-cnt {
  position: relative;
  z-index: 1;
}
.sr-yr {
  font-family: "Phudu", cursive;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  letter-spacing: -0.02em;
  line-height: 1;
}
.sr-title {
  font-family: "Phudu", cursive;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.sr-play {
  display: inline-flex;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 20px;
  cursor: pointer;
  transition: var(--tr);
  animation: rotSpin 9s linear infinite;
}
.sr-play:hover {
  transform: scale(1.12);
  animation-play-state: paused;
}
@keyframes rotSpin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.sr-star {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 10px;
}
.mq-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  margin-top: 30px;
}
.mq-track {
  display: flex;
  gap: 36px;
  animation: mqRoll 15s linear infinite;
}
.mq-item {
  font-family: "Phudu", cursive;
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.13);
  white-space: nowrap;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.mq-item span {
  color: rgba(255, 255, 255, 0.35);
}
@keyframes mqRoll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==================== PORTFOLIO ==================== */
#portfolio {
  padding: 100px 0;
  background: var(--bg);
}
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.ftab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text2);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trf);
}
.ftab.active,
.ftab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pf-item {
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.pf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.pf-item:hover .pf-img {
  transform: scale(1.08);
}
.pf-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 26, 0.9) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.pf-item:hover .pf-ov {
  opacity: 1;
}
.pf-cat {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.pf-name {
  font-family: "Phudu", cursive;
  font-size: 1.28rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.pf-plus {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transition: var(--tr);
}
.pf-item:hover .pf-plus {
  opacity: 1;
  background: var(--primary);
}

/* ==================== TEAM ==================== */
#team {
  padding: 100px 0;
  background: var(--bg2);
}
.tm-card {
  background: var(--card);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--tr);
}
.tm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh3);
}
.tm-img-wrap {
  position: relative;
  overflow: hidden;
  height: 270px;
}
.tm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tm-card:hover .tm-img {
  transform: scale(1.06);
}
.tm-img-ov {
  position: absolute;
  inset: 0;
  background: rgba(var(--primary-rgb), 0.82);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm-card:hover .tm-img-ov {
  opacity: 1;
}
.tm-view {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transform: scale(0.4);
  transition: var(--tr);
}
.tm-card:hover .tm-view {
  transform: scale(1);
}
.tm-info {
  padding: 18px 22px;
}
.tm-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tm-role {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.tm-soc {
  display: flex;
  gap: 8px;
}
.tm-soc a {
  width: 28px;
  height: 28px;
  background: var(--bg2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  color: var(--text2);
  transition: var(--trf);
}
.tm-soc a:hover {
  background: var(--primary);
  color: #fff;
}

/* ==================== PRICING ==================== */
#pricing {
  padding: 100px 0;
  background: var(--bg);
}
.pr-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}
.pr-lbl {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text2);
}
.pr-lbl.on {
  color: var(--text);
  font-weight: 600;
}
.pr-sw {
  width: 52px;
  height: 28px;
  background: var(--bg3);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: var(--trf);
  border: none;
  outline: none;
}
.pr-sw.on {
  background: var(--primary);
}
.pr-knob {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  transition: var(--tr);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.pr-sw.on .pr-knob {
  left: 28px;
}
.save-b {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.pr-card {
  background: var(--card);
  border-radius: var(--rl);
  padding: 40px 36px;
  border: 1.5px solid var(--border);
  transition: var(--tr);
  height: 100%;
  position: relative;
}
.pr-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08), var(--sh3);
}
.pr-card.feat {
  background: var(--dark);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1), var(--sh3);
}
[data-theme="dark"] .pr-card.feat {
  background: linear-gradient(135deg, #1a1a30, #0f0f1a);
}
.pr-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pr-tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 18px;
}
.pr-card.feat .pr-tier {
  color: rgba(255, 255, 255, 0.5);
}
.pr-price-wrap {
  margin-bottom: 8px;
  color: var(--text);
}
.pr-card.feat .pr-price-wrap {
  color: #fff;
}
.pr-cur {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.pr-amt {
  font-family: "Phudu", cursive;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}
.pr-per {
  font-size: 0.85rem;
  color: var(--text3);
}
.pr-card.feat .pr-per {
  color: rgba(255, 255, 255, 0.45);
}
.pr-desc {
  font-size: 0.88rem;
  color: var(--text2);
  margin-bottom: 26px;
  line-height: 1.65;
}
.pr-card.feat .pr-desc {
  color: rgba(255, 255, 255, 0.65);
}
.pr-hr {
  height: 1px;
  background: var(--border);
  margin-bottom: 26px;
}
.pr-card.feat .pr-hr {
  background: rgba(255, 255, 255, 0.12);
}
.pr-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.pr-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  padding: 7px 0;
  color: var(--text2);
}
.pr-card.feat .pr-feats li {
  color: rgba(255, 255, 255, 0.78);
}
.pr-feats li i {
  color: var(--primary);
  font-size: 0.84rem;
  flex-shrink: 0;
}
.pr-feats li.no {
  opacity: 0.4;
}
.pr-feats li.no i {
  color: var(--text3);
}
.btn-pr {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--tr);
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-pr:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pr-card.feat .btn-pr {
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}
.pr-card.feat .btn-pr:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ==================== TESTIMONIALS ==================== */
#testimonials {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] #testimonials {
  background: #070710;
}
.tst-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}
.tst-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  padding: 36px;
  position: relative;
  height: 100%;
}
.tst-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.tst-stars i {
  color: #ffb800;
  font-size: 0.88rem;
}
.tst-txt {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 22px;
}
.tst-auth {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tst-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.tst-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.93rem;
  margin-bottom: 2px;
}
.tst-co {
  font-size: 0.8rem;
  color: var(--primary);
}
.tst-q {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 4rem;
  color: rgba(var(--primary-rgb), 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
  border-radius: 3px;
}

/* ==================== FAQ ==================== */
#faq {
  padding: 100px 0;
  background: var(--bg2);
}
.faq-acc .accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--tr);
}
.faq-acc .accordion-item:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
}
.faq-acc .accordion-button {
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 20px 24px;
  box-shadow: none !important;
}
.faq-acc .accordion-button:not(.collapsed) {
  background: var(--card);
  color: var(--primary);
}
.faq-acc .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 0.78rem;
  color: var(--text2);
  transition: var(--tr);
}
.faq-acc .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--primary);
  transform: none;
}
.faq-acc .accordion-body {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.82;
}

/* ==================== NEWS ==================== */
#news {
  padding: 100px 0;
  background: var(--bg);
}
.news-card {
  background: var(--card);
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--tr);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh3);
}
.news-img-wrap {
  overflow: hidden;
  height: 220px;
}
.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-img {
  transform: scale(1.06);
}
.news-body {
  padding: 24px;
}
.news-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.news-title {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--trf);
}
.news-card:hover .news-title {
  color: var(--primary);
}
.news-ex {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text3);
}
.news-meta i {
  color: var(--primary);
}
.news-rm {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 14px;
  transition: gap 0.2s;
}
.news-card:hover .news-rm {
  gap: 10px;
}

/* ==================== CONTACT ==================== */
#contact {
  padding: 100px 0;
  background: var(--bg);
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.ci-ico {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--rs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}
.ci-lbl {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 4px;
}
.ci-val {
  font-weight: 600;
  font-size: 0.93rem;
}
.cf-wrap {
  background: var(--card);
  border-radius: var(--rl);
  padding: 44px;
  border: 1px solid var(--border);
}
.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-control,
.form-select {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--rs);
  color: var(--text);
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: var(--trf);
}
.form-control:focus,
.form-select:focus {
  background: var(--bg2);
  border-color: var(--primary);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}
.form-control::placeholder {
  color: var(--text3);
}
textarea.form-control {
  resize: none;
  min-height: 130px;
}
[data-theme="dark"] .form-select option {
  background: var(--bg2);
  color: var(--text);
}

/* ==================== CTA BOTTOM ==================== */
#cta-bottom {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.cta-pat {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 15% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 85% 50%, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
}
.cta-cnt {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

/* ==================== FOOTER ==================== */
#footer {
  background: var(--dark);
  padding: 80px 0 0;
}
[data-theme="dark"] #footer {
  background: #070710;
}
.ft-brand {
  font-family: "Phudu", cursive;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
  display: block;
}
.ft-brand span {
  color: var(--primary);
}
.ft-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.82;
  margin-bottom: 22px;
  max-width: 280px;
}
.ft-soc {
  display: flex;
  gap: 10px;
}
.ft-soc a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  transition: var(--trf);
}
.ft-soc a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.ft-heading {
  font-family: "Phudu", cursive;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ft-links li {
  margin-bottom: 10px;
}
.ft-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--trf);
  display: flex;
  align-items: center;
  gap: 0;
}
.ft-links a:hover {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 8px;
}
.ft-ci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}
.ft-ci i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.ft-div {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-top: 60px;
}
.ft-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}
.ft-copy span {
  color: var(--primary);
}
.ft-blinks {
  display: flex;
  gap: 20px;
}
.ft-blinks a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--trf);
}
.ft-blinks a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ==================== MODALS ==================== */
.modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
}
.modal-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
}
.modal-title {
  font-family: "Phudu", cursive;
  font-weight: 700;
}
.modal-body {
  padding: 28px;
}
.btn-close {
  background: var(--bg3);
  border-radius: 50%;
  opacity: 1;
  width: 32px;
  height: 32px;
  padding: 0;
}
[data-theme="dark"] .btn-close {
  filter: invert(1);
}
.mod-svc-ico {
  width: 68px;
  height: 68px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.sub-svc {
  padding: 16px 20px;
  background: var(--bg2);
  border-radius: var(--rs);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
.sub-svc-n {
  font-weight: 700;
  font-size: 0.94rem;
  margin-bottom: 4px;
}
.sub-svc-d {
  font-size: 0.84rem;
  color: var(--text2);
}
.pf-mod-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 22px;
}
.pf-d-lbl {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 4px;
}
.pf-d-val {
  font-size: 0.92rem;
  font-weight: 600;
}
.pf-result {
  background: rgba(var(--primary-rgb), 0.07);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--rs) var(--rs) 0;
  padding: 14px 18px;
  margin-top: 14px;
}
.pf-result p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text2);
}
.tm-mod-hd {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}
.tm-mod-av {
  width: 100px;
  height: 100px;
  border-radius: var(--r);
  object-fit: cover;
  flex-shrink: 0;
}
.tm-mod-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.tm-mod-bio {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.82;
}
.tm-sk-row {
  margin-bottom: 14px;
}
.tm-sk-hd {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.tm-sk-pc {
  color: var(--primary);
}

/* ==================== SCROLL TOP ==================== */
#scrtop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr);
  z-index: 989;
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.4);
}
#scrtop.show {
  opacity: 1;
  visibility: visible;
}
#scrtop:hover {
  transform: translateY(-4px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .about-cnt {
    padding-left: 0;
    margin-top: 44px;
  }
  .about-exp,
  .about-clients {
    right: 0;
  }
  .hero-img-wrap,
  .hero-float {
    display: none;
  }
}
@media (max-width: 767px) {
  .tb-l {
    display: none;
  }
  .hero-stats {
    gap: 0;
  }
  .hstat {
    padding: 0 16px;
  }
  .cf-wrap {
    padding: 24px;
  }
}
@media (max-width: 575px) {
  .hero-btns {
    flex-direction: column;
  }
  .btn-hp,
  .btn-hs {
    width: 100%;
    justify-content: center;
  }
  .filter-tabs {
    gap: 6px;
  }
  .ftab {
    padding: 6px 14px;
    font-size: 0.82rem;
  }
}

/* ==================== PHOTO-BACKED PRODUCT CARDS (J&S Brown) ==================== */
.svc-card.svc-photo {
  min-height: 340px;
  border: none;
  color: #fff;
}
.svc-card.svc-photo .svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.svc-card.svc-photo:hover .svc-bg {
  transform: scale(1.07);
}
.svc-card.svc-photo .svc-ov {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(12, 12, 16, 0.86) 0%,
    rgba(12, 12, 16, 0.72) 52%,
    rgba(var(--primary-rgb), 0.4) 100%
  );
}
.svc-card.svc-photo .svc-num,
.svc-card.svc-photo .svc-ico,
.svc-card.svc-photo .svc-title,
.svc-card.svc-photo .svc-desc,
.svc-card.svc-photo .svc-tags,
.svc-card.svc-photo .svc-arr {
  position: relative;
  z-index: 2;
}
.svc-card.svc-photo .svc-num {
  color: rgba(255, 255, 255, 0.18);
}
.svc-card.svc-photo:hover .svc-num {
  color: rgba(var(--primary-rgb), 0.95);
}
.svc-card.svc-photo .svc-title {
  color: #fff;
}
.svc-card.svc-photo .svc-desc {
  color: rgba(255, 255, 255, 0.84);
}
.svc-card.svc-photo .svc-ico {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.svc-card.svc-photo:hover .svc-ico {
  background: var(--primary);
  color: #fff;
}
.svc-card.svc-photo .svc-arr {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.svc-card.svc-photo .svc-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

/* ==================== CENTRED PRODUCT CARDS & MODALS (J&S Brown) ==================== */
.svc-card.svc-photo {
  text-align: center;
}
.svc-card.svc-photo .svc-ico {
  margin-left: auto;
  margin-right: auto;
}
.svc-card.svc-photo .svc-tags {
  justify-content: center;
}
.svc-modal-body {
  text-align: center;
}
.svc-modal-body .mod-svc-ico {
  margin-left: auto;
  margin-right: auto;
}

/* ==================== MOBILE FIXES (J&S Brown) ==================== */
/* Kill phantom horizontal scroll without breaking the sticky navbar */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
}
/* Centre the hero content on tablet & mobile */
@media (max-width: 991px) {
  .hero-content {
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
}
/* Stack CTA buttons, keep them off the edges */
@media (max-width: 575px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-hp,
  .btn-hs {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* FAQ: space between intro/button and first question when stacked (J&S Brown) */
@media (max-width: 991px) {
  .faq-acc {
    margin-top: 36px;
  }
}

/* Centre the feature cards (J&S Brown) */
.feat-card {
  text-align: center;
}
.feat-card .feat-ico {
  margin-left: auto;
  margin-right: auto;
}
