/* RAMS TARGET GYM - Clean White Components Stylesheet (GPU Accelerated) */

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.whatsapp-float:hover {
  transform: scale3d(1.08, 1.08, 1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% { transform: scale3d(1, 1, 1); opacity: 0.8; }
  100% { transform: scale3d(1.4, 1.4, 1); opacity: 0; }
}

/* Mobile Sticky Bottom Action Bar */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  padding: 0.65rem 0.85rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  padding-left: calc(0.85rem + env(safe-area-inset-left, 0px));
  padding-right: calc(0.85rem + env(safe-area-inset-right, 0px));
  z-index: 980;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  transform: translate3d(0, 0, 0);
}

.mobile-action-bar-inner {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.mobile-action-bar .btn {
  flex: 1;
  min-height: 44px;
  padding: 0.55rem 0.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: block;
  }
  .whatsapp-float {
    bottom: calc(75px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  }
}

/* Location Card */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.status-badge.open {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.status-badge.closed {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

.contact-detail-list {
  margin-bottom: 1.8rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.contact-detail-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
