:root {
  --ink: #050708;
  --ink-soft: #273139;
  --panel: #ffffff;
  --paper: #f5f7f8;
  --steel: #78858d;
  --cyan: #00adef;
  --cyan-dark: #0478a7;
  --ice: #dff6ff;
  --line: rgba(16, 24, 32, 0.14);
  --shadow: 0 20px 60px rgba(0, 173, 239, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

body.custom-cursor-active,
body.custom-cursor-active a,
body.custom-cursor-active button {
  cursor: none !important;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 52px);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: #050708;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 216px;
  height: auto;
}

@keyframes pulse-cyan {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 174, 239, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(0, 173, 239, 0.9);
  border-radius: 50%;
  color: #050708;
  background: var(--cyan);
  cursor: pointer;
  animation: pulse-cyan 2s infinite;
}

body.nav-open .menu-toggle {
  animation: none;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: #bbbbbb;
  transition: color 240ms ease;
  overflow: visible;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.site-nav a span {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.site-nav a canvas {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.language-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.language-link img {
  width: 36px;
  height: 24px;
  border-radius: 2px;
  object-fit: cover;
}

.language-link span {
  display: none;
}

.hero {
  background: var(--ink);
}

.hero-slider {
  position: relative;
  height: 86vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero-slider::after {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 110px clamp(22px, 6vw, 84px) 86px;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.86) 0%, rgba(5, 7, 8, 0.52) 42%, rgba(5, 7, 8, 0.1) 74%),
    linear-gradient(0deg, rgba(5, 7, 8, 0.76) 0%, rgba(5, 7, 8, 0.05) 44%);
  pointer-events: none;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide img,
.hero-slide video {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.08);
}

.hero-slide.is-active img {
  animation: kenburns 8s ease-out both;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero-content p,
.section-heading p,
.service-copy > p:first-child {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  margin: 0;
  max-width: 11ch;
  color: #ffffff;
  font-size: 4.8rem;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.52);
  text-wrap: balance;
}

.hero-content h2 {
  max-width: 12ch;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(16, 24, 32, 0.46);
  box-shadow: none;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 173, 239, 0.72);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow-prev {
  left: clamp(14px, 3vw, 34px);
}

.hero-arrow-next {
  right: clamp(14px, 3vw, 34px);
}

.hero-dots {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 30px;
  z-index: 5;
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 32px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--cyan);
}

.intro-band {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 173, 239, 0.95), rgba(5, 7, 8, 0.96)),
    var(--cyan);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
}

.intro-grid p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.button-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
}

.button-link:hover,
.button-link:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: 78px 0;
}

.section-light {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.section-light::before {
  position: absolute;
  inset: -18% 0;
  content: "";
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 173, 239, 0.22), transparent 30%),
    radial-gradient(circle at 8% 82%, rgba(0, 173, 239, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(0, 173, 239, 0.1), rgba(5, 7, 8, 0.04));
  pointer-events: none;
  transform: translate3d(0, calc(var(--services-parallax, 0) * 1px), 0);
  transition: transform 80ms linear;
}

.section-light > .section-inner {
  position: relative;
  z-index: 1;
}

.section-dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 173, 239, 0.16), transparent 28%),
    #050708;
}

.section-heading {
  margin-bottom: 34px;
}

#service .section-heading {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 700ms ease, transform 700ms ease;
}

#service .section-heading.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-heading h2 {
  margin: 0;
  max-width: 760px;
  font-size: 2.55rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(180px, 42%) 1fr;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(0, 173, 239, 0.18);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

#service .service-card {
  opacity: 0;
  transform: translate3d(-74px, 34px, 0);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

#service .service-card:nth-child(even) {
  transform: translate3d(74px, 34px, 0);
}

#service .service-card:nth-child(2) {
  transition-delay: 120ms;
}

#service .service-card:nth-child(3) {
  transition-delay: 180ms;
}

#service .service-card:nth-child(4) {
  transition-delay: 260ms;
}

#service .service-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#service .service-card.is-visible:hover {
  box-shadow: 0 26px 70px rgba(0, 173, 239, 0.18);
}

.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-link {
  min-height: 100%;
}

.service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 28px;
}

.service-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.1;
}

.service-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.service-logo {
  width: auto;
  max-height: 52px;
}

.text-link {
  margin-top: auto;
  color: var(--cyan-dark);
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 8px;
  background: #11181d;
}

.gallery-feature,
.gallery-wide {
  grid-column: span 2;
}

.gallery-feature {
  grid-row: span 2;
  min-height: 392px;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.05);
}

.video-showcases {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.video-heading {
  margin-bottom: 22px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #000000;
  aspect-ratio: 16 / 9;
  isolation: isolate;
}

.video-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.video-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, rgba(5, 7, 8, 0.76), rgba(5, 7, 8, 0.04));
}

.video-card::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 28px;
  height: 34px;
  content: "";
  background: #ffffff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  filter: drop-shadow(0 0 22px rgba(0, 173, 239, 0.85));
  transform: translate(-50%, -50%);
}

.video-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: #ffffff;
}

.video-card strong {
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.1;
}

.video-card small {
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card:hover img,
.video-card:focus-visible img {
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.05);
}

.footer {
  padding: 52px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 50%, rgba(0, 173, 239, 0.24), transparent 34%),
    linear-gradient(90deg, transparent 0%, rgba(0, 173, 239, 0.08) 100%),
    var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1fr);
  align-items: center;
  gap: 34px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.footer-contact {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(0, 173, 239, 0.24);
  border-radius: 8px;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.04);
}

.footer-contact strong {
  color: #ffffff;
  font-size: 1.18rem;
}

.footer-contact a {
  color: var(--cyan);
  font-weight: 800;
}

/* Powered By + Speech Bubble */
.powered-by {
  position: relative;
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 18px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}
.powered-by a {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  transition: color 0.2s;
}
.powered-by a:hover { color: var(--cyan); }
.powered-trigger {
  cursor: pointer;
  transition: color 0.2s;
  -webkit-user-select: none;
  user-select: none;
}
.powered-trigger:hover { color: rgba(255, 255, 255, 0.6); }

.speech-bubble {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}
.speech-bubble.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}
.bubble-tail {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #ffffff;
}
.speech-bubble p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: #1a1a1a;
}
.speech-bubble input {
  width: 80px;
  padding: 5px 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.82rem;
  outline: none;
  color: #1a1a1a;
  background: #f5f5f5;
}
.speech-bubble input:focus { border-color: var(--cyan); }
.speech-bubble button {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--cyan); color: #050708;
  border: none; border-radius: 50%;
  font-size: 0.9rem; font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s;
}
.speech-bubble button:active { transform: scale(0.9); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 82px clamp(16px, 4vw, 42px) 28px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-stage {
  position: relative;
  display: grid;
  min-height: min(68vh, 720px);
  place-items: center;
}

.lightbox-stage img {
  width: auto;
  max-width: 100%;
  max-height: 76vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
}

.lightbox-video {
  width: min(1100px, 100%);
  overflow: hidden;
  border-radius: 8px;
  background: #000000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
  aspect-ratio: 16 / 9;
}

.lightbox-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: rgba(0, 173, 239, 0.8);
  background: rgba(0, 173, 239, 0.22);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  width: 54px;
  height: 54px;
  justify-self: center;
  font-size: 1.35rem;
}

.lightbox-nav:disabled {
  cursor: default;
  opacity: 0.35;
}

.lightbox-caption {
  display: flex;
  grid-column: 2;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.lightbox-caption strong {
  color: #ffffff;
}

@keyframes kenburns {
  0% {
    transform: scale(1.08) translate3d(-1.8%, 1.4%, 0);
  }

  100% {
    transform: scale(1.18) translate3d(1.6%, -1.2%, 0);
  }
}

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

  #service .section-heading,
  #service .service-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero-slider {
    height: 84svh;
    min-height: 540px;
  }

  .service-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: fixed;
    flex-direction: row;
    gap: 16px;
    padding: 10px 18px;
    inset: 0 0 auto;
  }

  .brand img {
    width: 158px;
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 30;
    display: flex;
    width: min(82vw, 340px);
    height: 100svh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 120px 22px 28px; /* Slightly increased top padding to clear header */
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.3rem;
    background: #050708;
    box-shadow: -22px 0 70px rgba(0, 0, 0, 0.46);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 46px;
    justify-content: center;
    padding: 0 16px;
    border-radius: 6px;
  }

  .language-link img {
    width: 24px;
    height: 24px;
  }

  .language-link span {
    display: inline;
  }

  .hero-slider {
    height: 82svh;
    min-height: 560px;
  }

  .hero-slide {
    padding: 190px 22px 78px;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 10ch;
    font-size: 3rem;
  }

  .hero-arrow {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }

  .hero-arrow:hover,
  .hero-arrow:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .hero-arrow-prev {
    left: 14px;
  }

  .hero-arrow-next {
    left: auto;
    right: 14px;
  }

  .hero-dots {
    right: 20px;
    bottom: 39px;
  }

  .intro-grid {
    align-items: flex-start;
  }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intro-grid p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  #service .service-card,
  #service .service-card:nth-child(even) {
    transform: translate3d(0, 28px, 0);
  }

  #service .service-card.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .service-photo {
    height: 220px;
  }

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

  .gallery-feature,
  .gallery-wide,
  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

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

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 14px;
    padding: 78px 18px 24px;
  }

  .lightbox-stage {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 0;
  }

  .lightbox-stage img {
    max-height: 68vh;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 2;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }

  .lightbox-caption {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: column;
    gap: 6px;
  }
}
@keyframes ripple-effect {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.ripple {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  background: #3b82f6; /* bg-blue-500 */
  box-shadow: 0 0 10px rgba(0, 150, 255, 0.7), 0 0 20px rgba(0, 150, 255, 0.4);
  filter: blur(4px);
  animation: ripple-effect 1000ms ease-out forwards;
}

.spray-gun-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 140px;
  height: auto;
  pointer-events: none;
  z-index: 10000;
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.3));
}

.hose-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
}

.hotspot-dot {
  position: fixed;
  top: -2px; /* Center the 4px dot */
  left: -2px;
  width: 4px;
  height: 4px;
  background: black;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
}

/* Cursor Toggle Switch */
.cursor-toggle-wrapper {
  display: flex;
  align-items: center;
  margin-left: 10px;
  margin-top: -4px;
}

.cursor-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.cursor-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cursor-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: 0.4s;
  border-radius: 24px;
}

.cursor-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cursor-slider {
  background-color: #00AEEF;
}

input:checked + .cursor-slider:before {
  transform: translateX(20px);
}

@media (max-width: 980px) {
  .cursor-toggle-wrapper {
    display: none;
  }

  .floating-contact-btn {
    display: flex;
  }
}

/* Floating Contact Button for Mobile */
.floating-contact-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--cyan);
  color: #050708;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 174, 239, 0.4);
  z-index: 99;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.floating-contact-btn svg {
  width: 24px;
  height: 24px;
  transform: translateX(-2px) translateY(1px);
}

.floating-contact-btn:active {
  transform: scale(0.95);
}

/* Rotate Device Overlay */
.rotate-device-overlay {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  padding: 24px;
  border-radius: 16px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@keyframes show-rotate {
  0% { opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes rotate-phone-icon {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-90deg); }
  100% { transform: rotate(-90deg); }
}

.rotate-icon svg {
  width: 48px;
  height: 48px;
  color: white;
  animation: rotate-phone-icon 2s infinite ease-in-out alternate;
}

@media (max-width: 980px) and (orientation: portrait) {
  body.lightbox-open .lightbox-video .rotate-device-overlay {
    display: flex;
    animation: show-rotate 3.5s forwards;
  }
}

/* Floating Contact Button for Mobile */
.floating-contact-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: var(--cyan);
  color: #050708;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 174, 239, 0.4);
  z-index: 99;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.floating-contact-btn svg {
  width: 24px;
  height: 24px;
  transform: translateX(-2px) translateY(1px); /* optical centering for paper plane */
}

.floating-contact-btn:active {
  transform: scale(0.95);
}
