/* ============================================================================ */
/* MOBILE SLIDER NAVIGATION DOTS - All Sliders & Carousels */
/* ============================================================================ */

/* Slider dots container - centered at bottom */
.slider-dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 10;
  pointer-events: auto;
}

/* Individual dot - minimal white dot */
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Active dot - larger and fully opaque */
.slider-dot.active {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

/* Hover state */
.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* Touch/active state */
.slider-dot:active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.15);
}

/* ============================================================================ */
/* SLIDER DOTS POSITIONING */
/* ============================================================================ */

/* Section 0 (Timeline/Swiper) - lifted higher to avoid button overlap */
#section0 .slider-dots-container {
  bottom: 70px;
}

@media only screen and (max-width: 768px) {
  #section0 .slider-dots-container {
    bottom: 80px;
  }
}

@media only screen and (max-width: 640px) {
  #section0 .slider-dots-container {
    bottom: 85px;
  }
}

@media only screen and (max-width: 600px) {
  #section0 .slider-dots-container {
    bottom: 90px;
  }
}

@media only screen and (max-width: 480px) {
  #section0 .slider-dots-container {
    bottom: 95px;
  }
}

/* All other sliders/carousels - default 30px */
.slick-services .slider-dots-container {
  bottom: 30px;
}

/* Owl Carousels */
#works-page-img-carousel .slider-dots-container,
#news-page-img-carousel .slider-dots-container,
.home-page-subtitle-carousel .slider-dots-container,
#home-page-img-carousel .slider-dots-container {
  bottom: 20px;
}

/* Hide Leasing Office Slider dots (per user request) */
#section6 .slider-dots-container,
[data-anchor="leasing"] .slider-dots-container,
.office-slider .slider-dots-container {
  display: none !important;
}

/* ============================================================================ */
/* HIDE ON DESKTOP */
/* ============================================================================ */
@media only screen and (min-width: 1025px) {
  .slider-dots-container {
    display: none;
  }
}

