/* ===== Brand-Specific Animations ===== */

@keyframes slideElastic {
  0%, 15% { transform: translateY(0); }
  20%, 35% { transform: translateY(-36px); }
  40%, 55% { transform: translateY(-72px); }
  60%, 75% { transform: translateY(-108px); }
  80%, 100% { transform: translateY(-144px); }
}
.animate-slide-list {
  animation: slideElastic 10s infinite;
}

@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(251, 191, 36, 0.3); }
  50% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.6); }
}
.gold-glow {
  animation: goldGlow 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-pulse {
  animation: whatsappPulse 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: fadeUp 0.6s ease forwards;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.animate-float {
  animation: cardFloat 4s ease-in-out infinite;
}

/* ===== Carousel ===== */

.carousel-slide {
  display: none;
  animation: carouselFade 0.5s ease forwards;
}
.carousel-slide.active {
  display: block;
}

@keyframes carouselFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: #06b6d4;
  width: 24px;
  border-radius: 4px;
}

/* ===== Special Effects ===== */

.glass {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bottom-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f59e0b, #f97316, #f59e0b);
}

.premium-gradient {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(249, 115, 22, 0.1));
}

/* ===== Unique Components ===== */

.chip-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #94a3b8;
  transition: all 0.25s ease;
  cursor: default;
  backdrop-filter: blur(2px);
}
.chip-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: 10px;
  background: rgba(148, 163, 184, 0.1);
  color: #94a3b8;
  transition: all 0.25s ease;
}
.chip-icon.chip-gold {
  border-color: rgba(251, 191, 36, 0.15);
  background: rgba(251, 191, 36, 0.04);
  color: #fbbf24;
}
.chip-icon.chip-gold i {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}
.chip-float.chip-sm {
  padding: 6px 14px;
  font-size: 11px;
  gap: 6px;
}
.chip-float.chip-sm i {
  width: 22px;
  height: 22px;
  font-size: 10px;
}
.chip-active {
  background: linear-gradient(135deg, #fbbf24, #f97316) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35) !important;
  transform: scale(1.04);
}
.chip-active i {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.chip-float {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(6px);
  outline: none;
  position: relative;
}
.chip-float i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.chip-float:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
}
.chip-float:active {
  transform: translateY(-1px) scale(0.98);
}

/* Legal - Gold */
.chip-float[data-color="legal"] {
  border-color: rgba(251, 191, 36, 0.2);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), transparent);
}
.chip-float[data-color="legal"] i {
  background: rgba(251, 191, 36, 0.18);
  color: #fbbf24;
}
.chip-float[data-color="legal"]:hover {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.2);
}
.chip-float[data-color="legal"].chip-selected {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
  border-color: rgba(251, 191, 36, 0.5);
  color: #fbbf24;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.25);
}
.chip-float[data-color="legal"].chip-selected i {
  background: #fbbf24;
  color: #0f172a;
}

/* Physical - Cyan */
.chip-float[data-color="physical"] {
  border-color: rgba(6, 182, 212, 0.2);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), transparent);
}
.chip-float[data-color="physical"] i {
  background: rgba(6, 182, 212, 0.18);
  color: #22d3ee;
}
.chip-float[data-color="physical"]:hover {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.2);
}
.chip-float[data-color="physical"].chip-selected {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
  border-color: rgba(6, 182, 212, 0.5);
  color: #22d3ee;
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.25);
}
.chip-float[data-color="physical"].chip-selected i {
  background: #06b6d4;
  color: #0f172a;
}

/* Valuation - Orange */
.chip-float[data-color="valuation"] {
  border-color: rgba(249, 115, 22, 0.2);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), transparent);
}
.chip-float[data-color="valuation"] i {
  background: rgba(249, 115, 22, 0.18);
  color: #fb923c;
}
.chip-float[data-color="valuation"]:hover {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
}
.chip-float[data-color="valuation"].chip-selected {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05));
  border-color: rgba(249, 115, 22, 0.5);
  color: #fb923c;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.25);
}
.chip-float[data-color="valuation"].chip-selected i {
  background: #f97316;
  color: #0f172a;
}

/* Risk - Red */
.chip-float[data-color="risk"] {
  border-color: rgba(244, 63, 94, 0.2);
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.08), transparent);
}
.chip-float[data-color="risk"] i {
  background: rgba(244, 63, 94, 0.18);
  color: #fb7185;
}
.chip-float[data-color="risk"]:hover {
  border-color: rgba(244, 63, 94, 0.5);
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.2);
}
.chip-float[data-color="risk"].chip-selected {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.05));
  border-color: rgba(244, 63, 94, 0.5);
  color: #fb7185;
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.25);
}
.chip-float[data-color="risk"].chip-selected i {
  background: #f43f5e;
  color: #0f172a;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.city-grid span,
.city-grid a {
  font-size: 12px;
  color: #64748b;
  transition: color 0.2s;
  cursor: default;
  text-decoration: none;
}
.city-grid span:hover,
.city-grid a:hover {
  color: #cbd5e1;
}

.popular-scale {
  transform: scale(1.05);
  z-index: 2;
}
@media (max-width: 900px) {
  .popular-scale { transform: none; }
}

.tagline-fade {
  transition: opacity 0.4s ease;
}

.plan-row {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.plan-row:hover {
  transform: translateX(4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-text { display: none; }
}

/* ===== Consultation Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.modal-close:hover { color: #0f172a; }
.modal-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(249, 115, 22, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #f59e0b;
}
.modal-box h3 {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  color: #0f172a;
  margin-bottom: 6px;
}
.modal-box .modal-sub {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}
.modal-box input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  box-sizing: border-box;
}
.modal-box input:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}
.modal-box input::placeholder { color: #94a3b8; }
.modal-box .field-group { margin-bottom: 14px; }
.modal-box .phone-group {
  display: flex;
  margin-bottom: 14px;
}
.modal-box .phone-prefix {
  display: inline-flex;
  align-items: center;
  padding: 14px 14px;
  border: 1.5px solid #e2e8f0;
  border-right: none;
  border-radius: 12px 0 0 12px;
  background: #f8fafc;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}
.modal-box .phone-group input {
  border-radius: 0 12px 12px 0;
  margin-bottom: 0;
}
.modal-btn {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}
.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}
.modal-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.modal-secure {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 16px;
}
.modal-secure i { color: #10b981; margin-right: 4px; }
.modal-msg {
  text-align: center;
  font-size: 14px;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: none;
}
.modal-msg.success { display: block; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.modal-msg.error { display: block; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ===== Landing Page (PropVerify) ===== */
.landing-stat {
  padding: 24px 16px;
  border-radius: 16px;
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.12);
  text-align: center;
}
.landing-stat .num {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.landing-stat .label {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}
.pain-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: all 0.3s ease;
}
.pain-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.pain-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.step-line { position: relative; }
.step-line:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 24px;
  width: 2px;
  height: calc(100% - 24px);
  background: linear-gradient(180deg, #f59e0b, #f97316);
}
@media (min-width: 768px) {
  .step-line:not(:last-child)::after { display: none; }
}
