*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  background:#030303;
}

body{
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  position: relative;

  font-family:Inter,sans-serif;
  background:#030303;
  background:radial-gradient(circle at 20% 20%, #0a0a0a, #030303 60%);
  color:white;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

nav {
  padding-top: env(safe-area-inset-top);;
}

/* =========================
   CUSTOM SCROLLBAR — DELUXE THEME
========================= */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff6a00 #050505;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #ff6a00,
    #ff8c2a
  );
  border-radius: 999px;
  border: 2px solid #050505;
  box-shadow: 0 0 8px rgba(255,106,0,0.35);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #ff7a18,
    #ff9a3a
  );
  box-shadow: 0 0 14px rgba(255,106,0,0.6);
}

::-webkit-scrollbar-corner {
  background: #050505;
}

/* Layout */
.section {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1280px) {
  .section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Glass */
.glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .glass {
    backdrop-filter: none !important;
    background: rgba(255,255,255,0.06);
  }
}

/* Text Effects */
.glossy-text {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f2f2f2 40%,
    #ffffff 55%,
    #dcdcdc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-gradient {
  background: linear-gradient(135deg, #ff6a00, #ff9a2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glow System */
.orange-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;

  background-image: url("/images/GLOW/orange-glow2.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Base responsive size */
:root {
  --glow-base: clamp(800px, 42vw, 1600px);
}

.glow-lg {
  width: var(--glow-base);
  height: var(--glow-base);
}

.glow-md {
  width: calc(var(--glow-base) * 0.8);
  height: calc(var(--glow-base) * 0.8);
}

.glow-sm {
  width: calc(var(--glow-base) * 0.6);
  height: calc(var(--glow-base) * 0.6);
}

/* Intensities */
.glow-strong { opacity: 0.5; }
.glow-soft   { opacity: 0.35; }
.glow-subtle { opacity: 0.2; }

/* Arrow */
.float-arrow {
  animation: floatArrow 1.8s ease-in-out infinite;
}

@keyframes floatArrow {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* Cards */
.service-card {
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card--premium {
  border: 1px solid rgba(255,106,0,0.5);
  box-shadow:
    0 20px 60px rgba(255,106,0,0.18),
    inset 0 0 0 1px rgba(255,106,0,0.15);
}

.service-card--premium:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 30px 80px rgba(255,106,0,0.35),
    inset 0 0 0 1px rgba(255,106,0,0.25);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 60px rgba(255,106,0,0.25);
  border-color: rgba(255,106,0,0.4);
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;

  font-size: 11px;
  font-weight: 600;

  padding: 4px 10px;
  border-radius: 999px;

  background: linear-gradient(135deg,#ff6a00,#ff9a2a);
  color: white;

  box-shadow: 0 4px 14px rgba(255,106,0,0.45);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-feature {
  font-size: 14px;
  color: #cfcfcf;

  display: flex;
  align-items: center;
  gap: 8px;
}

.package-feature::before {
  content: "✓";
  color: #ff7a18;
  font-weight: 700;
}

.package-cta {
  margin-top: 18px;
  padding: 12px;

  border-radius: 12px;

  background: linear-gradient(135deg,#ff6a00,#ff9a2a);
  color: white;

  font-size: 14px;
  font-weight: 600;

  text-align: center;

  pointer-events: none;

  transition: all 0.25s ease;
}

.package-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,106,0,0.4);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 10%;
  height: 100%;

  background: linear-gradient(
    108deg,
    transparent,
    rgba(255,255,255,0.04),
    transparent
  );

  transform: skewX(-18deg);
  animation: none;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 50%);

  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover::after {
  opacity: 1;
}

@keyframes shineSweep {
  0% { left: -60%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

.service-card:hover::before {
  animation: shineSweep 1.2s ease;
}

.service-arrow {
  color: #ff7a18;
  font-size: 18px;
  opacity: 0.9;
  transition: transform 0.25s ease;
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
}

/* Video Scroll */
.scroll-container {
  display: flex;
  gap: 16px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  padding-left: 7vw;
  padding-right: 7vw;

  scrollbar-width: none;
  -ms-overflow-style: none;

  -webkit-overflow-scrolling: touch;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 86vw;   /* slightly smaller than viewport */
  max-width: 86vw;
  max-width: 425px;

  scroll-snap-align: center;
}

@media (min-width: 768px) {

  .scroll-container {
    overflow: visible;
    scroll-snap-type: none;

    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .video-card {
    flex: 1 1 0;
    max-width: 360px;
  }

}

/* =========================
   CAROUSEL DOTS
========================= */

.carousel-dots {
  pointer-events: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

.dot.active {
  width: 22px;
  background: linear-gradient(135deg, #ff6a00, #ff9a2a);
  box-shadow: 0 0 10px rgba(255,106,0,0.6);
}

.text-metallic {
  background: linear-gradient(135deg, #ffffff, #9a9a9a, #ffffff);
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.poster-img {
  will-change: opacity;
}

.custom-marker {
  width: 18px;
  height: 18px;
  background: #ff6a00;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255,106,0,0.7);
}

.leaflet-container {
  background: #090909 !important;
}

.map-recenter-btn {
  width: 42px;
  height: 42px;

  border-radius: 12px;

  background: linear-gradient(135deg,#ff6a00,#ff9a2a);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  border: none;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(255,106,0,0.35);

  transition: all .25s ease, opacity .2s ease;
  will-change: transform;
}

.map-recenter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 35px rgba(255,106,0,0.45);
}

/* hidden state */
.map-recenter-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(.9);
}