/* Custom Handcrafted Warm Luxury Design System for Sawda Spa Gulshan */
:root {
  --color-obsidian: #0F1015;
  --color-card-bg: rgba(24, 26, 34, 0.92);
  --color-gold-warm: #FFB800;
  --color-amber-gold: #D4AF37;
  --color-cream-luxury: #F8F1E5;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Keyframe Animations */
@keyframes goldPulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 184, 0, 0.3); }
  50% { box-shadow: 0 0 32px rgba(255, 184, 0, 0.75); }
}

@keyframes shimmerGold {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Gold Foil Metallic Text Gradient */
.gold-gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFB800 50%, #D4AF37 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 4s linear infinite;
}

/* Stat Card Styling - Warm Luxury */
.handcrafted-stat-card {
  background: linear-gradient(145deg, rgba(28, 30, 40, 0.95) 0%, rgba(16, 18, 24, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
}

.handcrafted-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 184, 0, 0.8);
  box-shadow: 0 15px 35px rgba(255, 184, 0, 0.25);
}

.stat-icon-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.2) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(255, 184, 0, 0.5);
  color: #FFB800;
}

/* Glass Cards & Service Cards */
.glass-card {
  background: linear-gradient(145deg, rgba(24, 26, 34, 0.94), rgba(15, 16, 21, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glass-card:hover {
  border-color: rgba(255, 184, 0, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.service-card-img-wrap {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

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

.service-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.service-card-content p {
  color: #A0A5B5;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* 3 VERTICAL FLOATING CIRCLE BUTTONS (RIGHT BOTTOM CORNER) */
.vertical-floating-stack {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.circle-float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.35rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.circle-float-btn:hover {
  transform: scale(1.15);
}

.circle-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.circle-btn-phone {
  background: linear-gradient(135deg, #1D9BF0, #0056B3);
}

.circle-btn-map {
  background: linear-gradient(135deg, #FFB800, #D4AF37);
  color: #0F1015;
}

/* LARGE CIRCULAR SOCIAL MEDIA ICONS (FOOTER) */
.social-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.social-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFB800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.social-icon-circle:hover {
  background: #FFB800;
  color: #0F1015;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
}

/* TOUCH SPARKLE RIPPLE ANIMATIONS */
.touch-sparkle-ring {
  position: fixed;
  pointer-events: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #FFB800;
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.8);
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 1;
  z-index: 999999;
  animation: ringExpand 0.75s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes ringExpand {
  0% { transform: translate(-50%, -50%) scale(0.2); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.8); opacity: 0; }
}

.touch-sparkle-dot {
  position: fixed;
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFB800;
  box-shadow: 0 0 10px #FFB800;
  z-index: 999999;
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.1, 0.8, 0.3, 1), opacity 0.6s ease;
}

/* FLOATING OFFER POPUP / TOAST NOTIFICATION */
.offer-popup-toast {
  position: fixed;
  bottom: 20px;
  left: 16px;
  z-index: 9995;
  background: linear-gradient(145deg, rgba(24, 26, 34, 0.96), rgba(15, 16, 21, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(16px);
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-popup-toast.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.offer-toast-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFB800;
  color: #0F1015;
  border: none;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
