body {
  background-color: #0a0a0a;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #f60, #0f8);
  border-radius: 4px;
}
.gradient-text {
  background: linear-gradient(90deg, #f60, #f93, #0f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}
.data-stream {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #0f8, transparent);
  opacity: 0.5;
}
.animated-bg {
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 102, 0, 0.05) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 255, 136, 0.05) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 153, 51, 0.05) 0,
      transparent 50%
    );
}
.connection-line {
  position: relative;
  overflow: hidden;
}
.connection-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 102, 0, 0.4),
    transparent
  );
  animation: shimmer 2s infinite;
}
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 102, 0, 0.3);
  border-radius: 50%;
  border-top-color: #f60;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
#mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  border-left: 1px solid rgba(255, 102, 0, 0.2);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  padding-top: 70px;
  display: block !important;
}
#mobile-menu.show {
  right: 0;
}
#mobile-menu a {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
#mobile-menu a:hover {
  background: rgba(255, 102, 0, 0.1);
  padding-left: 28px;
}
#mobile-menu-btn {
  z-index: 1001;
  transition: all 0.3s ease;
}
#mobile-menu-btn.active {
  color: #f60;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}
.mobile-menu-overlay.show {
  display: block;
}
.mobile-menu-header {
  background: linear-gradient(to right, rgba(255, 102, 0, 0.1), transparent);
}
.mobile-menu-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.carousel-3d-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  perspective: 4000px;
}
.carousel-3d {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 350px;
  margin-top: -200px;
  margin-left: -150px;
  background: linear-gradient(145deg, #1e1e1e, #252525);
  border-radius: 20px;
  border: 1px solid rgba(255, 102, 0, 0.2);
  padding: 25px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(255, 102, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  cursor: pointer;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.carousel-slide.active {
  background: linear-gradient(145deg, #252525, #2a2a2a);
  border: 2px solid #f60;
  box-shadow:
    0 30px 70px rgba(255, 102, 0, 0.3),
    0 0 100px rgba(255, 102, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  z-index: 10;
}
.carousel-slide.featured {
  border: 2px solid #0f8;
}
.plan-header {
  text-align: center;
  margin-bottom: 0;
}
.plan-speed {
  font-size: 2rem;
  font-weight: 700;
  font-family: Orbitron, monospace;
  background: linear-gradient(90deg, #f60, #f93);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}
.plan-name {
  font-family: Orbitron, monospace;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #fff;
}
.plan-description {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 0;
}
.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 1px 0;
}
.plan-price span {
  font-size: 1.2rem;
  color: #888;
  font-weight: 400;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  flex-grow: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #aaa;
}
.plan-features li i {
  color: #0f8;
  margin-right: 10px;
  font-size: 0.9rem;
}
.plan-button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #f60, #f93);
  color: #0a0a0a;
  border: none;
  border-radius: 10px;
  font-family: Orbitron, monospace;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-size: 1rem;
  display: none;
}
.plan-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}
.carousel-controls {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 50;
}
.carousel-next,
.carousel-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.2);
  border: 2px solid rgba(255, 102, 0, 0.5);
  color: #f60;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-next:hover,
.carousel-prev:hover {
  background: rgba(255, 102, 0, 0.4);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}
.carousel-counter {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 25px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: Orbitron, monospace;
  font-size: 1.1rem;
}
.current-index {
  color: #f60;
  font-weight: 700;
}
.total-count {
  color: #888;
}
.carousel-dots {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 40;
  display: none;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}
.carousel-dot.active {
  background: #f60;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
  display: none;
}
.plan-category {
  font-size: 0.5rem;
  padding: 0.1rem 0.7rem;
  border-radius: 9999px;
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 5px;
  z-index: 10;
  font-weight: 700;
  text-transform: uppercase;
}
.plan-category.fiber {
  background: #0062ff;
  color: #fff;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.plan-category.air-fiber {
  background: #4818b8;
  color: #fff;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.price-card {
  background: linear-gradient(145deg, #1e1e1e, #252525);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  height: auto;
  min-height: 500px;
  max-height: none;
  overflow-y: visible;
}
.price-card.featured {
  background: linear-gradient(145deg, #252525, #2a2a2a);
  border: 2px solid #f60;
  box-shadow: 0 30px 70px rgba(255, 102, 0, 0.3);
}
.category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.category-badge.fiber {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #fff;
  border: 1px solid rgba(59, 130, 246, 0.5);
}
.category-badge.air-fiber {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #fff;
  border: 1px solid rgba(139, 92, 246, 0.5);
}
.filter-btn {
  transition: all 0.3s ease;
}
.filter-btn.active {
  background: linear-gradient(90deg, #f60, #f93) !important;
  color: #0a0a0a !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}
.container {
  max-width: 100%;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.info-card {
  background: linear-gradient(145deg, #1e1e1e, #252525);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}
.important-notice {
  border-left: 4px solid #f60;
  background: rgba(255, 102, 0, 0.1);
}
#real-map {
  border-radius: 12px;
  border: 1px solid rgba(255, 102, 0, 0.3);
}
.gm-style .gm-style-iw-c {
  background: #1a1a1a !important;
  color: #fff !important;
  border-radius: 8px !important;
}
.gm-style .gm-style-iw-t::after {
  background: #1a1a1a !important;
}
.gm-ui-hover-effect {
  filter: invert(1) !important;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 768px) {
  .carousel-3d-wrapper {
    height: 550px;
    max-width: 700px;
  }
  .carousel-slide {
    width: 250px;
    margin-left: -125px;
    padding: 20px;
  }
  .plan-speed {
    font-size: 2rem;
  }
  .plan-price {
    font-size: 2rem;
  }
  .carousel-controls {
    gap: 40px;
    bottom: 20px;
  }
  .carousel-next,
  .carousel-prev {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .carousel-counter {
    padding: 10px 10px;
    font-size: 1rem;
  }
  #real-map {
    height: 350px;
  }
}
@media (max-width: 640px) {
  .carousel-3d-wrapper {
    height: 550px;
    max-width: 600px;
  }
  .carousel-slide {
    width: 220px;
    margin-left: -110px;
    padding: 15px;
  }
  .plan-speed {
    font-size: 1.8rem;
  }
  .plan-price {
    font-size: 1.8rem;
  }
  .plan-features li {
    font-size: 0.8rem;
  }
  .carousel-controls {
    gap: 40px;
  }
  .carousel-next,
  .carousel-prev {
    width: 80px;
    height: 40px;
    font-size: 1rem;
  }
  .carousel-counter {
    padding: 1px 10px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
  #real-map {
    height: 300px;
  }
}
@media (max-width: 360px) {
  .carousel-3d-wrapper {
    height: 500px;
    max-width: 600px;
  }
  #real-map {
    height: 250px;
  }
}
#home .grid > div {
  width: 100%;
  max-width: 100%;
}
#ifugao-map {
  width: 100% !important;
  height: 100% !important;
  min-height: 450px;
}
.leaflet-map-container {
  height: 500px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 102, 0, 0.3);
  z-index: 10;
  overflow: hidden;
}
.leaflet-container {
  background: #1a1a1a !important;
  border-radius: 12px;
}
.custom-marker-hub {
  background: #f60;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 20px !important;
  height: 20px !important;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.custom-marker-hub::before {
  content: "📍";
  position: absolute;
  font-size: 20px;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 4px black);
}
.custom-marker-connected {
  background: #0f8;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 16px !important;
  height: 16px !important;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
  position: relative;
}
.custom-marker-connected::before {
  content: "📡";
  position: absolute;
  font-size: 16px;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 4px black);
}
.custom-marker-soon {
  background: #f33;
  border: 2px dashed #fff;
  border-radius: 50%;
  width: 14px !important;
  height: 14px !important;
  opacity: 0.9;
  position: relative;
}
.custom-marker-soon::before {
  content: "⏳";
  position: absolute;
  font-size: 16px;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 4px black);
}
.custom-marker-barangay {
  background: #fa3;
  border: 1.5px solid #fff;
  border-radius: 90%;
  width: 10px !important;
  height: 10px !important;
  opacity: 0.8;
  position: relative;
}
.custom-marker-barangay::before {
  content: "📍";
  position: absolute;
  font-size: 20px;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 4px black);
  white-space: nowrap;
}
.marker-label {
  position: absolute;
  background: rgba(255, 0, 0, 0.5);
  color: #fff;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1000;
  text-shadow: 0 1px 2px #000;
  padding: 2px 8px;
  line-height: 1;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: transparent;
}
.marker-label::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(0, 0, 0, 0.7);
}
/* Arc flight-path lines */
.curved-line {
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 12, 7;
  animation: arcFlow 3s linear infinite;
}

.curved-line.connected-line {
  stroke-width: 2;
  stroke-dasharray: 14, 7;
  animation: arcFlow 2.8s linear infinite;
  filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.7));
}

.curved-line.special-line {
  stroke-width: 2;
  stroke-dasharray: 12, 8;
  animation: arcFlow 3.5s linear infinite;
  filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.7));
}

.curved-line.barangay-line {
  stroke-width: 1.2;
  stroke-dasharray: 6, 6;
  animation: arcFlow 2s linear infinite;
  filter: drop-shadow(0 0 3px rgba(255, 170, 51, 0.5));
}

/* Dashes travel from hub outward along the arc */
@keyframes arcFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -80;
  }
}
@keyframes pulse-hub {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
  }
}
.custom-marker-hub {
  animation: pulse-hub 2s infinite;
}
.map-legend {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  z-index: 1000;
}
.map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #fff;
  margin-bottom: 4px;
}
.map-legend-item:last-child {
  margin-bottom: 0;
}
.leaflet-control-zoom a {
  background: #1a1a1a !important;
  color: #f60 !important;
  border: 1px solid rgba(255, 102, 0, 0.3) !important;
}
.leaflet-control-zoom a:hover {
  background: #2a2a2a !important;
  color: #0f8 !important;
}
.map-toggle-satellite {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 4px;
  padding: 6px 12px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.map-toggle-satellite:hover {
  background: rgba(255, 102, 0, 0.3);
  border-color: #f60;
}
.barangay-cluster {
  background: rgba(255, 170, 51, 0.3);
  border: 1px solid #fa3;
  border-radius: 50%;
  width: 30px !important;
  height: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.service-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: center;
  margin: 30px 0 20px;
  padding: 0 0 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: auto;
  scrollbar-width: thin;
  scrollbar-color: #ff6600 #1a1a1a;
}
.service-tabs::-webkit-scrollbar {
  height: 6px;
}
.service-tabs::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 10px;
}
.service-tabs::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #f60, #f93);
  border-radius: 10px;
}
.service-tabs::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #f93, #f60);
}
.service-tab {
  padding: 12px 24px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  border-radius: 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.service-tab.active,
.service-tab:hover {
  background: linear-gradient(90deg, #f60, #f93);
  color: #0a0a0a;
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}
.service-tab i {
  margin-right: 8px;
}
.carousel-container {
  width: 100%;
  margin: 40px 0 30px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
  width: fit-content;
}
.carousel-item {
  flex: 0 0 800px;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.carousel-item:hover {
  transform: scale(1.05);
  border-color: #f60;
  box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
  z-index: 10;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-320px * 6 - 20px * 6));
  }
}
.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin: 30px 0;
}
.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  border: 2px solid rgba(255, 102, 0, 0.2);
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background: #1a1a1a;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.image-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #f60;
  box-shadow: 0 20px 30px rgba(255, 102, 0, 0.3);
}
.image-card:hover img {
  transform: scale(1.1);
}
.image-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 20px 15px 15px;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.image-card:hover .image-card-overlay {
  transform: translateY(0);
}
.image-card-title {
  font-family: Orbitron, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.image-card-price {
  color: #f60;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.image-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f60;
  color: #0a0a0a;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.inquire-btn-small {
  background: rgba(255, 102, 0, 0.9);
  color: #0a0a0a;
  border: none;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.inquire-btn-small:hover {
  background: #f60;
  transform: scale(1.05);
}
.view-more-container {
  text-align: center;
  margin: 40px 0 20px;
}
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: 0 0;
  border: 2px solid #f60;
  color: #f60;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.view-more-btn:hover {
  background: #f60;
  color: #0a0a0a;
  transform: translateX(5px);
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}
.view-more-btn i {
  transition: transform 0.3s ease;
}
.view-more-btn:hover i {
  transform: translateX(5px);
}
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 16px;
  background: rgba(255, 102, 0, 0.05);
  border-radius: 20px;
  border: 1px dashed rgba(255, 102, 0, 0.3);
  margin: 30px 0;
}
.no-results i {
  font-size: 40px;
  color: #f60;
  margin-bottom: 15px;
  opacity: 0.5;
}
.loading-state {
  text-align: center;
  padding: 60px 20px;
}
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 102, 0, 0.3);
  border-radius: 50%;
  border-top-color: #f60;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto 20px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .service-tabs {
    gap: 6px;
    justify-content: flex-start;
    padding: 0 10px;
  }
  .service-tab {
    padding: 10px 10px;
    font-size: 10px;
  }
  .carousel-item {
    flex: 0 0 250px;
    height: 160px;
  }
  .images-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }
  .view-more-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
  .carousel-item {
    flex: 0 0 400px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .service-tab {
    padding: 8px 10px;
    font-size: 12px;
  }
  .carousel-item {
    flex: 0 0 400px;
    height: 250px;
  }
}
@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fixed.inset-0.z-50 {
  animation: lightboxFadeIn 0.3s ease;
}
.fixed.inset-0.z-50 .relative {
  animation: lightboxZoomIn 0.4s ease;
}
@keyframes lightboxZoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.fixed.inset-0.z-50 button {
  transition: all 0.3s ease;
}
.fixed.inset-0.z-50 button:hover {
  transform: scale(1.1);
}
.fixed.inset-0.z-50 .mt-4 {
  animation: slideUp 0.4s ease 0.1s both;
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.image-card {
  cursor: pointer;
}
.carousel-item {
  cursor: pointer;
}
.map-view-btn.active {
  background: linear-gradient(90deg, #f60, #f93);
  color: #0a0a0a;
}
@media (min-width: 1024px) {
  #store-location .sticky {
    position: sticky;
    top: 100px;
  }
}
#regular-map-container,
#street-view-container {
  transition: opacity 0.3s ease;
}
#store-pin-overlay {
  transition: opacity 0.5s ease;
}
@keyframes soft-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.animate-bounce {
  animation: soft-bounce 2s infinite;
}
.gm-style .gm-style-cc {
  opacity: 0.5;
}
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f60, #ff8533);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.back-to-top-btn.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  animation: pulse 2s infinite;
}
.back-to-top-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
  background: linear-gradient(135deg, #ff8533, #f60);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
  }
}
@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
.flip-container {
  perspective: 1000px;
  display: inline-block;
}
.flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: flipCycle 10s infinite ease-in-out;
}
@keyframes flipCycle {
  0% {
    transform: rotateY(0);
  }
  45% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(180deg);
  }
  95% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0);
  }
}
.flipper .back,
.flipper .front {
  position: relative;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flipper .back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
}
.flip-container:hover .flipper {
  animation-play-state: paused;
}
.fade-container {
  position: relative;
  height: 180px;
  margin-bottom: 0r;
  width: 100%;
}
.fade-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.fade-slide.gte {
  animation: fadeGTE 10s infinite ease-in-out;
}
.fade-slide.hitech {
  animation: fadeHitech 10s infinite ease-in-out;
}
@media (max-width: 768px) {
  .fade-container {
    height: 120px;
    margin-bottom: 0.25rem;
  }
}
@media (max-width: 473px) {
  .fade-container {
    height: 120px;
    margin-bottom: 0.25rem;
  }
}
@keyframes fadeGTE {
  0%,
  45% {
    opacity: 1;
    visibility: visible;
  }
  45.1%,
  49.9% {
    opacity: 0;
    visibility: hidden;
  }
  100%,
  50% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeHitech {
  0%,
  49.9% {
    opacity: 0;
    visibility: hidden;
  }
  50%,
  95% {
    opacity: 1;
    visibility: visible;
  }
  100%,
  95.1% {
    opacity: 0;
    visibility: hidden;
  }
}
.gradient-text {
  background: linear-gradient(90deg, #f60, #f93, #0f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-secondary {
  color: #f93;
}
.text-white-glow {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.fade-slide.gte h1,
.fade-slide.hitech h1 {
  animation: scaleIn 0.5s ease forwards;
}
@keyframes scaleIn {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeGTE {
  0% {
    opacity: 1;
    visibility: visible;
  }
  45% {
    opacity: 1;
    visibility: visible;
  }
  45.1% {
    opacity: 0;
    visibility: hidden;
  }
  49.9% {
    opacity: 0;
    visibility: hidden;
  }
  50% {
    opacity: 0;
    visibility: hidden;
  }
  95% {
    opacity: 0;
    visibility: hidden;
  }
  95.1% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeHitech {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  45% {
    opacity: 0;
    visibility: hidden;
  }
  45.1% {
    opacity: 0;
    visibility: hidden;
  }
  49.9% {
    opacity: 0;
    visibility: hidden;
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
  95% {
    opacity: 1;
    visibility: visible;
  }
  95.1% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.fade-slide.gte h1 span,
.fade-slide.hitech h1 span {
  display: inline-block;
  animation: glowPulse 4s infinite;
}
.fade-slide.hitech h1 span {
  animation: glowPulseHitech 4s infinite;
}
@keyframes glowPulseHitech {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(0, 77, 41, 0.856);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
  }
}
.promo-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease;
}
.promo-modal.show {
  display: flex;
}
.promo-modal-content {
  background: linear-gradient(145deg, #1e1e1e, #252525);
  border: 2px solid #f60;
  border-radius: 24px;
  padding: 30px 25px;
  width: 100%;
  max-width: 400px;
  max-height: 100vh;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(255, 102, 0, 0.4);
  animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 4px solid #fa3;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.promo-close {
  position: absolute;
  top: 0;
  right: 10px;
  color: red;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s,
    transform 0.2s;
  z-index: 10;
}
.promo-close:hover {
  color: #f60;
  transform: scale(1.1);
}
.promo-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f60, #fa3);
  color: #0a0a0a;
  font-family: Orbitron, sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 40px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  animation: badgePulse 1.5s infinite;
  box-shadow: 0 0 15px #f60;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 15px #f60;
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 25px #fa3;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 15px #f60;
  }
}
.promo-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 102, 0, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  flex-shrink: 1;
  min-height: 0;
}
.promo-image {
  width: 100%;
  height: auto;
  display: block;
  background-color: #1a1a1a;
  max-height: 100%;
  object-fit: contain;
}
.shimmer-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.promo-title {
  font-family: Orbitron, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #f60, #fa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
  flex-shrink: 0;
}
.promo-text {
  color: #ddd;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
}
.highlight {
  color: #f60;
  font-weight: 700;
  background: rgba(255, 102, 0, 0.2);
  padding: 2px 8px;
  border-radius: 20px;
}
.cta-wrapper {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}
.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #f60, #f93);
  color: #0a0a0a;
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 0 20px #f60;
  animation: pulse 1.5s infinite;
}
.promo-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #f93, #f60);
  box-shadow: 0 0 30px #f60;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px #f60;
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 30px #f93;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px #f60;
  }
}
.hand-pointer {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: handFloat 1.2s infinite ease-in-out;
  margin-top: -5px;
}
.hand-bounce {
  font-size: 32px;
  color: #fa3;
  filter: drop-shadow(0 0 8px #ff6600);
}
.hand-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fa3;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: -5px;
  border: 1px solid #f60;
}
@keyframes handFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.promo-footer {
  font-size: 0.7rem;
  color: #777;
  margin-top: 10px;
  border-top: 1px solid #333;
  padding-top: 10px;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .promo-modal-content {
    padding: 50px 5px;
    max-height: 98vh;
  }
  .promo-title {
    font-size: 1rem;
  }
  .promo-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .hand-pointer {
    display: none;
  }
}
#promo-container > * {
  width: 100%;
  max-width: 350px;
}
@media (min-width: 470px) {
  #promo-container > * {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 1024px) {
  #promo-container > * {
    width: calc(25% - 0.75rem);
  }
}
.promo-card .hover-indicator {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.promo-card:hover .hover-indicator {
  opacity: 1;
}
