:root {
  --bg: #070b14;
  --panel: #0B0D14;
  --panel-2: #15181C;
  --text: #f5f7fb;
  --muted: #626569;
  --line: rgba(255, 255, 255, 0.08);
  --brand: #F2055C;
  --brand-soft: rgba(242, 5, 92, 0.12);
  --dark: #0a0d14;
  --max: 1600px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(242, 5, 92, 0.12), transparent 28%),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.05), transparent 18%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
}

/* =========================
HEADER / NAVIGATION
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 8, 18, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-wrap {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.site-logo {
  height: 80px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: nowrap;
}
/* Normal menu links */

.main-nav > a,
.nav-link {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 0;
  background: none;
  border: none;
  transition: 0.3s ease;
}

/* underline animation */

.main-nav > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #F2055C;
  transition: width 0.3s ease;
}

.main-nav > a:hover::after,
.nav-link:hover::after,
.main-nav > a.active::after {
  width: 100%;
}

.main-nav > a:hover,
.nav-link:hover {
  color: #F2055C;
}

/* Send Inquiry button */

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 140px;
  height: 52px;
  padding: 0 24px;
  background: #F2055C;
  color: #fff !important;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s ease;
}

.nav-btn::after {
  display: none;
}

.nav-btn:hover {
  background: #ff0f68;
  transform: translateY(-2px);
}
/* Dropdown */

.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  min-width: 260px;
  background: #0b1020;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

.dropdown-menu a {
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.25s ease;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.04);
  color: #F2055C;
  transform: translateX(4px);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile */

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
  }

  .main-nav {
    position: absolute;
    top: 100px;
    left: 20px;
    right: 20px;
    background: #0b1020;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .main-nav.open {
    display: flex;
  }

  .dropdown-menu {
    display: none !important;
  }

  .site-logo {
    height: 65px;
  }
}
/* Hero */
.hero,
.page-hero {
  padding: 70px 0 60px;
}

.hero-grid,
.two-col,
.form-wrap,
.inquiry-box,
.footer-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffd0e4;
  background: var(--brand-soft);
  border: 1px solid rgba(242, 5, 92, 0.25);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.02;
  color: #fff;
}

.hero p,
.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: #fff;
}

/* Cards */
.hero-card,
.info-card,
.promo-box,
.service-block,
.project-card,
.contact-form,
.site-footer,
.inquiry-box {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
}

.hero-card {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.mini-card,
.project-thumb {
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
}

.mini-card {
  padding: 22px;
}

.mini-card h3,
.info-card h3,
.project-card h3,
.service-block h2 {
  margin-top: 0;
  color: #fff;
}

.project-thumb {
  height: 180px;
}

.section {
  padding: 28px 0 70px;
}

.section.alt {
  padding-top: 0;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head.left {
  text-align: left;
}

.section-head span {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 12px 0 0;
  color: #fff;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.service-block,
.project-card {
  padding: 24px;
}

.info-card p,
.service-block li,
.project-card p,
.promo-box p,
.site-footer p,
.mini-card p {
  color: var(--muted);
  line-height: 1.8;
}

.two-col {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.promo-box {
  padding: 24px;
  margin-top: 18px;
}

.inquiry-box {
  padding: 28px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.inquiry-box h2,
.inquiry-box span {
  color: #fff;
}

.service-stack {
  display: grid;
  gap: 22px;
}

.service-block ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.form-wrap {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.alert {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.alert.success {
  background: rgba(35, 150, 90, 0.15);
  color: #a9f3c4;
}

.alert.error {
  background: rgba(255, 80, 80, 0.15);
  color: #ffb3b3;
}

/* Footer */
.site-footer {
  padding: 0;
  overflow: hidden;
  margin: 40px 0 0;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  padding: 28px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-top: 0;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 28px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .form-wrap,
  .footer-grid,
  .card-grid.four,
  .card-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .inquiry-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 105px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    background: rgba(13, 18, 32, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    animation: menuFadeDown 0.28s ease;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .main-nav a::after {
    left: 16px;
    right: 16px;
    bottom: 7px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .two-col,
  .form-wrap,
  .inquiry-box,
  .footer-grid,
  .card-grid.four,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .site-logo {
    height: 70px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .nav-item {
  display: block;
}

.nav-item .nav-link {
  display: block;
  width: 100%;
}

.dropdown-menu {
  display: none !important;
}
}

@keyframes menuFadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
PREMIUM HERO SECTION
========================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 320px;
  height: 320px;
  background: rgba(242, 5, 92, 0.16);
  top: 40px;
  left: -80px;
  animation: heroFloatGlow 7s ease-in-out infinite;
}

.hero-glow-2 {
  width: 340px;
  height: 340px;
  background: rgba(98, 101, 105, 0.18);
  right: -80px;
  top: 120px;
  animation: heroFloatGlow 9s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 46px;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-accent {
  display: block;
  color: var(--brand);
  text-shadow: 0 0 24px rgba(242, 5, 92, 0.14);
}

.hero-rotating-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 22px;
}

.hero-rotating-label {
  color: #d7dae0;
  font-size: 1rem;
  font-weight: 500;
}

.hero-rotating-word {
  min-width: 160px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
}

.hero-rotating-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

.hero p {
  max-width: 700px;
  font-size: 1.04rem;
  line-height: 1.9;
  color: #c2c6cf;
}

.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-trust-item {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 14px 16px;
  color: #f4f5f7;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.hero-trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 5, 92, 0.28);
}

.hero-visual {
  position: relative;
}

.hero-visual-main {
  position: relative;
  min-height: 520px;
}

.hero-service-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 5, 92, 0.22);
}

.hero-card-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 5, 92, 0.12);
  border: 1px solid rgba(242, 5, 92, 0.18);
  color: #ffd3e4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-service-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #fff;
}

.hero-service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #c1c5cf;
}

.hero-card-one {
  top: 0;
  left: 0;
  width: 78%;
  animation: heroCardFloat1 5.5s ease-in-out infinite;
}

.hero-card-two {
  top: 165px;
  right: 0;
  width: 72%;
  animation: heroCardFloat2 6.5s ease-in-out infinite;
}

.hero-card-three {
  bottom: 0;
  left: 40px;
  width: 76%;
  animation: heroCardFloat3 7s ease-in-out infinite;
}

@keyframes heroFloatGlow {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(18px) translateX(10px); }
}

@keyframes heroCardFloat1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes heroCardFloat2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(12px); }
}

@keyframes heroCardFloat3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-main {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .hero-service-card {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    animation: none;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 60px 0 70px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-trust-list {
    grid-template-columns: 1fr;
  }

  .hero-rotating-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-rotating-word {
    min-width: auto;
  }
}

.hero-premium-slider {
  position: relative;
  min-height: calc(100vh - 100px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  animation: heroImageSlider 24s infinite;
}

.slide-one {
  background-image: url("/assets/images/hero-digital.jpg");
  animation-delay: 0s;
}

.slide-two {
  background-image: url("/assets/images/hero-pos.jpg");
  animation-delay: 6s;
}

.slide-three {
  background-image: url("/assets/images/hero-cctv.webp");
  animation-delay: 12s;
}

.slide-four {
  background-image: url("/assets/images/hero-web.jpg");
  animation-delay: 18s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,11,20,0.96) 0%, rgba(7,11,20,0.78) 42%, rgba(7,11,20,0.42) 100%),
    radial-gradient(circle at 20% 40%, rgba(242,5,92,0.28), transparent 35%);
}

.hero-moving-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: gridMove 18s linear infinite;
}

.hero-premium-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
}

.hero-premium-content h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 22px 0;
  color: #fff;
}

.hero-premium-content h1 span {
  display: block;
  color: #F2055C;
  text-shadow: 0 0 35px rgba(242,5,92,0.35);
}

.hero-premium-content p {
  max-width: 680px;
  color: #d7d9df;
  font-size: 1.1rem;
  line-height: 1.9;
}

@keyframes heroImageSlider {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  8% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: scale(1);
  }
  33% {
    opacity: 0;
    transform: scale(1.03);
  }
  100% {
    opacity: 0;
  }
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 140px 140px;
  }
}

@media (max-width: 760px) {
  .hero-premium-slider {
    min-height: auto;
    padding: 90px 0;
  }

  .hero-premium-content h1 {
    font-size: 3rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7,11,20,0.94), rgba(7,11,20,0.82)),
      radial-gradient(circle at 30% 20%, rgba(242,5,92,0.25), transparent 40%);
  }
}

.zt-hero-slider {
  position: relative;
  min-height: calc(100vh - 100px);
  overflow: hidden;
  background: #070b14;
}

.zt-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.zt-slide.active {
  opacity: 1;
  visibility: visible;
}

.zt-slide-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(242, 5, 92, 0.22), transparent 30%),
    radial-gradient(circle at 20% 50%, rgba(98, 101, 105, 0.22), transparent 35%),
    linear-gradient(90deg, rgba(7,11,20,0.98), rgba(7,11,20,0.88), rgba(7,11,20,0.72));
}

.zt-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: ztGridMove 18s linear infinite;
}

.zt-slide-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 40px;
  padding: 70px 0 120px;
}

.zt-slide-text h1 {
  margin: 22px 0 18px;
  font-size: clamp(3rem, 6.4vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
  max-width: 820px;
}

.zt-slide-text h1 span {
  display: block;
  color: #F2055C;
  text-shadow: 0 0 35px rgba(242,5,92,0.35);
}

.zt-slide-text p {
  max-width: 650px;
  color: #d6d8df;
  font-size: 1.08rem;
  line-height: 1.9;
}

.zt-slide-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zt-slide-image::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 65%;
  border-radius: 50%;
  background: rgba(242, 5, 92, 0.18);
  filter: blur(80px);
  z-index: -1;
  animation: ztGlowPulse 4s ease-in-out infinite;
}

.zt-slide-image img {
  width: min(680px, 100%);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,0.45));
  transform: translateX(40px) scale(0.96);
  opacity: 0;
  transition: 0.75s ease;
}

.zt-slide.active .zt-slide-image img {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.zt-slide.active .zt-slide-text {
  animation: ztTextIn 0.8s ease both;
}

.zt-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  transition: 0.25s ease;
}

.zt-arrow:hover {
  background: #F2055C;
  transform: translateY(-50%) scale(1.05);
}

.zt-prev {
  left: 24px;
  transform: translateY(-50%);
}

.zt-next {
  right: 24px;
  transform: translateY(-50%);
}

.zt-slide-tabs {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 9;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(11, 13, 20, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  backdrop-filter: blur(14px);
}

.zt-slide-tabs button {
  min-height: 92px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #cfd3dc;
  font-weight: 700;
  text-align: left;
  padding: 18px;
  cursor: pointer;
  transition: 0.25s ease;
}

.zt-slide-tabs button:last-child {
  border-right: none;
}

.zt-slide-tabs button span {
  display: block;
  color: #F2055C;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.zt-slide-tabs button.active,
.zt-slide-tabs button:hover {
  background: rgba(242, 5, 92, 0.12);
  color: #fff;
}

@keyframes ztTextIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ztGridMove {
  from { background-position: 0 0; }
  to { background-position: 140px 140px; }
}

@keyframes ztGlowPulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}

@media (max-width: 980px) {
  .zt-slide-content {
    grid-template-columns: 1fr;
    padding: 60px 0 140px;
  }

  .zt-slide-image img {
    width: min(520px, 100%);
  }

  .zt-slide-tabs {
    grid-template-columns: 1fr 1fr;
    max-height: 210px;
    overflow-y: auto;
  }
}

@media (max-width: 760px) {
  .zt-hero-slider {
    min-height: auto;
  }

  .zt-slide {
    position: relative;
    display: none;
    min-height: auto;
  }

  .zt-slide.active {
    display: block;
  }

  .zt-slide-content {
    min-height: auto;
    padding: 60px 0 260px;
  }

  .zt-slide-text h1 {
    font-size: 3rem;
  }

  .zt-slide-text p {
    font-size: 1rem;
  }

  .zt-slide-image img {
    width: 100%;
  }

  .zt-arrow {
    width: 44px;
    height: 44px;
    font-size: 28px;
    top: auto;
    bottom: 190px;
  }

  .zt-prev {
    left: 18px;
  }

  .zt-next {
    right: 18px;
  }

  .zt-slide-tabs {
    grid-template-columns: 1fr;
    bottom: 0;
    max-height: 230px;
    overflow-y: auto;
  }

  .zt-slide-tabs button {
    min-height: 58px;
    padding: 12px 16px;
  }
}

/* FINAL HERO IMAGE + MOBILE FIX */

.zt-slide-content {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 20px;
}

.zt-slide-image {
  justify-content: flex-end;
}

.zt-slide-image img {
  width: min(980px, 128%);
  max-width: none;
  max-height: 780px;
}

/* Fix mobile layout */
@media (max-width: 760px) {
  .zt-slide-content {
    display: flex;
    flex-direction: column;
    padding: 35px 0 25px;
    gap: 18px;
  }

  .zt-slide-text {
    order: 1;
  }

  .zt-slide-image {
    order: 2;
    width: 100%;
    justify-content: center;
    overflow: hidden;
  }

  .zt-slide-image img {
    width: 145%;
    max-width: none;
    margin-left: 0;
    max-height: 420px;
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .hero-actions .btn {
    padding: 13px 16px;
    font-size: 14px;
  }

  .zt-slide-tabs {
    position: relative;
    transform: none;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .zt-slide-tabs button {
    flex: 0 0 155px;
    min-height: 58px;
    border-radius: 14px;
  }
}

/* FINAL HERO OVERLAP + MOBILE CLEAN FIX */

.zt-slide-content {
  position: relative;
  grid-template-columns: 1fr 1fr;
}

.zt-slide-text {
  position: relative;
  z-index: 5;
}

.zt-slide-image {
  position: relative;
  z-index: 3;
  margin-left: -180px;
}

.zt-slide-image img {
  width: min(1000px, 135%);
  max-width: none;
  max-height: 760px;
  opacity: 0;
  transform: translateX(90px) scale(0.92);
}

.zt-slide.active .zt-slide-image img {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.8s ease, transform 0.9s ease;
}

/* Make text always above image */
.zt-slide-text h1,
.zt-slide-text p,
.zt-slide-text .hero-actions,
.zt-slide-text .eyebrow {
  position: relative;
  z-index: 6;
}

/* Remove mobile horizontal scrollbar */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .zt-slide-content {
    display: flex;
    flex-direction: column;
    padding: 36px 0 30px;
    gap: 10px;
  }

  .zt-slide-text {
    order: 1;
    z-index: 5;
  }

  .zt-slide-image {
    order: 2;
    margin-left: 0;
    width: 100%;
    overflow: visible;
  }

  .zt-slide-image img {
    width: 125%;
    max-width: none;
    max-height: 380px;
    margin-left: -12%;
    transform: translateY(30px) scale(0.92);
  }

  .zt-slide.active .zt-slide-image img {
    transform: translateY(0) scale(1);
  }

  .zt-slide-tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .zt-slide-tabs::-webkit-scrollbar {
    display: none;
  }

  .zt-slide-tabs button {
    flex: 0 0 150px;
  }
}

/* Text readability over hero image */
.zt-slide-text {
  position: relative;
  z-index: 8;
  padding: 28px 30px;
  border-radius: 28px;
}

.zt-slide-text::before {
  content: "";
  position: absolute;
  inset: -18px -22px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(
    90deg,
    rgba(7, 11, 20, 0.92) 0%,
    rgba(7, 11, 20, 0.72) 55%,
    rgba(7, 11, 20, 0.08) 100%
  );
  filter: blur(0px);
}

.zt-slide-text h1 {
  text-shadow: 0 8px 28px rgba(0,0,0,0.65);
}

.zt-slide-text h1 span {
  text-shadow: 0 0 24px rgba(242,5,92,0.45), 0 8px 28px rgba(0,0,0,0.65);
}

.zt-slide-text p {
  text-shadow: 0 4px 18px rgba(0,0,0,0.8);
  color: #e5e7eb;
}


/* =========================
PREMIUM SERVICES SECTION
========================= */

.zt-services-section {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(242, 5, 92, 0.12), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(98, 101, 105, 0.12), transparent 30%),
    #070b14;
}

.zt-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: ztGridMove 20s linear infinite;
}

.zt-section-head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.zt-section-head span {
  color: #F2055C;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 800;
}

.zt-section-head h2 {
  margin: 14px 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
}

.zt-section-head p {
  margin: 0 auto;
  max-width: 680px;
  color: #c8ccd4;
  line-height: 1.8;
  font-size: 1.05rem;
}

.zt-services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.zt-service-card {
  position: relative;
  min-height: 330px;
  padding: 30px 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.zt-service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 20% 10%, rgba(242,5,92,0.28), transparent 36%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,0.08), transparent 36%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.zt-service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(242, 5, 92, 0.14);
  filter: blur(18px);
  opacity: 0.5;
}

.zt-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(242,5,92,0.35);
  box-shadow: 0 24px 55px rgba(0,0,0,0.32);
}

.zt-service-card:hover::before {
  opacity: 1;
}

.zt-service-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  font-size: 30px;
  background: rgba(242,5,92,0.12);
  border: 1px solid rgba(242,5,92,0.2);
  box-shadow: 0 0 28px rgba(242,5,92,0.16);
}

.zt-service-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.45rem;
}

.zt-service-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #c3c7d0;
  line-height: 1.75;
  font-size: 0.98rem;
}

.zt-service-card a {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 28px;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.zt-service-card a:hover {
  color: #F2055C;
  transform: translateX(4px);
}

@media (max-width: 1050px) {
  .zt-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .zt-services-section {
    padding: 80px 0 70px;
  }

  .zt-services-grid {
    grid-template-columns: 1fr;
  }

  .zt-service-card {
    min-height: 280px;
  }
}


/* Services layout: 3 + 2 */
.zt-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.zt-service-card {
  grid-column: span 2;
  min-height: 390px;
  padding-bottom: 190px;
}

.zt-service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.zt-service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* Different animation style */
.zt-service-img {
  position: absolute;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%) translateY(0) scale(1);
  width: 78%;
  max-height: 160px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,0.42));
  transition: transform 0.45s ease, filter 0.45s ease;
  animation: serviceFloat 4.5s ease-in-out infinite;
}

.zt-service-card:nth-child(2) .zt-service-img {
  animation-delay: 0.4s;
}

.zt-service-card:nth-child(3) .zt-service-img {
  animation-delay: 0.8s;
}

.zt-service-card:nth-child(4) .zt-service-img {
  animation-delay: 1.2s;
}

.zt-service-card:nth-child(5) .zt-service-img {
  animation-delay: 1.6s;
}

.zt-service-card:hover .zt-service-img {
  transform: translateX(-50%) translateY(-14px) scale(1.08) rotate(-1deg);
  filter: drop-shadow(0 26px 34px rgba(242,5,92,0.24));
}

@keyframes serviceFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@media (max-width: 980px) {
  .zt-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zt-service-card,
  .zt-service-card:nth-child(4),
  .zt-service-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .zt-services-grid {
    grid-template-columns: 1fr;
  }

  .zt-service-card {
    min-height: 360px;
  }
}


/* =========================
REAL IMAGE PREMIUM SERVICES SECTION
========================= */

.premium-services-section {
  position: relative;
  padding: 120px 0 110px;
  background:
    radial-gradient(circle at 15% 15%, rgba(242, 5, 92, 0.12), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(242, 5, 92, 0.10), transparent 30%),
    #070b14;
  overflow: hidden;
}

.premium-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 34px 34px;
}

.premium-section-head {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.premium-section-head span {
  color: #F2055C;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  font-weight: 900;
}

.premium-section-head h2 {
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.premium-section-head p {
  color: #cbd0d8;
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0;
}

.premium-services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.premium-service-card {
  position: relative;
  grid-column: span 2;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(242, 5, 92, 0.20);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.premium-service-card.large-card {
  grid-column: span 3;
}

.premium-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.65s ease;
}

.premium-service-card:hover::before {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,11,20,0.92) 0%, rgba(7,11,20,0.72) 45%, rgba(7,11,20,0.28) 100%),
    radial-gradient(circle at 80% 20%, rgba(242,5,92,0.28), transparent 35%);
}

.premium-service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(242, 5, 92, 0.55);
  box-shadow: 0 35px 85px rgba(242, 5, 92, 0.16);
}

.service-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 360px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 26px;
  color: #fff;
  background: rgba(242, 5, 92, 0.16);
  border: 1px solid rgba(242, 5, 92, 0.45);
  box-shadow: 0 0 28px rgba(242, 5, 92, 0.18);
  backdrop-filter: blur(10px);
}

.service-content h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.service-content p {
  max-width: 360px;
  margin: 0;
  color: #e1e5ec;
  line-height: 1.75;
  font-size: 1rem;
  text-shadow: 0 4px 18px rgba(0,0,0,0.65);
}

.service-content a {
  margin-top: auto;
  color: #F2055C;
  font-weight: 900;
  font-size: 0.98rem;
  transition: 0.3s ease;
}

.service-content a:hover {
  color: #fff;
  transform: translateX(6px);
}

.services-bottom-link {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #cfd3dc;
}

.services-bottom-link span {
  color: #cbd0d8;
}

@media (max-width: 1050px) {
  .premium-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-service-card,
  .premium-service-card.large-card {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .premium-services-section {
    padding: 80px 0 75px;
  }

  .premium-services-grid {
    grid-template-columns: 1fr;
  }

  .premium-service-card,
  .premium-service-card.large-card {
    min-height: 340px;
  }

  .service-content {
    min-height: 340px;
    padding: 26px;
  }

  .service-content h3 {
    font-size: 1.55rem;
  }

  .services-bottom-link {
    flex-direction: column;
    text-align: center;
  }
}



.service-icon i {
  font-size: 30px;
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(242, 5, 92, 0.9),
    0 0 18px rgba(242, 5, 92, 0.7),
    0 0 30px rgba(242, 5, 92, 0.45);
}


/* WEEKLY PROMO SECTION */

.zt-promo-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(242,5,92,0.12), transparent 28%),
    #070b14;
}

.zt-promo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.zt-promo-head span {
  color: #F2055C;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 900;
}

.zt-promo-head h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  margin: 10px 0 0;
}

.zt-promo-top-btn {
  border: 1px solid rgba(242,5,92,0.5);
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 800;
}

.zt-promo-top-btn:hover {
  background: #F2055C;
}

.zt-promo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(242,5,92,0.22);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.zt-promo-image {
  min-height: 480px;
  overflow: hidden;
}

.zt-promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.zt-promo-card:hover .zt-promo-image img {
  transform: scale(1.08);
}

.zt-promo-content {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zt-promo-price {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.zt-promo-price strong {
  color: #F2055C;
  font-size: 4.5rem;
  line-height: 1;
}

.zt-promo-price span {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.zt-promo-content h3 {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0 0 18px;
}

.zt-promo-content p {
  color: #d6d9e0;
  line-height: 1.8;
  margin-bottom: 22px;
}

.zt-promo-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.zt-promo-content li {
  color: #fff;
}

.zt-promo-content li::before {
  content: "✓";
  color: #F2055C;
  font-weight: 900;
  margin-right: 10px;
}

@media (max-width: 900px) {
  .zt-promo-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .zt-promo-card {
    grid-template-columns: 1fr;
  }

  .zt-promo-image {
    min-height: 320px;
  }

  .zt-promo-content {
    padding: 34px;
  }

  .zt-promo-price strong {
    font-size: 3.4rem;
  }
}


/* WEEKLY PROMO IMAGE FIX */

.weekly-promo-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    background: #0b0f1d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    overflow: hidden;
    padding: 40px;
}

.weekly-promo-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.weekly-promo-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .weekly-promo-box {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 25px;
    }

    .weekly-promo-image img {
        max-width: 100%;
        width: 100%;
    }
}


/* ABOUT SECTION */

.about-section {
    padding: 120px 0;
    background: #f8f7fc;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* 3 IMAGE ABOUT SECTION */

.about-images {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.about-left-stack {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img-small {
    flex: 1;
}

.about-img-small img,
.about-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.about-img-large {
    width: 65%;
    position: relative;
    min-height: 650px;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: -25px;
    background: #7b2cff;
    color: #fff;
    border-radius: 30px;
    padding: 28px 18px;
    text-align: center;
    writing-mode: vertical-rl;
    box-shadow: 0 20px 40px rgba(123,44,255,0.25);
}

.experience-badge span {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* MOBILE */

@media (max-width: 768px) {
    .about-images {
        flex-direction: column;
    }

    .about-left-stack,
    .about-img-large {
        width: 100%;
    }

    .about-img-large {
        min-height: auto;
    }

    .experience-badge {
        right: 10px;
        top: 10px;
        padding: 18px 12px;
    }
}

.about-img-small img,
.about-img-large img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.about-img-small {
    width: 35%;
}

.about-img-large {
    width: 65%;
    position: relative;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: -30px;
    background: #ff007a;
    color: white;
    padding: 25px 18px;
    border-radius: 20px;
    text-align: center;
    writing-mode: vertical-rl;
}

.experience-badge span {
    font-size: 32px;
    font-weight: 700;
}

.experience-badge p {
    font-size: 14px;
    margin: 0;
}

.section-tag {
    color: #ff007a;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 20px 0;
    color: #111;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
    font-weight: 600;
    color: #222;
}

.main-btn {
    display: inline-block;
    background: #ff007a;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* MOBILE */

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        flex-direction: column;
    }

    .about-img-small,
    .about-img-large {
        width: 100%;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 10px;
        top: 10px;
    }
}


/* PREMIUM ABOUT SECTION */

.about-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(242,5,92,0.08), transparent 28%),
    #f7f3fb;
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-gallery {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.about-left-stack {
  display: grid;
  gap: 22px;
}

.about-left-stack img,
.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.about-left-stack img {
  min-height: 260px;
}

.about-main-img {
  position: relative;
  min-height: 610px;
}

.experience-badge {
  position: absolute;
  top: 40px;
  right: -28px;
  width: 78px;
  min-height: 280px;
  border-radius: 40px;
  background: #8a19e6;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 18px 45px rgba(138,25,230,0.35);
}

.experience-badge strong {
  font-size: 46px;
  line-height: 1;
}

.experience-badge span {
  writing-mode: vertical-rl;
  font-size: 15px;
  font-weight: 700;
}

.section-tag {
  display: inline-block;
  color: #8a19e6;
  background: rgba(138,25,230,0.08);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-content h2 {
  margin: 22px 0;
  color: #080b18;
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-content p {
  color: #606170;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 34px 0 28px;
}

.about-highlight {
  display: flex;
  gap: 16px;
  align-items: center;
}

.about-highlight i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #8a19e6;
  border: 1px dashed #8a19e6;
  font-size: 24px;
}

.about-highlight h4 {
  margin: 0;
  color: #111;
  font-size: 1.05rem;
  line-height: 1.4;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  margin: 28px 0 34px;
}

.about-features div {
  color: #242432;
  font-weight: 700;
  font-size: 0.98rem;
}

.about-features div::before {
  content: "✓";
  color: #ff5a1f;
  margin-right: 8px;
  font-weight: 900;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ff5a1f;
  border: 1px solid #ff5a1f;
  padding: 18px 34px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s ease;
}

.about-btn i {
  background: #ff5a1f;
  color: #fff;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-right: -20px;
}

.about-btn:hover {
  background: #ff5a1f;
  color: #fff;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-phone i {
  color: #ff5a1f;
  font-size: 34px;
}

.about-phone strong {
  display: block;
  color: #080b18;
  font-size: 1.45rem;
}

.about-phone span {
  color: #ff5a1f;
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-section {
    padding: 80px 0;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-left-stack {
    grid-template-columns: 1fr 1fr;
  }

  .about-left-stack img {
    min-height: 190px;
  }

  .about-main-img {
    min-height: 420px;
  }

  .experience-badge {
    right: 14px;
    top: 14px;
    width: 66px;
    min-height: 220px;
  }

  .about-highlight-grid,
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ABOUT IMAGE LAYOUT FIX - LIKE SAMPLE SITE */

.about-gallery {
  display: grid !important;
  grid-template-columns: 0.82fr 1.12fr !important;
  gap: 22px !important;
  align-items: center !important;
}

.about-left-stack {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
}

.about-left-stack img {
  width: 100% !important;
  height: 260px !important;
  min-height: 260px !important;
  object-fit: cover !important;
  border-radius: 22px !important;
}

.about-main-img {
  width: 100% !important;
  min-height: 590px !important;
}

.about-main-img img {
  width: 100% !important;
  height: 590px !important;
  object-fit: cover !important;
  border-radius: 24px !important;
}

.experience-badge {
  right: -30px !important;
}

@media (max-width: 900px) {
  .about-gallery {
    grid-template-columns: 1fr !important;
  }

  .about-left-stack {
    grid-template-columns: 1fr 1fr !important;
  }

  .about-left-stack img {
    height: 210px !important;
    min-height: 210px !important;
  }

  .about-main-img,
  .about-main-img img {
    height: 430px !important;
    min-height: 430px !important;
  }

  .experience-badge {
    right: 14px !important;
  }
}

/* ===============================
   FINAL ABOUT SECTION FIX
   ADD THIS AT VERY BOTTOM
================================ */

.about-section {
  padding: 120px 0 !important;
  background:
    radial-gradient(circle at 90% 20%, rgba(242,5,92,0.08), transparent 28%),
    #f7f3fb !important;
  overflow: hidden !important;
}

.about-wrapper {
  display: grid !important;
  grid-template-columns: 1.05fr 1fr !important;
  gap: 70px !important;
  align-items: center !important;
}

.about-gallery {
  display: grid !important;
  grid-template-columns: 0.8fr 1.2fr !important;
  gap: 24px !important;
  align-items: center !important;
}

.about-left-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
  width: 100% !important;
}

.about-left-stack img {
  width: 100% !important;
  height: 260px !important;
  min-height: 260px !important;
  object-fit: cover !important;
  border-radius: 22px !important;
  display: block !important;
}

.about-main-img {
  position: relative !important;
  width: 100% !important;
  min-height: 590px !important;
}

.about-main-img img {
  width: 100% !important;
  height: 590px !important;
  object-fit: cover !important;
  border-radius: 24px !important;
  display: block !important;
}

.experience-badge {
  position: absolute !important;
  top: 40px !important;
  right: -30px !important;
  width: 78px !important;
  min-height: 280px !important;
  border-radius: 40px !important;
  background: #8a19e6 !important;
  color: #fff !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  writing-mode: unset !important;
  box-shadow: 0 18px 45px rgba(138,25,230,0.35) !important;
}

.experience-badge strong {
  font-size: 46px !important;
  line-height: 1 !important;
}

.experience-badge span {
  writing-mode: vertical-rl !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.about-content h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem) !important;
  line-height: 1.08 !important;
  color: #080b18 !important;
  margin: 22px 0 !important;
}

.about-content p {
  color: #606170 !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}

@media (max-width: 1000px) {
  .about-wrapper {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .about-section {
    padding: 80px 0 !important;
  }

  .about-gallery {
    grid-template-columns: 1fr !important;
  }

  .about-left-stack {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  .about-left-stack img {
    height: 200px !important;
    min-height: 200px !important;
  }

  .about-main-img,
  .about-main-img img {
    height: 430px !important;
    min-height: 430px !important;
  }

  .experience-badge {
    right: 14px !important;
    top: 14px !important;
    width: 66px !important;
    min-height: 220px !important;
  }
}

.coming-section {
  padding: 100px 0;
  background: #070b14;
  text-align: center;
}

.coming-section h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 18px 0;
}

.coming-section p {
  color: #bfc4cf;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.coming-grid div {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,5,92,0.18);
  color: #fff;
  font-weight: 800;
}

@media (max-width: 900px) {
  .coming-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .coming-grid {
    grid-template-columns: 1fr;
  }
}

/* IMAGE TRAIN / MARQUEE SLIDER */

.zt-marquee-section {
  overflow: hidden;
  background: #f7f3fb;
  padding: 38px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.zt-marquee-track {
  display: flex;
  width: max-content;
  animation: ztMarquee 35s linear infinite;
}

.zt-marquee-group {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-right: 46px;
}

.zt-marquee-group img {
  width: 180px;
  height: 95px;
  object-fit: contain;
  background: transparent;
  padding: 10px;
  border-radius: 12px;
  display: block;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s ease;
}

.zt-marquee-group img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.zt-marquee-section:hover .zt-marquee-track {
  animation-play-state: paused;
}

@keyframes ztMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .zt-marquee-group {
    gap: 26px;
    padding-right: 26px;
  }

  .zt-marquee-group img {
    width: 130px;
    height: 75px;
    border-radius: 14px;
  }
}

/* CLEARER PROJECT SHOWCASE TRAIN — LESS DARK */

.zt-showcase-train {
  position: relative;
  background: #05070d;
  padding: 20px 0;
  min-height: 360px;
  overflow: hidden;
}

.zt-showcase-track {
  display: flex;
  width: max-content;
  animation: ztShowcaseMove 38s linear infinite;
  align-items: center;
}

.zt-showcase-group {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-right: 25px;
}

.zt-showcase-group img {
  width: 420px;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  display: block;

  /* reduced darkness here */
  opacity: 0.75;
  filter: brightness(0.85);

  transform: scale(0.95);
  transition: all 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.zt-showcase-group img:hover {
  opacity: 1;
  filter: brightness(1);
  transform: scale(1);
  z-index: 5;
}

/* lighter fade effect */
.zt-showcase-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5,7,13,0.55) 0%,
      rgba(5,7,13,0.35) 8%,
      transparent 18%,
      transparent 82%,
      rgba(5,7,13,0.35) 92%,
      rgba(5,7,13,0.55) 100%
    );
}

.zt-showcase-train:hover .zt-showcase-track {
  animation-play-state: paused;
}

@keyframes ztShowcaseMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .zt-showcase-train {
    padding: 15px 0;
    min-height: 260px;
  }

  .zt-showcase-group {
    gap: 18px;
    padding-right: 18px;
  }

  .zt-showcase-group img {
    width: 280px;
    height: 190px;
  }
}

/* PREMIUM FOOTER */

.zt-footer {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 35% 45%, rgba(242,5,92,0.16), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.06), transparent 28%),
    #07070d;
  color: #fff;
  overflow: hidden;
}

.zt-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 50px;
}

.zt-footer-brand h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 24px;
}

.zt-footer-brand p {
  color: #bfc4cf;
  max-width: 520px;
  line-height: 1.8;
}

.zt-socials {
  display: flex;
  gap: 16px;
  margin: 28px 0;
}

.zt-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: 0.3s ease;
}

.zt-socials a:hover {
  background: #F2055C;
  transform: translateY(-4px);
}

.zt-footer small {
  color: #a7abb4;
  font-weight: 700;
}

.zt-footer h4 {
  font-size: 1.35rem;
  margin: 0 0 22px;
}

.zt-footer-links {
  display: flex;
  flex-direction: column;
}

.zt-footer-links a {
  color: #bfc4cf;
  margin-bottom: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.zt-footer-links a:hover {
  color: #F2055C;
  transform: translateX(5px);
}

.zt-footer-news input {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 1rem;
  margin-bottom: 12px;
}

.zt-footer-news button {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 8px;
  background: #F2055C;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.footer-mini-title {
  margin-top: 36px !important;
}

.zt-footer-news p {
  color: #bfc4cf;
  line-height: 1.7;
  font-weight: 700;
}

@media (max-width: 900px) {
  .zt-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .zt-footer-grid {
    grid-template-columns: 1fr;
  }

  .zt-footer {
    padding: 70px 0 50px;
  }
}

/* HEADER ACTIONS FINAL ADJUST */

.header-wrap {
  gap: 20px;
}

.main-nav {
  gap: 26px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 18px;
}

.header-whatsapp-btn {
  height: 54px;
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.header-whatsapp-btn i {
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.header-whatsapp-btn span {
  font-size: 13px;
  line-height: 1.15;
  max-width: 86px;
}

.header-call {
  white-space: nowrap;
}

.header-call i {
  width: 46px;
  height: 46px;
  font-size: 18px;
}

.header-call span {
  font-size: 14px;
  line-height: 1.15;
}

.header-call small {
  font-size: 11px;
}

.nav-btn {
  min-width: auto;
  height: auto;
  padding: 0;
  background: transparent !important;
  border-radius: 0;
}

.nav-btn:hover {
  color: #F2055C !important;
  transform: none;
}

@media (max-width: 1100px) {
  .header-whatsapp-btn span,
  .header-call span {
    display: none;
  }

  .header-whatsapp-btn {
    padding: 6px;
  }
}


/* =========================
HEADER ACTIONS CLEAN FIX
ADD AT VERY BOTTOM
========================= */

.header-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

/* NAV LEFT SIDE */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ACTION BUTTONS RIGHT SIDE */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* WHATSAPP BUTTON */
.header-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.header-whatsapp-btn i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.header-whatsapp-btn:hover {
  background: #25D366;
  transform: translateY(-2px);
}

/* CALL BUTTON */
.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.header-call i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F2055C;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.header-call span {
  font-size: 14px;
  line-height: 1.2;
}

.header-call small {
  font-size: 11px;
  color: #aaa;
}

/* REMOVE STYLE FROM SEND INQUIRY */
.nav-btn {
  background: transparent !important;
  padding: 0 !important;
  min-width: auto !important;
}

/* =========================
MOBILE FIX
========================= */

@media (max-width: 768px) {

  /* hide buttons from nav */
  .header-actions {
    display: none;
  }

  /* CLEAN MOBILE MENU */
  .main-nav {
    position: absolute;
    top: 100px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    background: #0b1020;
    padding: 18px;
    border-radius: 18px;
    gap: 12px;
  }

  .main-nav.open {
    display: flex;
  }

  /* ADD ACTIONS INSIDE MOBILE MENU */
  .main-nav .mobile-actions {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
  }
}


.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 145px;
  height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(0,0,0,0.35);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.call {
  background: #F2055C;
}

.float-btn:hover {
  transform: translateY(-4px);
}

@media (max-width: 600px) {
  .float-btn {
    min-width: 54px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .float-btn span {
    display: none;
  }
}

/* FINAL SEND INQUIRY BUTTON FIX */

.header-inquiry {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.send-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F2055C;
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #F2055C;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(242, 5, 92, 0.25);
}

.send-inquiry-btn:hover {
    background: transparent;
    color: #F2055C !important;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .header-inquiry {
        width: 100%;
        margin: 15px 0 0;
    }

    .send-inquiry-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 16px;
    }
}


/* FINAL MOBILE MENU FIX */

@media (max-width: 768px) {
  .main-nav {
    text-align: left !important;
    align-items: stretch !important;
  }

  .main-nav a,
  .main-nav .nav-link {
    width: 100% !important;
    text-align: left !important;
    justify-content: flex-start !important;
    padding: 14px 16px !important;
    border-radius: 12px !important;
  }

  .main-nav a::after,
  .main-nav .nav-link::after {
    left: 16px !important;
    bottom: 6px !important;
  }

  .header-inquiry {
    width: 100% !important;
    margin: 10px 0 0 !important;
  }

  .send-inquiry-btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    background: #F2055C !important;
    color: #fff !important;
    border-radius: 14px !important;
  }
}

/* PREMIUM SERVICES PAGE */

.services-hero {
  padding: 110px 0 70px;
  background:
    radial-gradient(circle at 20% 30%, rgba(242,5,92,0.16), transparent 30%),
    #070b14;
}

.services-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  max-width: 850px;
  margin: 20px 0;
}

.services-hero p {
  color: #bfc4cf;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 720px;
}

.services-card-section {
  padding: 70px 0 90px;
  background: #111;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-main-card {
  position: relative;
  padding: 34px;
  min-height: 280px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.35s ease;
}

.service-main-card:hover,
.service-main-card.active {
  border-color: #F2055C;
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(242,5,92,0.15);
}

.service-main-card span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #F2055C;
  border: 1px solid #F2055C;
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 800;
}

.service-main-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #F2055C;
  color: #fff;
  font-size: 24px;
  margin-bottom: 22px;
}

.service-main-card h3 {
  color: #fff;
  font-size: 1.55rem;
  margin: 0 0 14px;
}

.service-main-card p {
  color: #cfd3dc;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-main-card a {
  color: #fff;
  font-weight: 800;
}

.service-main-card a:hover {
  color: #F2055C;
}

.service-detail-section {
  background: #f7f3fb;
}

.service-detail-block {
  padding: 110px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-detail-block.reverse .service-detail-image {
  order: 2;
}

.service-detail-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
}

.service-detail-content h2 {
  color: #080b18;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 22px 0;
}

.service-detail-content p {
  color: #555b68;
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 12px;
}

.service-detail-content li {
  color: #111;
  font-weight: 700;
}

.service-detail-content li::before {
  content: "✓";
  color: #F2055C;
  margin-right: 10px;
}

.start-price {
  display: inline-block;
  background: #F2055C;
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 1rem;
}

.services-cta {
  padding: 90px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(242,5,92,0.18), transparent 35%),
    #070b14;
}

.services-cta h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0 0 16px;
}

.services-cta p {
  color: #cfd3dc;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .services-card-grid,
  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .services-card-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-block.reverse .service-detail-image {
    order: 0;
  }

  .service-detail-image img {
    height: 340px;
  }

  .services-hero {
    padding: 80px 0 50px;
  }

  .service-detail-block {
    padding: 70px 0;
  }
}

/* ALL SERVICES GRID */

.all-services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F2055C;
  color: #fff !important;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  margin-top: 10px;
  box-shadow: 0 14px 30px rgba(242,5,92,0.25);
}

.all-service-list {
  padding: 90px 0;
  background: #070b14;
}

.service-list-head {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 45px;
}

.service-list-head h2 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin: 18px 0;
}

.service-list-head p {
  color: #cbd0d8;
  line-height: 1.8;
}

.all-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.single-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  overflow: hidden;
  transition: 0.35s ease;
}

.single-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242,5,92,0.45);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.single-service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.single-service-card > div {
  padding: 24px;
}

.single-service-card h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.single-service-card p {
  color: #cbd0d8;
  line-height: 1.7;
  margin-bottom: 18px;
}

.single-service-card strong {
  display: inline-block;
  color: #F2055C;
  margin-bottom: 20px;
}

.service-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-card-actions a {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.service-card-actions a:first-child {
  background: #F2055C;
  color: #fff;
}

.service-card-actions a:last-child {
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
}

@media (max-width: 980px) {
  .all-service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .all-service-grid {
    grid-template-columns: 1fr;
  }

  .single-service-card img {
    height: 200px;
  }
}

/* hidden by default */

.all-service-list {
  display: none;
  padding: 90px 0;
  background: #070b14;
}

/* show when clicked */

.all-service-list:target {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* smooth effect */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FORCE HIDE ALL SERVICE LIST UNTIL CLICK */

section.all-service-list {
  display: none !important;
}

section.all-service-list:target {
  display: block !important;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-hidden {
  display: none !important;
}

.all-service-list.service-open {
  display: block !important;
}

/* HIDE / OPEN ALL SERVICES TAB */

.all-service-list.service-hidden {
  display: none !important;
}

.all-service-list.service-open {
  display: block !important;
}

/* SERVICE DETAIL IMAGE ANIMATION */

.service-detail-image img {
  animation: serviceImageFloat 4s ease-in-out infinite;
  transition: 0.4s ease;
}

.service-detail-image img:hover {
  transform: scale(1.04);
  box-shadow: 0 25px 60px rgba(242, 5, 92, 0.18);
}

@keyframes serviceImageFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* SERVICE TAB HIDE / OPEN */

.all-service-list.service-hidden {
  display: none !important;
}

.all-service-list.service-open {
  display: block !important;
}

.hide-services-btn {
  margin-top: 22px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #F2055C;
  background: transparent;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.hide-services-btn:hover {
  background: #F2055C;
}

/* HIDE BUTTON AT BOTTOM */

.service-hide-wrap {
  text-align: center;
  margin-top: 50px;
}

.hide-services-btn {
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid #F2055C;
  background: transparent;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.hide-services-btn:hover {
  background: #F2055C;
  transform: translateY(-2px);
}

.zt-marquee-text {
  overflow: hidden;
  background: #f7f3fb;
  padding: 65px 0 45px;
  white-space: nowrap;
}

.zt-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: ztMarqueeMove 24s linear infinite;
}

.zt-marquee-track span {
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 900;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #f2055c;
}

.zt-marquee-track span:nth-child(1),
.zt-marquee-track span:nth-child(15) {
  color: #070b14;
  -webkit-text-stroke: 0;
}

.zt-marquee-track b {
  color: #f2055c;
  font-size: clamp(42px, 6vw, 90px);
  line-height: 1;
}

.zt-marquee-text:hover .zt-marquee-track {
  animation-play-state: paused;
}

@keyframes ztMarqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .zt-marquee-text {
    padding: 38px 0 30px;
  }

  .zt-marquee-track {
    gap: 18px;
  }

  .zt-marquee-track span {
    letter-spacing: -2px;
    -webkit-text-stroke: 1px #f2055c;
  }
}

.zt-marquee-text {
  overflow: hidden;
  background: #f7f3fb;
  padding: 65px 0 45px;
  white-space: nowrap;
}

.zt-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: ztMarqueeMove 24s linear infinite;
}

.zt-marquee-track span {
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 900;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #f2055c;
}

.zt-marquee-track span:nth-child(1),
.zt-marquee-track span:nth-child(15) {
  color: #070b14;
  -webkit-text-stroke: 0;
}

.zt-marquee-track b {
  color: #f2055c;
  font-size: clamp(42px, 6vw, 90px);
  line-height: 1;
}

.zt-marquee-text:hover .zt-marquee-track {
  animation-play-state: paused;
}

@keyframes ztMarqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .zt-marquee-text {
    padding: 38px 0 30px;
  }

  .zt-marquee-track {
    gap: 18px;
  }

  .zt-marquee-track span {
    letter-spacing: -2px;
    -webkit-text-stroke: 1px #f2055c;
  }
}

/* SMALLER SERVICES HERO WITH VIDEO */

.services-hero.video-hero {
  position: relative;
  min-height: 520px;
  padding: 130px 0 90px;
  overflow: hidden;
  background: #070b14;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 45%, rgba(242,5,92,0.35), transparent 45%),
    linear-gradient(90deg, rgba(7,11,20,0.96), rgba(7,11,20,0.75));
  z-index: 1;
}

.services-hero.video-hero .container {
  position: relative;
  z-index: 2;
}

.services-hero.video-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  max-width: 760px;
}

.services-hero.video-hero p {
  max-width: 680px;
}

@media (max-width: 768px) {
  .services-hero.video-hero {
    min-height: 420px;
    padding: 105px 0 70px;
  }

  .services-hero.video-hero h1 {
    font-size: 3rem;
  }
}


/* REDUCE SERVICES HERO HEIGHT */

.services-hero,
.page-hero.small {
  min-height: auto !important;
  padding: 80px 0 55px !important;
}

.services-hero .container,
.page-hero.small .container {
  max-width: 1100px;
}

.services-hero h1,
.page-hero.small h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 700px;
}

.services-hero p,
.page-hero.small p {
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 0;
}

.services-hero .eyebrow,
.page-hero.small .eyebrow {
  margin-bottom: 18px;
}

/* mobile */
@media (max-width: 768px) {
  .services-hero,
  .page-hero.small {
    padding: 60px 0 40px !important;
  }

  .services-hero h1,
  .page-hero.small h1 {
    font-size: 2.4rem !important;
  }

  .services-hero p,
  .page-hero.small p {
    font-size: 16px;
  }
}

/* AVISTA STYLE FOOTER - ZEEZ */

.zt-footer-new {
  position: relative;
  background:
    radial-gradient(circle at 10% 55%, rgba(242, 5, 92, 0.22), transparent 30%),
    radial-gradient(circle at 78% 65%, rgba(0, 190, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #020202 0%, #03060b 48%, #0b0204 100%);
  color: #fff;
  padding: 95px 0 40px;
  overflow: hidden;
}

.zt-footer-new .container {
  max-width: 1320px;
}

.zt-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 0.9fr 0.9fr 1.5fr;
  gap: 55px;
  align-items: start;
}

.zt-newsletter-box h4,
.zt-footer-col h4 {
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 15px;
}

.zt-newsletter-box p {
  color: #d7d7d7;
  margin-bottom: 22px;
}

.zt-newsletter-box form {
  display: flex;
  max-width: 380px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
  background: rgba(0,0,0,0.45);
}

.zt-newsletter-box input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 0 20px;
}

.zt-newsletter-box button {
  width: 120px;
  border: 0;
  background: #ff3d00;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.zt-footer-col a {
  display: block;
  color: #f1f1f1;
  margin: 13px 0;
  font-weight: 600;
}

.zt-footer-col a:hover {
  color: #ff3d00;
}

.zt-footer-email {
  margin: 0;
  text-align: right;
}

.zt-footer-email a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 0 55px;
  border-radius: 22px;
  background: #ff3d00;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  font-weight: 900;
  box-shadow:
    0 0 22px rgba(255, 61, 0, 0.75),
    0 0 55px rgba(255, 61, 0, 0.45);
}

.zt-footer-logo {
  text-align: center;
  margin: 75px auto 45px;
}

.zt-footer-logo img {
  max-width: 460px;
  width: 85%;
  filter: drop-shadow(0 0 20px rgba(242,5,92,0.25));
}

.zt-footer-bottom {
  max-width: 950px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #d4d4d4;
  font-size: 15px;
}

.zt-footer-bottom span {
  color: #ff3d00;
}

.zt-footer-bottom a {
  color: #fff;
}

@media (max-width: 1100px) {
  .zt-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .zt-footer-email {
    text-align: left;
  }
}

@media (max-width: 650px) {
  .zt-footer-new {
    padding: 65px 0 30px;
  }

  .zt-footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .zt-footer-email a {
    width: 100%;
    min-height: 62px;
    padding: 0 20px;
    font-size: 1.25rem;
  }

  .zt-footer-logo {
    margin: 45px auto 28px;
  }

  .zt-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* MAKE FOOTER FULL WIDTH LIKE AVISTA */

.zt-footer-new {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.zt-footer-new .container {
  max-width: 1500px !important;
  width: 92% !important;
  margin: 0 auto !important;
}

.zt-footer-top {
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr 1.5fr !important;
  gap: 65px !important;
}

.zt-footer-email {
  text-align: right !important;
}

.zt-footer-logo {
  width: 100%;
  text-align: center;
}

.zt-footer-logo img {
  max-width: 520px !important;
}

@media (max-width: 1100px) {
  .zt-footer-top {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 650px) {
  .zt-footer-new .container {
    width: 90% !important;
  }

  .zt-footer-top {
    grid-template-columns: 1fr !important;
  }
}

.zt-footer-new {
  width: 100%;
  position: relative;
}

.zt-footer-new .container {
  max-width: 1550px !important;
  width: calc(100% - 80px) !important;
  margin: 0 auto !important;
}

.zt-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.zt-footer-email {
  margin-top: 40px;
  text-align: right;
}

/* FINAL FOOTER EMAIL FIX */

.zt-footer-email {
  text-align: center !important;
  margin: 55px auto 45px !important;
  width: 100% !important;
}

.zt-footer-email a {
  background: #f2055c !important;
  color: #fff !important;
  box-shadow:
    0 0 22px rgba(242, 5, 92, 0.75),
    0 0 55px rgba(242, 5, 92, 0.45) !important;
  margin: 0 auto !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* optional: keep email slightly right like sample but not too far */
@media (min-width: 1000px) {
  .zt-footer-email {
    padding-left: 260px !important;
  }
}

@media (max-width: 768px) {
  .zt-footer-email {
    padding-left: 0 !important;
  }

  .zt-footer-email a {
    width: 100% !important;
    font-size: 1.2rem !important;
  }
}

/* FINAL FOOTER EMAIL POSITION FIX */

.zt-footer-email {
  position: absolute !important;
  top: 125px !important;
  right: 8% !important;
  text-align: right !important;
  z-index: 5 !important;
}

.zt-footer-email a {
  background: #f2055c !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 58px !important;
  padding: 0 28px !important;
  border-radius: 16px !important;

  font-size: 1.5rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;

  box-shadow:
    0 0 12px rgba(242, 5, 92, 0.55),
    0 0 28px rgba(242, 5, 92, 0.20) !important;
}
/* make space for email box */
.zt-footer-new {
  position: relative !important;
}

.zt-footer-logo {
  margin-top: 120px !important;
}

@media (max-width: 1100px) {
  .zt-footer-email {
    position: static !important;
    text-align: center !important;
    margin: 45px auto 30px !important;
  }

  .zt-footer-logo {
    margin-top: 45px !important;
  }
}

@media (max-width: 650px) {
  .zt-footer-email a {
    width: 100% !important;
    min-height: 62px !important;
    padding: 0 18px !important;
    font-size: 1.2rem !important;
  }
}

/* ANIMATED FOOTER EMAIL BUTTON */

.zt-email-cta {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 18px;
  height: 58px !important;
  padding: 0 28px !important;
  background: #f2055c !important;
  color: #fff !important;
  border-radius: 16px !important;
  font-size: 1.45rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  overflow: hidden;
  transform: skewX(-10deg);
  box-shadow:
    6px 6px 0 rgba(0,0,0,0.8),
    0 0 28px rgba(242,5,92,0.35) !important;
  transition: 0.35s ease;
}

.zt-email-cta span {
  display: inline-block;
  transform: skewX(10deg);
  position: relative;
  z-index: 2;
}

.zt-email-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff2f7d;
  transform: translateX(-100%);
  transition: 0.45s ease;
  z-index: 1;
}

.zt-email-cta:hover::before {
  transform: translateX(0);
}

.zt-email-cta:hover {
  transform: skewX(-10deg) translateY(-4px);
  box-shadow:
    10px 10px 0 #ffffff,
    0 0 35px rgba(242,5,92,0.55) !important;
}

.zt-email-arrow {
  letter-spacing: -6px;
  font-size: 1.7rem;
  transition: 0.35s ease;
}

.zt-email-cta:hover .zt-email-arrow {
  transform: skewX(10deg) translateX(12px);
  color: #fff;
  animation: ztEmailArrowFlash 0.8s infinite;
}

@keyframes ztEmailArrowFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 768px) {
  .zt-email-cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem !important;
    padding: 0 18px !important;
  }

  .zt-email-arrow {
    display: none !important;
  }
}

/* COUNTER TRAIN */

.zt-counter-train {
  width: 100%;
  overflow: hidden;
  background: #030303;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.zt-counter-track {
  display: flex;
  width: max-content;
  animation: ztCounterMove 28s linear infinite;
}

.zt-counter-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 55px;
  border-right: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap;
}

.zt-counter-item h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
}

.zt-counter-item p {
  margin: 0;
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.25;
  max-width: 110px;
}

.zt-counter-train:hover .zt-counter-track {
  animation-play-state: paused;
}

@keyframes ztCounterMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .zt-counter-train {
    padding: 18px 0;
  }

  .zt-counter-item {
    padding: 0 32px;
    gap: 12px;
  }

  .zt-counter-item h4 {
    font-size: 2rem;
  }

  .zt-counter-item p {
    font-size: 13px;
  }
}

/* CENTER FOOTER LOGO + ANIMATION */

.zt-footer-logo {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 90px auto 45px !important;
  width: 100% !important;
}

.zt-footer-logo img {
  max-width: 520px !important;
  width: 70% !important;
  margin: 0 auto !important;
  animation: ztLogoFloat 4s ease-in-out infinite;
  filter:
    drop-shadow(0 0 12px rgba(242, 5, 92, 0.35))
    drop-shadow(0 0 28px rgba(242, 5, 92, 0.18));
  transition: 0.4s ease;
}

.zt-footer-logo img:hover {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 18px rgba(242, 5, 92, 0.65))
    drop-shadow(0 0 45px rgba(242, 5, 92, 0.35));
}

@keyframes ztLogoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

@media (max-width: 768px) {
  .zt-footer-logo img {
    width: 90% !important;
    max-width: 360px !important;
  }
}

.zt-contact-showcase {
  position: relative;
  padding: 95px 0 0;
  background:
    radial-gradient(circle at 25% 55%, rgba(242,5,92,0.14), transparent 30%),
    radial-gradient(circle at 85% 60%, rgba(0,180,255,0.14), transparent 30%),
    linear-gradient(135deg, #f7f3fb, #e7edf3);
  overflow: hidden;
}

.zt-contact-head {
  text-align: center;
  margin-bottom: 42px;
}

.zt-contact-head span {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 10px 28px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.zt-contact-head h2 {
  margin: 0;
  color: #05070d;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.zt-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  align-items: center;
  background: #fff;
  border-radius: 26px 26px 0 0;
  min-height: 285px;
  padding: 35px 55px;
  box-shadow: 0 -20px 70px rgba(0,0,0,0.08);
}

.zt-contact-image img {
  max-width: 470px;
  width: 100%;
  margin-top: -110px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.18));
  animation: ztContactFloat 4s ease-in-out infinite;
}

.zt-contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.zt-contact-item i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f7f7f7;
  color: #f2055c;
  margin-bottom: 16px;
}

.zt-contact-item h4 {
  margin: 0 0 8px;
  color: #05070d;
  font-size: 1.25rem;
}

.zt-contact-item p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

@keyframes ztContactFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
  .zt-contact-card {
    grid-template-columns: 1fr;
    padding: 35px 25px;
  }

  .zt-contact-image img {
    margin: -80px auto 25px;
  }

  .zt-contact-info {
    grid-template-columns: 1fr;
  }
}


/* =========================
   SOCIAL MEDIA 3D ICON BOXES
========================= */

.zt-social-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.zt-social-box li {
    list-style: none;
}

.zt-social-box li a {
    position: relative;
    display: block;
    width: 210px;
    height: 80px;
    background: #111;
    text-align: left;
    padding-left: 20px;
    text-decoration: none;
    transform: rotate(-20deg) skew(20deg) translate(0, 0);
    transition: 0.5s;
    box-shadow: -20px 20px 20px rgba(0,0,0,0.4);
    border-radius: 8px;
}

.zt-social-box li a:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -20px;
    width: 20px;
    height: 100%;
    background: #222;
    transform: skewY(-45deg);
    transition: 0.5s;
    border-radius: 6px;
}

.zt-social-box li a:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -10px;
    width: 100%;
    height: 20px;
    background: #222;
    transform: skewX(-45deg);
    transition: 0.5s;
    border-radius: 6px;
}

.zt-social-box li a i {
    font-size: 34px;
    line-height: 80px;
    color: #fff;
    padding-right: 15px;
    transition: 0.5s;
}

.zt-social-box li a span {
    position: absolute;
    top: 28px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.5s;
}

/* Hover Animation */

.zt-social-box li a:hover {
    transform: rotate(-20deg) skew(20deg) translate(20px, -15px);
    box-shadow: -40px 40px 40px rgba(0,0,0,0.5);
}

/* Facebook */

.zt-social-box li:nth-child(1) a {
    background: #1877f2;
}

.zt-social-box li:nth-child(1) a:before {
    background: #145dbf;
}

.zt-social-box li:nth-child(1) a:after {
    background: #3b82f6;
}

/* Instagram */

.zt-social-box li:nth-child(2) a {
    background: #e4405f;
}

.zt-social-box li:nth-child(2) a:before {
    background: #c72d4b;
}

.zt-social-box li:nth-child(2) a:after {
    background: #f0627d;
}

/* X (Twitter) */

.zt-social-box li:nth-child(3) a {
    background: #000;
}

.zt-social-box li:nth-child(3) a:before {
    background: #111;
}

.zt-social-box li:nth-child(3) a:after {
    background: #333;
}

/* Mobile */

@media (max-width: 768px) {
    .zt-social-box {
        flex-direction: column;
        align-items: center;
    }

    .zt-social-box li a {
        width: 250px;
    }
}

.zt-contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 35px;
  align-items: center;
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 40px 60px 55px;
}

.zt-contact-image img {
  width: 100%;
  max-width: 520px;
  margin-top: -110px;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,0.18));
  animation: ztContactFloat 4s ease-in-out infinite;
}

.zt-contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.zt-social-box {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 35px 0 0;
  padding: 0;
}

.zt-social-box li {
  list-style: none;
}

.zt-social-box li a {
  position: relative;
  display: block;
  width: 210px;
  height: 72px;
  background: #111;
  padding-left: 22px;
  transform: rotate(-8deg) skew(12deg);
  transition: 0.45s ease;
  box-shadow: -14px 14px 18px rgba(0,0,0,0.28);
}

.zt-social-box li a i {
  font-size: 30px;
  line-height: 72px;
  color: #fff;
  margin-right: 12px;
}

.zt-social-box li a span {
  color: #fff;
  font-weight: 800;
}

.zt-social-box li a:hover {
  transform: rotate(-8deg) skew(12deg) translate(14px, -10px);
}

.zt-social-box li:nth-child(1) a { background: #1877f2; }
.zt-social-box li:nth-child(2) a { background: #e4405f; }
.zt-social-box li:nth-child(3) a { background: #000; }
.zt-social-box li:nth-child(4) a {
    background: #dd4b39;
}

.zt-social-box li:nth-child(4) a:before {
    background: #b33a2b;
}

.zt-social-box li:nth-child(4) a:after {
    background: #e66a5a;
}

@media (max-width: 900px) {
  .zt-contact-card {
    grid-template-columns: 1fr;
    padding: 35px 25px;
  }

  .zt-contact-image img {
    margin: -70px auto 20px;
  }

  .zt-contact-info {
    grid-template-columns: 1fr;
  }

  .zt-social-box {
    flex-direction: column;
    align-items: center;
  }
}


/* PREMIUM QUICK INQUIRY CTA */

.zt-quick-cta {
  padding: 70px 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(242,5,92,0.14), transparent 30%),
    #070b14;
}

.zt-quick-cta-box {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 42px 48px;
  border-radius: 30px;
  border: 1px solid rgba(242,5,92,0.28);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    radial-gradient(circle at 85% 50%, rgba(242,5,92,0.28), transparent 32%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.zt-quick-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 55px 55px;
  opacity: 0.18;
}

.zt-quick-cta-glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #f2055c;
  filter: blur(95px);
  opacity: 0.35;
  animation: ztCtaGlow 4s ease-in-out infinite;
}

.zt-quick-cta-content,
.zt-quick-cta-actions {
  position: relative;
  z-index: 2;
}

.zt-quick-cta-content span {
  display: inline-block;
  color: #ffd0e4;
  background: rgba(242,5,92,0.14);
  border: 1px solid rgba(242,5,92,0.3);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.zt-quick-cta-content h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3.1rem);
  line-height: 1.1;
}

.zt-quick-cta-content p {
  margin: 0;
  color: #d6d9e2;
  line-height: 1.7;
  max-width: 780px;
}

.zt-quick-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zt-cta-main,
.zt-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  height: 58px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s ease;
}

.zt-cta-main {
  background: #f2055c;
  color: #fff;
  box-shadow: 0 0 30px rgba(242,5,92,0.35);
}

.zt-cta-whatsapp {
  background: rgba(37,211,102,0.14);
  color: #fff;
  border: 1px solid rgba(37,211,102,0.45);
}

.zt-cta-main:hover,
.zt-cta-whatsapp:hover {
  transform: translateY(-4px);
}

@keyframes ztCtaGlow {
  0%, 100% { transform: scale(1); opacity: 0.28; }
  50% { transform: scale(1.18); opacity: 0.42; }
}

@media (max-width: 800px) {
  .zt-quick-cta-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .zt-quick-cta-actions {
    flex-direction: column;
  }
}

/* MODERN HOME HERO */

.zt-home-hero {
  position: relative;
  min-height: calc(100vh - 100px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #070b14;
}

.zt-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.zt-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(242,5,92,0.35), transparent 32%),
    radial-gradient(circle at 20% 50%, rgba(0,180,255,0.14), transparent 32%),
    linear-gradient(90deg, rgba(7,11,20,0.98), rgba(7,11,20,0.78), rgba(7,11,20,0.50));
}

.zt-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: ztHeroGridMove 18s linear infinite;
}

.zt-home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
}

.zt-home-hero-text h1 {
  margin: 22px 0;
  color: #fff;
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.zt-home-hero-text h1 span {
  display: block;
  color: #f2055c;
  text-shadow: 0 0 35px rgba(242,5,92,0.45);
}

.zt-home-hero-text p {
  max-width: 720px;
  color: #d8dde8;
  font-size: 1.08rem;
  line-height: 1.9;
}

.zt-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-whatsapp {
  background: rgba(37,211,102,0.16);
  color: #fff;
  border: 1px solid rgba(37,211,102,0.45);
}

.zt-home-hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zt-home-hero-visual img {
  width: min(760px, 110%);
  max-width: none;
  filter: drop-shadow(0 35px 60px rgba(0,0,0,0.55));
  animation: ztHeroFloat 5s ease-in-out infinite;
}

.zt-float-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  animation: ztMiniFloat 4s ease-in-out infinite;
}

.zt-float-card i {
  color: #f2055c;
  margin-right: 8px;
}

.card-1 {
  top: 18%;
  left: 8%;
}

.card-2 {
  top: 28%;
  right: 4%;
  animation-delay: 0.4s;
}

.card-3 {
  bottom: 24%;
  left: 2%;
  animation-delay: 0.8s;
}

.card-4 {
  bottom: 16%;
  right: 8%;
  animation-delay: 1.2s;
}

@keyframes ztHeroGridMove {
  from { background-position: 0 0; }
  to { background-position: 140px 140px; }
}

@keyframes ztHeroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.02); }
}

@keyframes ztMiniFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
  .zt-home-hero-inner {
    grid-template-columns: 1fr;
  }

  .zt-home-hero-visual {
    min-height: 420px;
  }

  .zt-home-hero-visual img {
    width: 110%;
  }
}

@media (max-width: 600px) {
  .zt-home-hero {
    min-height: auto;
  }

  .zt-home-hero-inner {
    padding: 60px 0;
  }

  .zt-home-hero-text h1 {
    font-size: 3.2rem;
  }

  .zt-float-card {
    font-size: 12px;
    padding: 10px 12px;
  }
}


.floating-contact {
  position: fixed;
  right: 25px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  padding: 14px 22px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
}

.whatsapp {
  background: #25D366;
}

.inquiry {
  background: #f7057e;
}

.call {
  background: #ff0055;
}

@media (max-width: 768px) {

  .floating-contact {
    right: 15px;
    bottom: 20px;
    gap: 10px;
  }

  .float-btn {
    width: 58px;
    height: 58px;
    min-width: 58px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }

  .float-btn span {
    display: none;
  }

  .float-btn i {
    font-size: 20px;
    margin: 0;
  }

}

.zt-home-hero {
  position: relative;
  min-height: calc(100vh - 100px);
  overflow: hidden;
  background: #070b14;
  display: flex;
  align-items: center;
}

.zt-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}

.zt-hero-dark {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(242,5,92,.38), transparent 35%),
    linear-gradient(90deg, rgba(7,11,20,.98), rgba(7,11,20,.82), rgba(7,11,20,.48));
}

.zt-home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 40px;
  padding: 90px 0;
}

.zt-home-hero-text h1 {
  margin: 22px 0;
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.zt-home-hero-text h1 span {
  display: block;
  color: #f2055c;
  text-shadow: 0 0 35px rgba(242,5,92,.45);
}

.zt-home-hero-text p {
  max-width: 720px;
  color: #d8dde8;
  font-size: 1.08rem;
  line-height: 1.9;
}

.zt-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-whatsapp {
  background: rgba(37,211,102,.16);
  color: #fff;
  border: 1px solid rgba(37,211,102,.45);
}

.zt-home-hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zt-home-hero-visual img {
  width: min(820px, 115%);
  max-width: none;
  animation: ztHeroFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 35px 65px rgba(0,0,0,.55));
}

.zt-orbit-card {
  position: absolute;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  color: #fff;
  font-weight: 800;
  animation: ztMiniFloat 4s ease-in-out infinite;
}

.zt-orbit-card i {
  color: #f2055c;
  margin-right: 8px;
}

.card-a { top: 18%; left: 8%; }
.card-b { top: 28%; right: 4%; animation-delay: .4s; }
.card-c { bottom: 25%; left: 2%; animation-delay: .8s; }
.card-d { bottom: 16%; right: 8%; animation-delay: 1.2s; }

@keyframes ztHeroFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.02); }
}

@keyframes ztMiniFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
  .zt-home-hero-inner {
    grid-template-columns: 1fr;
  }

  .zt-home-hero-visual {
    min-height: 420px;
  }

  .zt-home-hero-visual img {
    width: 115%;
  }
}

@media (max-width: 600px) {
  .zt-home-hero {
    min-height: auto;
  }

  .zt-home-hero-inner {
    padding: 60px 0;
  }

  .zt-home-hero-text h1 {
    font-size: 3.1rem;
  }

  .zt-orbit-card {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* WHY CHOOSE ZEEZ */

.zt-why-choose {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(242,5,92,0.08), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(0,180,255,0.08), transparent 28%),
    #070b14;
}

.zt-why-choose .section-head.center {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.zt-why-choose .section-head span {
  display: inline-block;
  color: #f2055c;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.zt-why-choose .section-head h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 18px;
}

.zt-why-choose .section-head p {
  color: #cfd6e4;
  line-height: 1.8;
  font-size: 1.05rem;
}

.zt-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.zt-why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 34px 28px;
  transition: 0.35s ease;
  backdrop-filter: blur(10px);
}

.zt-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242,5,92,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.zt-why-card i {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(242,5,92,0.12);
  color: #f2055c;
  font-size: 24px;
  margin-bottom: 20px;
}

.zt-why-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.zt-why-card p {
  color: #c8cfdb;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 992px) {
  .zt-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .zt-why-choose {
    padding: 80px 0;
  }

  .zt-why-grid {
    grid-template-columns: 1fr;
  }

  .zt-why-card {
    padding: 28px 22px;
  }
}


/* FEATURED SERVICES HOME */

.zt-featured-services {
  padding: 110px 0;
  background: #f7f3fb;
}

.zt-featured-services .section-head.center {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.zt-featured-services .section-head span {
  color: #f2055c;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zt-featured-services .section-head h2 {
  color: #070b14;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin: 14px 0;
}

.zt-featured-services .section-head p {
  color: #555b68;
  line-height: 1.8;
}

.zt-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.zt-featured-card {
  position: relative;
  height: 390px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.zt-featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.zt-featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,20,0.15), rgba(7,11,20,0.9)),
    radial-gradient(circle at 80% 20%, rgba(242,5,92,0.35), transparent 30%);
  z-index: 1;
}

.zt-featured-card > div {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.zt-featured-card i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f2055c;
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
}

.zt-featured-card h3 {
  font-size: 1.55rem;
  margin: 0 0 12px;
}

.zt-featured-card p {
  color: #e5e7eb;
  line-height: 1.7;
  margin-bottom: 18px;
}

.zt-featured-card span {
  color: #fff;
  font-weight: 900;
}

.zt-featured-card:hover img {
  transform: scale(1.1);
}

.zt-featured-card:hover {
  transform: translateY(-8px);
}

@media (max-width: 980px) {
  .zt-featured-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .zt-featured-services {
    padding: 80px 0;
  }

  .zt-featured-grid {
    grid-template-columns: 1fr;
  }

  .zt-featured-card {
    height: 340px;
  }
}

/* WHY CHOOSE US - PREMIUM STYLE */

.why-premium {
    padding: 100px 0;
    background: #f7f7f7;
}

.why-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f7057e;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-header h2 {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.why-header p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.why-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.why-side {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.why-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.why-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.why-center {
    width: 30%;
    display: flex;
    justify-content: center;
}

.why-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.why-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE */

@media (max-width: 991px) {
    .why-layout {
        flex-direction: column;
    }

    .why-side,
    .why-center {
        width: 100%;
    }

    .why-header h2 {
        font-size: 38px;
    }

    .why-circle {
        width: 260px;
        height: 260px;
    }
}


.why-layout {
  position: relative;
}

.why-line {
  position: absolute;
  width: 160px;
  height: 70px;
  pointer-events: none;
}

.why-line::before {
  content: "";
  position: absolute;
  width: 95px;
  height: 1px;
  background: #9ca3af;
}

.why-line::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  border-left: 1px solid #9ca3af;
  border-top: 1px solid #9ca3af;
}

.why-line span {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #070b14;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  z-index: 3;
}

/* positions */
.why-line-1 {
  top: 20px;
  left: 32%;
}

.why-line-1 span {
  left: 0;
  top: 0;
}

.why-line-1::before {
  left: 52px;
  top: 26px;
}

.why-line-1::after {
  right: 0;
  top: 26px;
}

.why-line-2 {
  top: 20px;
  right: 32%;
  transform: scaleX(-1);
}

.why-line-2 span {
  left: 0;
  top: 0;
  transform: scaleX(-1);
}

.why-line-2::before {
  left: 52px;
  top: 26px;
}

.why-line-2::after {
  right: 0;
  top: 26px;
}

.why-line-3 {
  bottom: 20px;
  left: 32%;
  transform: scaleY(-1);
}

.why-line-3 span {
  left: 0;
  top: 0;
  transform: scaleY(-1);
}

.why-line-3::before {
  left: 52px;
  top: 26px;
}

.why-line-3::after {
  right: 0;
  top: 26px;
}

.why-line-4 {
  bottom: 20px;
  right: 32%;
  transform: scale(-1);
}

.why-line-4 span {
  left: 0;
  top: 0;
  transform: scale(-1);
}

.why-line-4::before {
  left: 52px;
  top: 26px;
}

.why-line-4::after {
  right: 0;
  top: 26px;
}

@media (max-width: 991px) {
  .why-line {
    display: none;
  }
}

/* RESULTS / SUCCESS NUMBERS */

.zt-results {
  padding: 100px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(242,5,92,0.16), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(0,180,255,0.12), transparent 28%),
    #070b14;
}

.zt-results .section-head.center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.zt-results .section-head span {
  color: #f2055c;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.zt-results .section-head h2 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  margin: 14px 0;
}

.zt-results .section-head p {
  color: #cfd6e4;
  line-height: 1.8;
}

.zt-results-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.zt-result-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 26px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  text-align: center;
  display: grid;
  place-items: center;
  transition: 0.35s ease;
}

.zt-result-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(242,5,92,0.26), transparent 45%);
  opacity: 0;
  transition: 0.35s ease;
}

.zt-result-card h3,
.zt-result-card p {
  position: relative;
  z-index: 2;
}

.zt-result-card h3 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  margin: 0 0 8px;
  text-shadow: 0 0 25px rgba(242,5,92,0.35);
}

.zt-result-card p {
  color: #d5d9e3;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.zt-result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242,5,92,0.45);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.zt-result-card:hover::before {
  opacity: 1;
}

@media (max-width: 1100px) {
  .zt-results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .zt-results {
    padding: 75px 0;
  }

  .zt-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zt-result-card {
    min-height: 145px;
  }
}

/* SERVICES OFFER SECTION - WHITE CARD STYLE */

.zt-services-offer {
  padding: 110px 0;
  background: #fff;
}

.zt-offer-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.zt-offer-head span {
  display: inline-block;
  color: #f2055c;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.zt-offer-head h2 {
  color: #070b14;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: 0;
}

.zt-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.zt-offer-card {
  position: relative;
  min-height: 320px;
  padding: 42px 32px;
  border-radius: 10px;
  background: #fff;
  color: #070b14;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.35s ease;
}

.zt-offer-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(rgba(242,5,92,0.22) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.8;
}

.zt-offer-card i {
  font-size: 48px;
  color: #f2055c;
  margin-bottom: 35px;
  display: block;
}

.zt-offer-card b {
  position: absolute;
  top: 42px;
  right: 28px;
  font-size: 46px;
  color: rgba(7,11,20,0.06);
  font-weight: 900;
}

.zt-offer-card h3 {
  font-size: 1.35rem;
  margin: 0 0 18px;
}

.zt-offer-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.zt-offer-card:hover,
.zt-offer-card.active {
  background: #f2055c;
  color: #fff;
  transform: translateY(-10px);
}

.zt-offer-card:hover i,
.zt-offer-card.active i,
.zt-offer-card:hover p,
.zt-offer-card.active p {
  color: #fff;
}

.zt-offer-card:hover b,
.zt-offer-card.active b {
  color: rgba(255,255,255,0.18);
}

@media (max-width: 1100px) {
  .zt-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .zt-services-offer {
    padding: 75px 0;
  }

  .zt-offer-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   MODERN SERVICES SECTION
========================= */

.services-modern {
    padding: 100px 0;
    background: #f7f7f7;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #f7057e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
    color: #111;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #f7057e;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transition: 0.4s;
}

.service-box:hover::before,
.service-box.active::before {
    transform: scaleX(1);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(247, 5, 126, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-icon i {
    font-size: 28px;
    color: #f7057e;
}

.service-box:hover .service-icon,
.service-box.active .service-icon {
    background: #f7057e;
}

.service-box:hover .service-icon i,
.service-box.active .service-icon i {
    color: #fff;
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111;
}

.service-box p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* MOBILE RESPONSIVE */

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .service-box {
        padding: 30px 20px;
    }
}

/* =========================
SERVICE BOX CROSSHAIR EFFECT
========================= */

.service-box {
    cursor: crosshair;
    background: linear-gradient(145deg, #111111, #1b1b1b);
    border: 2px solid rgba(247, 5, 126, 0.15);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* hover effect */
.service-box:hover {
    transform: scale(1.03);
    box-shadow: 0 0 0 5px rgba(247, 5, 126, 0.12);
    border-color: #f7057e;
}

/* optional glowing icon effect */
.service-box:hover .service-icon {
    background: #f7057e;
    box-shadow: 0 0 20px rgba(247, 5, 126, 0.35);
}

.service-box:hover .service-icon i {
    color: #ffffff;
}

/* text colors for dark background */
.service-box h3 {
    color: #ffffff;
}

.service-box p {
    color: rgba(255,255,255,0.75);
}

.service-box .explore-btn,
.service-box a {
    color: #ffffff;
}

/* smoother animation */
.service-box,
.service-box * {
    transition: all 0.35s ease;
}


/* =====================================
ADD CROSSHAIR HOVER EFFECT TO THIS SECTION
For: .zt-featured-card
Paste at VERY BOTTOM of style.css
===================================== */

.zt-featured-card {
    position: relative;
    cursor: crosshair;
    overflow: hidden;
    border: 2px solid rgba(247, 5, 126, 0.10);
    border-radius: 24px;
    background: linear-gradient(145deg, #111111, #1b1b1b);
    transition: all 0.4s ease;
}

/* Hover effect */
.zt-featured-card:hover {
    transform: scale(1.03);
    border-color: #f7057e;
    box-shadow: 0 0 0 5px rgba(247, 5, 126, 0.12);
}

/* Image zoom on hover */
.zt-featured-card img {
    transition: transform 0.5s ease;
}

.zt-featured-card:hover img {
    transform: scale(1.08);
}

/* Icon glow effect */
.zt-featured-card i {
    transition: all 0.35s ease;
}

.zt-featured-card:hover i {
    color: #ffffff;
    background: #f7057e;
    box-shadow: 0 0 20px rgba(247, 5, 126, 0.35);
}

/* Title highlight */
.zt-featured-card h3 {
    transition: 0.3s ease;
}

.zt-featured-card:hover h3 {
    color: #f7057e;
}

/* Explore text effect */
.zt-featured-card span {
    transition: 0.3s ease;
}

.zt-featured-card:hover span {
    color: #ffffff;
    letter-spacing: 1px;
}

/* HOLOGRAPHIC + SHINE EFFECT FOR FEATURED SERVICES */

.zt-featured-card {
  cursor: crosshair !important;
  position: relative !important;
  overflow: hidden !important;
  border: 2px solid rgba(247, 5, 126, 0.22) !important;
  background:
    linear-gradient(145deg, rgba(42,42,42,0.95), rgba(56,56,56,0.95)) !important;
  transition: all 0.4s ease !important;
}

/* holographic color layer */
.zt-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 10%,
      rgba(247, 5, 126, 0.25),
      rgba(0, 220, 255, 0.18),
      rgba(255, 255, 255, 0.22),
      transparent 80%
    );
  opacity: 0;
  transform: translateX(-120%);
  transition: 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

/* shine sweep */
.zt-featured-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  top: -120%;
  left: -120%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
  transition: all 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* hover */
.zt-featured-card:hover {
  transform: scale(1.04) translateY(-6px) !important;
  border-color: #f7057e !important;
  box-shadow:
    0 0 0 5px rgba(247, 5, 126, 0.15),
    0 25px 60px rgba(0,0,0,0.28) !important;
}

.zt-featured-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.zt-featured-card:hover::before {
  top: 120%;
  left: 120%;
}

/* keep content above effects */
.zt-featured-card img {
  z-index: 0 !important;
}

.zt-featured-card > div {
  position: relative !important;
  z-index: 5 !important;
}

/* TEXT VISIBILITY FIX FOR FEATURED SERVICE CARDS */
/* Paste this at the VERY BOTTOM of style.css */

.zt-featured-card {
    position: relative;
    overflow: hidden;
}

/* dark overlay above image for better text readability */
.zt-featured-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 15%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.18) 75%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* keep content above overlay */
.zt-featured-card > div {
    position: relative;
    z-index: 5;
}

/* title stronger */
.zt-featured-card h3 {
    color: #ffffff !important;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0,0,0,0.45);
    margin-bottom: 10px;
}

/* paragraph better visibility */
.zt-featured-card p {
    color: rgba(255,255,255,0.92) !important;
    font-size: 16px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* explore link */
.zt-featured-card span {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* icon visibility */
.zt-featured-card i {
    color: #ffffff !important;
    background: #f7057e;
    box-shadow: 0 8px 20px rgba(247,5,126,0.25);
}


/* TESTIMONIAL SECTION */

.zt-testimonial-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  min-height: 430px;
  background: #111;
}

.zt-testimonial-left {
  background: #f7f7f7;
  padding: 70px 60px;
  position: relative;
}

.zt-review-slider {
  position: relative;
  min-height: 280px;
}

.zt-review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(25px);
  transition: 0.5s ease;
}

.zt-review-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.zt-review-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f2055c;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(242,5,92,0.25);
}

.zt-review-slide p {
  color: #555;
  font-size: 1.35rem;
  line-height: 1.7;
  margin: 0 0 26px;
}

.zt-review-slide h4 {
  color: #111;
  font-size: 1.1rem;
  margin: 0 0 6px;
}

.zt-review-slide span {
  color: #f2055c;
  font-weight: 700;
}

.zt-review-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.zt-review-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #d7d7d7;
  cursor: pointer;
}

.zt-review-dots button.active {
  background: #f2055c;
}

.zt-testimonial-center {
  background:
    linear-gradient(rgba(242,5,92,0.84), rgba(242,5,92,0.84)),
    url("assets/images/testimonial-bg.jpg");
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  padding: 45px;
  text-align: center;
}

.zt-testimonial-overlay h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.25;
  margin: 0 0 28px;
}

.zt-testimonial-overlay a {
  display: inline-flex;
  padding: 16px 34px;
  background: #fff;
  color: #111;
  border-radius: 12px;
  font-weight: 900;
  transition: 0.3s ease;
}

.zt-testimonial-overlay a:hover {
  transform: translateY(-4px);
}

.zt-testimonial-right {
  background: #171717;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.zt-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 45px 25px;
}

.zt-stat-box i {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0d0d0d;
  color: #f2055c;
  font-size: 32px;
  margin-bottom: 28px;
}

.zt-stat-box h3 {
  color: #fff;
  font-size: 3.5rem;
  margin: 0 0 10px;
}

.zt-stat-box p {
  color: #cfd3dc;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1000px) {
  .zt-testimonial-section {
    grid-template-columns: 1fr;
  }

  .zt-testimonial-left {
    padding: 55px 28px;
  }

  .zt-review-slide p {
    font-size: 1.1rem;
  }

  .zt-testimonial-right {
    grid-template-columns: 1fr;
  }
}

/* PORTFOLIO PAGE */

.zt-portfolio-page {
    background: #050505;
    padding: 120px 0;
    color: #fff;
}

.zt-portfolio-page .section-head span {
    color: #f7057e;
}

.zt-portfolio-page .section-head h2 {
    color: #fff;
}

.zt-portfolio-page .section-head p {
    color: #aaa;
    max-width: 700px;
    margin: auto;
}

/* FILTER */

.zt-portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 60px 0;
}

.zt-portfolio-filter button {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.zt-portfolio-filter button:hover,
.zt-portfolio-filter button.active {
    background: #f7057e;
    border-color: #f7057e;
    box-shadow: 0 10px 30px rgba(247,5,126,0.25);
}

/* GRID */

.zt-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* CARD */

.zt-portfolio-card {
    background: #0d0d0d;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
    position: relative;
}

.zt-portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(247,5,126,0.12);
}

.zt-portfolio-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.zt-portfolio-content {
    padding: 30px;
}

.zt-portfolio-content h3 {
    font-size: 30px;
    margin-bottom: 12px;
}

.zt-portfolio-content p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.7;
}

.zt-portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.zt-portfolio-tags span {
    background: rgba(255,255,255,0.06);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    color: #ddd;
}

.zt-portfolio-content a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.zt-portfolio-content a:hover {
    color: #f7057e;
}

/* MOBILE */

@media (max-width: 991px) {
    .zt-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .zt-portfolio-card img {
        height: 280px;
    }
}


/* CHANGE PORTFOLIO GRID FROM 2 TO 4 PER ROW */

.zt-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards in one row */
    gap: 25px;
}

/* Smaller card image for 4-column layout */
.zt-portfolio-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* Smaller content spacing */
.zt-portfolio-content {
    padding: 22px;
}

.zt-portfolio-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.zt-portfolio-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Tablet = 2 per row */
@media (max-width: 1200px) {
    .zt-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile = 1 per row */
@media (max-width: 768px) {
    .zt-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .zt-portfolio-card img {
        height: 260px;
    }
}


/* PREMIUM PORTFOLIO HOVER */

.zt-portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.zt-portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(247, 5, 126, 0.22),
    rgba(255,255,255,0.12),
    transparent
  );
  transform: translateX(-120%);
  transition: 0.7s ease;
  z-index: 2;
  pointer-events: none;
}

.zt-portfolio-card:hover::before {
  transform: translateX(120%);
}

.zt-portfolio-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(247, 5, 126, 0.55);
  box-shadow:
    0 0 0 1px rgba(247,5,126,0.3),
    0 25px 70px rgba(247,5,126,0.18);
}

.zt-portfolio-card img {
  transition: 0.6s ease;
}

.zt-portfolio-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.75);
}


.zt-portfolio-card {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* FINAL PORTFOLIO PAGE FIX */

.zt-portfolio-page {
  padding: 110px 0 !important;
  background: #050505 !important;
}

.zt-portfolio-filter,
.zt-portfolio-filters {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  margin: 35px 0 40px !important;
}

.zt-portfolio-filter button,
.zt-portfolio-filters button {
  appearance: none !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: #111 !important;
  color: #fff !important;
  padding: 13px 24px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  font-family: inherit !important;
  cursor: pointer !important;
}

.zt-portfolio-filter button:hover,
.zt-portfolio-filter button.active,
.zt-portfolio-filters button:hover,
.zt-portfolio-filters button.active {
  background: #f7057e !important;
  border-color: #f7057e !important;
  box-shadow: 0 10px 30px rgba(247,5,126,0.3) !important;
}

.zt-portfolio-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 26px !important;
}

.zt-portfolio-card {
  background: #0f0f10 !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  min-height: 520px !important;
  transition: 0.35s ease !important;
}

.zt-portfolio-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  border-color: #f7057e !important;
  box-shadow: 0 25px 70px rgba(247,5,126,0.18) !important;
}

.zt-portfolio-card img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important;
  display: block !important;
  background: #151515 !important;
}

.zt-portfolio-content {
  padding: 24px !important;
}

.zt-portfolio-content h3 {
  font-size: 22px !important;
  color: #fff !important;
}

.zt-portfolio-content p {
  color: #cfd3dc !important;
  line-height: 1.6 !important;
}

@media (max-width: 1200px) {
  .zt-portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .zt-portfolio-grid {
    grid-template-columns: 1fr !important;
  }
}


/* INQUIRY SECTION */

.zt-inquiry-section {
  padding: 110px 0;
  background: #f7f7f7;
}

.zt-inquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.zt-inquiry-form-box {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.zt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.zt-form-group {
  margin-bottom: 22px;
}

.zt-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.zt-form-group input,
.zt-form-group select,
.zt-form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.zt-form-group input:focus,
.zt-form-group select:focus,
.zt-form-group textarea:focus {
  border-color: #f7057e;
}

.zt-radio-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.zt-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.zt-inquiry-image-box img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  min-height: 650px;
}

@media (max-width: 991px) {
  .zt-inquiry-wrapper {
    grid-template-columns: 1fr;
  }

  .zt-form-grid {
    grid-template-columns: 1fr;
  }

  .zt-inquiry-form-box {
    padding: 30px;
  }

  .zt-inquiry-image-box img {
    min-height: auto;
  }
}

.zt-inquiry-form-box .section-head p {
  color: #444 !important;
  font-size: 16px;
  line-height: 1.7;
  opacity: 1;
}

.zt-success-message {
  background: rgba(0, 210, 106, 0.12);
  color: #00a85a;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-weight: 700;
  border: 1px solid rgba(0, 210, 106, 0.25);
}

.zt-portfolio-content p {
  word-break: break-word;
  overflow-wrap: break-word;
}



















