/* =========================================
   CSS CUSTOM PROPERTIES
========================================= */
#featured {
  transition: opacity 0.3s ease-in-out;
}

:root {
  --orange: #ff4e00;
  --orange-dim: rgba(255, 106, 0, 0.15);
  --orange-glow: 0 0 24px rgba(255, 106, 0, 0.55);
  --orange-glow-lg: 0 0 50px rgba(255, 106, 0, 0.35);
  --bg: #000000;
  --bg-card: #000000;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.15);
  --border-orange: rgba(255, 106, 0, 0.5);
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --glass: rgba(12, 12, 12, 0.7);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --nav-h: 80px;
  --page-pad: clamp(20px, 6vw, 120px);
  --section-y: clamp(70px, 8vw, 120px);
}

/* =========================================
   RESET & BASE
========================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  padding-top: 10px;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: pointer;
}

img {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
button {
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}
ul {
  list-style: none;
}
h1,h2,h4{color: #fff !important;}
.zpsection{    padding: 0 !important;}
.zpelement{margin: 0 !important;}
/* Accessibility utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* =========================================
   CUSTOM CURSOR
========================================= */
#cursor-dot,
#cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  top: 0;
  left: 0;
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 106, 0, 0.6);
  top: 0;
  left: 0;
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    border-color 0.3s;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring,
body:has(input:focus) #cursor-ring,
body:has(textarea:focus) #cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--orange);
  background: rgba(255, 106, 0, 0.1);
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
h3 {
  font-size: 1.3rem;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
}
.section-title {
  margin-bottom: 12px;
}
.section-sub {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  max-width: 100%;
  margin-bottom: 50px;
  line-height: 1.6;
}
.hl {
  position: relative;
  color: orangered;
  font-weight: 700;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-orange {
  background: linear-gradient(90deg, #ff4e00, #ff7a22);
  color: #fff;
}

.btn-orange:hover {
  box-shadow: 0 0 30px rgba(255, 78, 0, 0.5);
}

.btn-outline {
  border: 2px solid #fff;
  background: transparent;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
  margin: 20px 0;
  width: 100%;
}
.btn-primary:hover {
  box-shadow: var(--orange-glow-lg);
  transform: translateY(-2px);
}

/* Inactive submit button until all required fields are filled */
.form-submit:disabled,
.form-submit[disabled] {
  background: #9ca3af;
  color: #e5e7eb;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}
.form-submit:disabled:hover,
.form-submit[disabled]:hover {
  transform: none;
  box-shadow: none;
}

.btn-outline {
  background: white;
  color: var(--orange);
}

/* =========================================
   NAVBAR
========================================= */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 40px);
  padding: 10px var(--page-pad);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
  font-size: 12px;
}

.top-content {
  color: #ff4e00;
  font-weight: 700;
}

.navbar {
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 var(--page-pad);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
  border-top: 1px solid rgb(255, 255, 255, 0.4);
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 50px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}

.navbar.scrolled {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}
.nav-logo img {
  height: 100%;
}
.nav-links {
  display: flex;
  gap: clamp(18px, 2.4vw, 40px);
  align-items: center;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #ffffff;
  transition: color 0.3s;
}
.search-circle {
  width: 36px;
  height: 36px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links a:hover {
  color: var(--orange);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}
.nav-hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* ── ANIMATION CLASSES ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.visible {
  opacity: 1;
}

/* =========================================
   1. HERO SECTION
========================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #000000;
  margin-top: 0;
  padding: 150px 0 120px;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  background: #000000;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  border-top: 2px solid #ffffff;
  box-shadow:
    0 -20px 60px rgba(0, 0, 0),
    0 -5px 20px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  align-self: flex-end;
  transform: translateY(40px);
  width: min(100%, 450px);
  max-width: 450px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-visual p {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  z-index: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease-in-out;
}

#video2 {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  width: 100%;
}

.hero-content > * {
  min-width: 0;
}

.hero-text {
  flex: 1;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  padding: 8px 16px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  max-width: 100%;
  backdrop-filter: blur(45px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border: 1px solid rgb(255, 255, 255, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: var(--orange);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border-radius: 50px;
}

.hero-badge span {
  min-width: 0;
}
.hero-text h1 {
  margin-bottom: 25px;
}
.hero-text p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-stats {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
  gap: 20px;
}

.hero-stats div {
  flex: 1;
}

.hero-stats strong {
  font-size: 1.5rem;
  color: var(--orange);
}

.hero-stats span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.platform-icons {
  margin: 10px 0;
}

.platform-icons img {
  width: auto;
  max-height: 42px;
}

/* scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  color: white;
  font-size: 12px;
  font-weight: medium;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 10;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.scroll-dash {
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform-origin: top;
  animation: scrollAnim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(0) scaleY(0);
  }
  50% {
    transform: translateY(0) scaleY(0.4);
  }
  100% {
    transform: translateY(60px) scaleY(0);
  }
}

/* =========================================
   2. CLIENT TICKER (Boxed layout)
========================================= */
.clients {
  overflow: hidden;
  position: relative;
  padding: 30px 0;
  background: #000000;
  border-top: 1px solid var(--border);
}

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

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

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

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.client-card {
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-card img {
  max-height: 80%;
  object-fit: contain;
}

/* =========================================
   3. SERVICES SECTION (Sci-fi cards)
========================================= */
.services {
  padding: var(--section-y) 0;
  background-image: url("/zohogame/core-service-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.services-header {
  text-align: left;
  margin-bottom: 60px;
}
.services-header .section-label {
  justify-content: left;
}
.services-header .section-label::before,
.services-header .section-label::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--orange);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  justify-items: center;
}
.service-card {
  background-image: url("/zohogame/service-card.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  width: min(100%, 400px);
  height: 260px;
  overflow: hidden;
  cursor: pointer;
  padding: 24px 22px;
  text-align: left;
  position: relative;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  z-index: 2;
}

.service-card2 {
  background-image: url("/zohogame/service-card2.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  width: min(100%, 400px);
  height: 260px;
  overflow: hidden;
  cursor: pointer;
  padding: 24px 22px;
  text-align: left;
  position: relative;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  z-index: 2;
}

.service-icon-wrap {
  height: 54px;
  padding-left: 18px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-wrap2 {
  height: 54px;
  padding-right: 8px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-wrap img {
  height: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px var(--orange));
}
.service-icon-wrap2 img {
  height: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px var(--orange));
}
.service-card h3 {
  margin-bottom: 8px;
  color: #fff;
  padding-left: 22px;
  font-size: 1rem;
}
.service-card:hover h3 {
  transition: 0.5s;
  color: var(--orange);
}
.service-card p {
  color: rgb(200, 200, 200);
  font-size: 0.8rem;
  line-height: 1.35;
  padding-left: 22px;
  padding-right: 15px;
}

.service-card2 h3 {
  margin-bottom: 8px;
  color: #fff;
  padding-left: 22px;
  font-size: 1rem;
}
.service-card2:hover h3 {
  transition: 0.5s;
  color: var(--orange);
}
.service-card2 p {
  color: rgb(200, 200, 200);
  font-size: 0.8rem;
  line-height: 1.35;
  padding-left: 22px;
  padding-right: 15px;
}

/* =========================================
   4. PORTFOLIO SECTION (Angled Cards)
========================================= */
.portfolio {
  padding: 50px 0;
  background: #000000;
  position: relative;
}
.portfolio::before,
.portfolio::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(40px, 8vw, 120px);
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.portfolio::before {
  left: 0;
  background: linear-gradient(to right, #000 80%, transparent);
}

.portfolio::after {
  right: 0;
  background: linear-gradient(to left, #000 80%, transparent);
}

.portfolio-header {
  position: relative;
  max-width: 100%;
  padding: clamp(80px, 8vw, 120px) 0 clamp(110px, 9vw, 140px);
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #000000 0%,
    rgb(255, 78, 0, 0.49) 50%,
    #000000 100%
  );
}

.portfolio-container {
  position: relative;
  z-index: 2;
}

.portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.portfolio-label {
  font-size: 16px;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 10px;
  display: inline-block;
}

.portfolio-heading {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(2.2rem, 4.3vw, 55px);
  color: white;
}

.portfolio-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.portfolio-text p {
  max-width: 800px;
  color: #ffffff;
  line-height: 1.6;
}

.portfolio-cta {
  display: flex;
  align-items: center;
}

.portfolio-nav {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(14px, 4vw, 60px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.scroll-btn {
  pointer-events: all;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 81, 0, 0.8);
  backdrop-filter: blur(10px);
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.scroll-btn:hover {
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 78, 0, 0.5);
}

.portfolio-scroll-wrap {
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  padding: 0 var(--page-pad);
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none; /* Hide standard scrollbar */
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
}

.portfolio-scroll-wrap.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.portfolio-scroll-wrap::-webkit-scrollbar {
  display: none;
}
.portfolio-grid {
  display: flex;
  gap: clamp(18px, 2.2vw, 30px);
  width: max-content;
  padding-bottom: 10px;
}

.portfolio-item {
  flex: 0 0 clamp(250px, 23vw, 330px);
  overflow: hidden;
  scroll-snap-align: center;
}

.portfolio-item img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  width: 100%;
  height: auto;
}

/* =========================================
   5. MID CTA BANNER
========================================= */
.mid-cta {
  position: relative;
  min-height: clamp(430px, 52vw, 754px);
  display: flex;
  align-items: center;
  background: url("/zohogame/cta-bg11.png") center/cover no-repeat;
}
.mid-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 2;
  padding: 0 var(--page-pad);
}
.mid-cta-text p {
  padding-bottom: 20px;
  width: min(450px, 100%);
}

.mid-cta-text h2 {
  padding-bottom: 20px;
}

/* =========================================
   6. FEATURED CASE STUDY
========================================= */
.featured {
  padding: clamp(60px, 7vw, 90px) 0;
}
.featured-inner {
  display: flex;
  align-items: center;
  gap: clamp(36px, 6vw, 100px);
}
.featured-text {
  flex: 1;
}
.featured-game-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  margin-top: 8px;
  line-height: 1.2;
}
.featured-desc {
  color: white;
  line-height: 1.7;
  margin-bottom: 30px;
  margin-top: 10px;
  font-size: 1rem;
}
.featured-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
}
.meta-item span {
  color: #fff;
  font-size: 0.95rem;
}
.meta-item strong {
  color: var(--orange);
  display: block;
  font-size: 1rem;
}
.featured-visual {
  flex: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  height: clamp(360px, 36vw, 550px);
  position: relative;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 78, 0, 0.8);
}
.featured-visual::after {
  content: "";
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 40%);
}
.featured-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-visual iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ── YouTube Thumbnail Player ── */
.yt-player {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
}
.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}
.yt-player:hover .yt-thumb {
  transform: scale(1.04);
  filter: brightness(0.75);
}
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
  z-index: 2;
  width: 72px;
  height: 52px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}
.yt-player:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  filter: drop-shadow(0 4px 30px rgba(255, 0, 0, 0.7));
}
.yt-play-bg {
  fill: #ff0000;
  transition: fill 0.2s;
}
.yt-player:hover .yt-play-bg {
  fill: #cc0000;
}
.yt-play-arrow {
  fill: #fff;
}
.yt-iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: none;
  z-index: 3;
}
.yt-player.playing .yt-thumb,
.yt-player.playing .yt-play-btn {
  display: none;
}
.yt-player.playing .yt-iframe {
  display: block;
}

/* =========================================
   7 & 8. PROCESS & TECH STACK
========================================= */
.process {
  padding: var(--section-y) 0;
  position: relative;
  background: url("/zohogame/our-process-bg.png") center/cover no-repeat;
  color: white;
}
.process-header {
  text-align: left;
  margin-bottom: 80px;
  max-width: 700px;
}
.process-sub {
  color: #ffffff;
  margin-top: 10px;
  line-height: 1.6;
  width: auto;
  max-width: 1000px;
}
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: flex-start;
  gap: clamp(20px, 3vw, 60px);
}
.process-line::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ff4e00, transparent);
}
.step {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: linear-gradient(145deg, #ff4e00, #ff7a22);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 25px rgba(255, 78, 0, 0.5);
}
.step h3 {
  color: var(--orange);
  font-size: 12px;
  margin-bottom: 5px;
}

.step h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

.tech {
  padding: var(--section-y) 0;
  overflow: hidden;
}

.tech-carousel {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

.tech-track {
  display: flex;
  padding-top: 30px;
  gap: clamp(36px, 5vw, 80px);
  width: max-content;
  animation: techScroll 30s linear infinite;
}
.tech-item {
  width: clamp(112px, 12vw, 160px);
  height: clamp(112px, 12vw, 160px);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(177, 53, 0) 45%, #000000 75%);
  border: 3px solid rgba(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 20px rgba(255, 78, 0, 0.3),
    inset 0 0 20px rgba(255, 78, 0, 0.15);
  transition: 0.3s;
  position: relative;
}
.tech-item:hover {
  transform: scale(1.15);
  box-shadow:
    0 0 30px rgba(255, 78, 0, 0.6),
    inset 0 0 25px rgba(255, 78, 0, 0.2);
}

.tech-item img {
  height: 45%;
  filter: drop-shadow(0 0 8px rgba(255, 78, 0, 0.6));
  margin-bottom: 5px;
}

.tech-item span {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

/* =========================================
   9. TESTIMONIALS (Vertical Stack Layout)
========================================= */
.testimonials {
  padding: var(--section-y) 0;
  background: linear-gradient(#000000, rgb(255, 78, 0, 0.4), #000000);
  position: relative;
  overflow: hidden;
}

.test-wrapper {
  min-height: clamp(520px, 55vw, 700px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.test-side-char {
  position: absolute;
  bottom: -20%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.left-char {
  height: 700px;
  left: -260px;
}

.right-char {
  height: 700px;
  right: -260px;
}
/* Stacked Testimonials specifically matching the design */

.reviewer-score {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviewer-score span {
  font-weight: bold;
  color: #fff;
}

.stars {
  font-size: 18px; /* smaller = cleaner */
  letter-spacing: 2px;
  color: var(--orange);
}

.test-stack {
  display: flex;
  flex-direction: column;
  padding-top: clamp(40px, 7vw, 100px);
  gap: clamp(20px, 3vw, 30px);
  flex: 1;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.test-card {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  text-align: left;
  position: relative;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 20px rgba(255, 78, 0, 0.05);
}

.test-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 78, 0, 0.4),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}
.test-card:hover::before {
  opacity: 1;
}

.page {
  width: 32px;
  height: 32px;
  border-radius: 20px;
  background: rgba(58, 58, 58, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.page.active {
  background: var(--orange);
  color: #ffffff;
  font-weight: bold;
}

.page:hover {
  background: var(--orange);
}

.reviewer-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.reviewer-avatar {
  width: 45px;
  height: 45px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.reviewer-avatar-blue {
  background: #1a6bff;
}
.reviewer-avatar-green {
  background: #22c55e;
}
.reviewer-info strong {
  display: block;
  font-size: 1.1rem;
  color: #ff4e00;
}
.reviewer-info small {
  color: #ffffff;
  font-size: 0.85rem;
}
.reviewer-score {
  margin-left: auto;
  color: var(--orange);
  font-weight: bold;
}
.test-card p {
  color: #ffffff;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ Ask Button */
.faq-ask-btn {
  margin-top: 20px;
}

/* =========================================
   10. FAQ SECTION
========================================= */
.faq {
  padding: var(--section-y) 0;
  background: #000;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: flex-start;
}

.faq-left h2 {
  font-size: clamp(2rem, 4vw, 48px);
  line-height: 1.2;
}
.faq-left p {
  color: #ffffff;
  max-width: 420px;
  margin-top: 15px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  position: relative;
}

.accordion-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: var(--orange);
  transition: width 0.4s ease;
}

.accordion-item:hover::after {
  width: 100%;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

.accordion-header span {
  max-width: 450px;
}

.accordion-header::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0%;
  background: var(--orange);
  transition: 0.3s;
}

.accordion-header.active {
  color: var(--orange);
}

.accordion-header:hover {
  color: var(--orange);
}
.accordion-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.4s;
}

.icon-inner {
  font-size: 18px;
  transition: transform 0.4s ease;
}

.accordion-header.active .accordion-icon {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 78, 0, 0.5);
}

.accordion-header.active .icon-inner {
  transform: rotate(135deg) scale(1.2); /* smooth morph */
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}
.accordion-header.active + .accordion-body {
  opacity: 1;
  transform: translateY(0);
}

.accordion-body p {
  padding-bottom: 25px;
  color: #fff;
  line-height: 1.7;
  max-width: 600px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}
.accordion-header.active + .accordion-body p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* =========================================
   11. CONTACT SECTION
========================================= */
.contact {
  padding: var(--section-y) 0;
  background: linear-gradient(#000000, rgb(255, 78, 0, 0.4), #000000);
}

.contact-info {
  margin-top: 40px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255);
  color: #fff;
}

.info-row strong {
  color: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
}

.contact-left {
  position: relative;
}
.contact-left p {
  padding-top: 15px;
  position: relative;
}
.contact-left,
.contact-right {
  flex: 1;
}

.contact-char {
  position: relative;
  width: min(350px, 80%);
  height: auto;
  top: 20px;
  left: clamp(0px, 8vw, 120px);
}

.contact-glass {
  background: rgba(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(255, 78, 0, 0.05);
}
.contact-glass h3 {
  margin-bottom: 10px;
  color: var(--orange);
  text-align: center;
}
.contact-glass p {
  margin-bottom: 30px;
  color: white;
  text-align: center;
}
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 10px;
}
.form-field {
  min-width: 0;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #fff;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.9rem;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #fff;
}

.custom-checkbox input {
  display: none;
}

/* Box */
.checkmark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #fff;
  background: transparent;
  position: relative;
  transition: 0.3s;
}

/* When checked */
.custom-checkbox input:checked + .checkmark {
  background: var(--orange);
  border-color: var(--orange);
}

/* Tick mark */
.checkmark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.3s;
}

.custom-checkbox input:checked + .checkmark::after {
  opacity: 1;
}

.form-note {
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
}

.form-note span,
.form-note a {
  color: var(--orange);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.25),
    inset 0 -2px 4px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  height: auto;
}

/* Match the select height/look to the text inputs and add a custom chevron */
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  height: auto;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 78, 0, 0.5),
    0 0 12px rgba(255, 78, 0, 0.4);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #000000;
}
.form-field textarea {
  height: 120px;
  resize: none;
}
.form-field select option {
  background: #000;
  color: #fff;
}

/* Character counter for Project Details */
.zf-charCount {
  margin-top: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

/* =========================================
   12. FOOTER & MOBILE NAV
========================================= */
footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
footer img {
  height: 100%;
  margin-bottom: 15px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.mobile-nav.open {
  transform: translateY(0);
}
.mobile-nav-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.mobile-nav a {
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.mobile-nav a:hover {
  color: var(--orange);
}

/* =========================================
   RESPONSIVE
========================================= */
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

.reveal {
  opacity: 0;
  translate: 0 28px;
  transition:
    opacity 0.7s ease,
    translate 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  translate: 0 0;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}
.reveal-delay-5 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-track,
  .tech-track {
    animation: none;
  }
}

@media (max-width: 1280px) {
  .topbar {
    justify-content: center;
  }

  .services-grid {
    gap: 28px;
  }

  .process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-line::before {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 44px;
  }

  .hero-text {
    margin-bottom: 0;
    width: 100%;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    align-self: center;
    margin-bottom: 0;
    transform: none;
  }

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

  .faq-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .featured-inner {
    flex-direction: column;
  }

  .featured-visual {
    height: clamp(340px, 54vw, 520px);
  }

  .contact-char {
    left: 0;
    margin: 20px auto 0;
  }

  .test-side-char {
    display: none;
  }

  .test-stack {
    margin: 0;
    max-width: 100%;
    padding-top: 40px;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .navbar {
    top: 0;
    height: 72px;
    grid-template-columns: 1fr auto;
    padding: 0 var(--page-pad);
    width: 100%;
    max-width: 100vw;
  }

  .nav-left {
    justify-content: flex-start;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .nav-hamburger {
    display: flex !important;
    justify-self: end;
    position: fixed;
    top: 14px;
    right: 20px;
    transform: none;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.55);
  }

  .portfolio-top {
    flex-direction: column;
  }

  .portfolio-cta {
    margin-top: 0;
  }

  .portfolio-header {
    padding: 70px 0 100px;
  }

  .portfolio-heading {
    bottom: -78px;
    width: 90%;
  }

  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .test-wrapper {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
    padding-top: 0;
  }

  body.nav-open {
    overflow: hidden;
  }

  #cursor-dot,
  #cursor-ring {
    display: none;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 90px;
    text-align: center;
  }

  .hero-content {
    max-width: 100vw;
  }

  .hero-text {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-text h1,
  .hero-text p {
    overflow-wrap: break-word;
  }

  .hero::after {
    height: 64px;
  }

  .hero-badge {
    border-radius: 16px;
    font-size: 0.78rem;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn,
  .mid-cta .btn,
  .form-submit {
    width: 100%;
  }

  .hero-visual {
    padding: 22px;
    border-radius: 16px;
  }

  .platform-icons img {
    max-height: 58px;
    margin: 0 auto;
  }

  .hero-stats {
    gap: 12px;
    text-align: left;
  }

  .hero-stats strong {
    font-size: 1.25rem;
  }

  .hero-stats span {
    font-size: 11px;
  }

  .clients::before,
  .clients::after {
    width: 50px;
  }

  .client-card {
    padding: 10px 24px;
  }

  .services-header {
    margin-bottom: 36px;
  }

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

  .service-card,
  .service-card2 {
    height: 240px;
  }

  .portfolio::before,
  .portfolio::after {
    display: none;
  }

  .portfolio-scroll-wrap {
    padding: 0 20px;
  }

  .portfolio-item {
    flex-basis: min(76vw, 300px);
  }

  .portfolio-nav {
    padding: 0 10px;
  }

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

  .mid-cta {
    text-align: left;
  }

  .featured-meta {
    grid-template-columns: 1fr;
  }

  .process-header {
    margin-bottom: 44px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 18px;
    max-width: 100%;
    text-align: left;
  }

  .step-icon {
    grid-row: 1 / span 3;
    margin: 0;
  }

  .tech-track {
    gap: 28px;
  }

  .reviewer-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .reviewer-score {
    margin-left: 60px;
  }

  .faq-inner {
    gap: 36px;
  }

  .accordion-header {
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    font-size: 0.95rem;
  }

  .accordion-icon {
    flex: 0 0 34px;
  }

  .contact-info {
    margin-top: 28px;
  }

  .info-row {
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-checkbox {
    align-items: flex-start;
  }

  .mobile-nav a {
    font-size: 1.25rem;
  }

  .mobile-contact-link {
    color: var(--orange);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.95rem;
  }

  .nav-hamburger {
    left: auto;
    right: 20px;
  }

  .hero-text,
  .hero-text h1,
  .hero-text p,
  .hero-visual {
    width: min(320px, calc(100vw - 40px));
    max-width: min(320px, calc(100vw - 40px));
    margin-left: auto;
    margin-right: auto;
  }

  .platform-icons img {
    width: 100%;
    max-height: none;
  }

  .btn {
    padding: 13px 22px;
  }

  .hero-stats {
    flex-direction: column;
    text-align: center;
  }

  .service-card,
  .service-card2 {
    height: 270px;
  }

  .service-card p,
  .service-card2 p {
    font-size: 0.72rem;
  }

  .portfolio-heading {
    bottom: -64px;
  }

  .contact-glass {
    border-radius: 12px;
  }
}

/* =========================================
   FOOTER STYLING
========================================= */
.main-footer {
  background: var(--bg-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
  color: #a0a0a0;
  font-size: 0.9rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.footer-desc {
  line-height: 1.6;
}

.footer-contact {
  color: #fff;
  font-weight: 500;
  margin: 10px 0;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-bottom a {
  color: #a0a0a0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .footer-contact {
    line-height: 1.8;
  }
}

/* =========================================
   SCROLL TO TOP BUTTON
========================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ff4e00;
  background-color: var(--orange, #ff4e00);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 78, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: #e04400;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 78, 0, 0.6);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

.zf-important {
  color: var(--orange);
}
.contact-glass p.zf-errorMessage { text-align: left; margin-bottom: 0; font-size: 13px; color: red; }