/* Smooth scrolling aur base reset */
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

/* CUSTOM COMPACT SCROLLBAR */
::-webkit-scrollbar {
  width: 6px; 
  height: 6px; 
}
::-webkit-scrollbar-track {
  background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #f97316, #ea580c); 
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #ea580c, #c2410c); 
}

* {
  scrollbar-width: thin;
  scrollbar-color: #f97316 #f1f5f9;
}

.ts-wrapper * {
  cursor: pointer;
  user-select: auto;
}

.ts-wrapper.single .ts-control {
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  padding: 0.75rem 1rem;
  min-height: 46px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  box-shadow: none;
  transition: all 0.3s ease;
}

.ts-wrapper.single.focus .ts-control {
  border-color: #fb923c;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.ts-wrapper .ts-dropdown {
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 1000;
}

.ts-wrapper .ts-dropdown .option {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

input[type="text"], input[type="tel"], input[type="email"] { cursor: text; user-select: auto; }
button, .btn-orange, .btn-outline, a, label, select { cursor: pointer; }
html {
  height: 100%;
  scroll-padding-top: 84px;
  background-color: #020617; /* Slate-950 fallback to prevent white gaps below footer */
}

body {
  font-family: Arial, "Segoe UI", system-ui, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #020617;
}

#footer, footer {
  margin-top: auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.4s ease-out forwards; }

/* Continuous Testimonial Carousel Animation */
.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollReviews 25s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-slide {
  width: calc(100vw - 48px);
  max-width: 380px;
  flex-shrink: 0;
}

/* Floating Widget UI design */
.floating-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 100;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f97316;
}
.floating-widget.show {
  transform: translateX(-50%) translateY(0);
}

/* Smart Card design */
.size-card {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  background: #f9fafb;
}
.size-card:hover { border-color: #fb923c; background: #fff7ed; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(249, 115, 22, 0.1); }
.size-radio:checked + label.size-card {
  border-color: #ea580c; background: linear-gradient(135deg, #ea580c, #f97316); color: #fff; transform: translateY(0); box-shadow: none;
}

/* Hero section */
.hero-bg {
  background: #1e293b;
  position: relative;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* BUTTON SHINE EFFECT */
@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-orange::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}
.btn-orange:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}
.btn-orange:active { transform: scale(0.98); }

.btn-outline {
  background: transparent;
  border: 2px solid #f97316;
  color: #f97316;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-outline:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
  border-color: transparent;
}
.btn-outline:active { transform: scale(0.98); }

/* Sticky premium Header bar */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

/* Overlay modal systems */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  z-index: 90;
  backdrop-filter: blur(8px);
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
}
.modal-overlay.active { display: flex; }

@keyframes modalPop {
  0% { transform: scale(0.9) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-thumb { background: #f97316; border-radius: 4px; }

/* Steps Progress bar */
.step-bar { display: flex; align-items: center; justify-content: center; gap: 4px; }
.sdot {
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; transition: all 0.4s ease; flex-shrink: 0;
}
@media (min-width: 640px) { .sdot { width: 34px; height: 34px; font-size: 13px; gap: 6px; } }
.sdot.active { background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.25); transform: scale(1.1); }
.sdot.done { background: #22c55e; color: #fff; }
.sdot.idle { background: #e5e7eb; color: #9ca3af; }
.sline { width: 18px; height: 2px; background: #e5e7eb; transition: background 0.4s ease; flex-shrink: 0; }
@media (min-width: 640px) { .sline { width: 36px; } }
.sline.done { background: #22c55e; }

/* Inputs structure */
.finput {
  width: 100%; min-height: 44px; padding: 10px 14px; border: 2px solid #e5e7eb; border-radius: 12px;
  font-size: 15px; outline: none; transition: border-color 0.3s, box-shadow 0.3s; background: #fafafa;
}
.finput:focus { border-color: #fb923c; background: #fff; box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); }
.flabel { font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; display: block; }

/* Radio Service Cards */
.svc-radio { position: absolute; opacity: 0; width: 0; height: 0; }
.svc-card {
  border: 2px solid #e5e7eb; border-radius: 14px; padding: 18px 14px; cursor: pointer; text-align: center;
  transition: all 0.3s ease; user-select: none; min-height: 128px; display: block; position: relative; background: #f9fafb;
}
.svc-card:hover { border-color: #f97316; background: #fff7ed; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(249, 115, 22, 0.1); }
input.svc-radio:checked + label.svc-card {
  border-color: #ea580c; background: #fff7ed; box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.15); transform: translateY(-2px);
}

/* Headings */
.sec-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #ea580c; text-align: center; }
.sec-title { font-size: clamp(1.65rem, 4vw, 2.5rem); font-weight: 800; color: #1e293b; text-align: center; line-height: 1.2; }
.sec-line { width: 42px; height: 3px; background: #cbd5e1; margin: 12px auto 0; transition: width 0.4s ease; border-radius: 2px;}
section:hover .sec-line { width: 80px; background: linear-gradient(90deg, #f97316, #ea580c); }

.svc-feat {
  background: #fff; border-radius: 16px; padding: 24px 20px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-top: 4px solid transparent;
}
.svc-feat:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); border-top-color: #f97316; }
.svc-feat:hover .bg-orange-100 i { transform: scale(1.15) rotate(5deg); transition: transform 0.3s; }
.svc-feat:hover .bg-blue-100 i { transform: scale(1.15) rotate(-5deg); transition: transform 0.3s; }
.svc-feat:hover .bg-green-100 i { transform: scale(1.15); transition: transform 0.3s; }

/* FAQ NOBROKER STYLE PILLS */
.faq-pill {
  padding: 8px 20px; border-radius: 99px; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease; border: 1px solid #e5e7eb; background: #fff; color: #64748b;
}
.faq-pill:hover { background: #fff7ed; color: #ea580c; border-color: #fdba74; }
.faq-pill.active { background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; border-color: transparent; box-shadow: 0 4px 10px rgba(234,88,12,0.3); }

/* FAQ ACCORDION CONTENT - max-height transition (no Tailwind 'hidden' needed) */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.faq-content.open {
  max-height: 600px;
}

/* Dynamic Toast styling */
#customToast {
  position: fixed; bottom: 24px; right: 24px; background: #1e293b; color: white; padding: 16px 24px;
  border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.3); z-index: 1000; display: flex; align-items: center;
  gap: 12px; transform: translateY(150%); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#customToast.show { transform: translateY(0); }

/* Slider Switch updates */
.premium-toggle-switch { position: relative; display: inline-flex; align-items: center; cursor: pointer; user-select: none; }
.premium-toggle-bg { width: 130px; height: 38px; background: #f3f4f6; border-radius: 99px; padding: 3px; display: flex; align-items: center; position: relative; border: 1px solid #e5e7eb; transition: all 0.3s ease; }
.premium-toggle-thumb { position: absolute; top: 3px; left: 3px; width: 62px; height: 30px; background: linear-gradient(135deg, #ea580c, #f97316); border-radius: 99px; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 3px 8px rgba(234, 88, 12, 0.3); }
.premium-toggle-switch.economy .premium-toggle-thumb { transform: translateX(60px); background: #64748b; box-shadow: 0 3px 8px rgba(100, 116, 139, 0.3); }
.contrasting-progress { height: 6px; border-radius: 999px; transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

/* Testimonial Cards */
.tcard {
  background: #fff; border-radius: 20px; padding: 30px 24px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative; transition: all 0.4s ease; border: 1px solid #f1f5f9; height: 100%;
}
.tcard:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: #fed7aa; }
.tcard::before { content: '"'; position: absolute; top: 10px; left: 20px; font-size: 70px; color: #f97316; opacity: 0.15; font-family: Georgia, serif; line-height: 1; transition: all 0.4s ease;}
.tcard:hover::before { opacity: 0.3; transform: scale(1.1); }

/* Gallery Hover Effects */
.gallery-item { transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.gallery-item:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 30px rgba(0,0,0,0.12); }
.gallery-item:hover .aspect-video { background-color: #fed7aa; color: #ea580c; transition: all 0.4s; }
.gallery-item:hover i { transform: scale(1.2); transition: transform 0.4s; }

/* Footer Quick Links Animation */
.footer-qlink {
  display: inline-flex; align-items: center; gap: 10px; color: #9ca3af; text-decoration: none; transition: all 0.3s ease; position: relative;
}
.footer-qlink:hover { color: #f97316; transform: translateX(6px); }
.footer-qlink i { font-size: 10px; transition: transform 0.3s ease; }
.footer-qlink:hover i { transform: translateX(4px); }

/* WhatsApp Glowing Bounce Animation (BORDER PULSE) */
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 5px 15px rgba(0,0,0,0.2); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 5px 15px rgba(0,0,0,0.2); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 5px 15px rgba(0,0,0,0.2); }
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.whatsapp-btn-fx {
  animation: floatBounce 3s ease-in-out infinite, pulse-green 2s infinite;
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Zoom on hover in gallery grid images */
.gallery-image-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.gallery-image-wrapper img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.08);
}

/* Lightbox active state smooth display */
#galleryLightbox.active {
  display: flex;
  opacity: 1;
}

#galleryLightbox.active #lightboxImg {
  opacity: 1;
  transform: scale(1);
}

/* Play button overlay */
.video-overlay-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.3);
  transition: background 0.3s ease;
}
.gallery-item:hover .video-overlay-play {
  background: rgba(15, 23, 42, 0.1);
}
.play-btn-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding-left: 3px; /* visual center for play icon */
}
.gallery-item:hover .play-btn-circle {
  transform: scale(1.15);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.6);
}

/* Logo custom animations and glowing effects */
@keyframes logoGlowPulse {
  0% {
    box-shadow: 0 0 6px rgba(249, 115, 22, 0.15), inset 0 0 6px rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.2);
  }
  100% {
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5), inset 0 0 10px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.6);
  }
}
.logo-glow {
  animation: logoGlowPulse 2.5s ease-in-out infinite alternate;
}
.logo-anim {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.group:hover .logo-anim {
  transform: scale(1.15) rotate(8deg);
}

/* Continuous CTA orange button pulse glow */
@keyframes orangePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.45), 0 4px 14px rgba(249, 115, 22, 0.3);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(249, 115, 22, 0), 0 4px 14px rgba(249, 115, 22, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0), 0 4px 14px rgba(249, 115, 22, 0.3);
  }
}
.btn-orange {
  animation: orangePulse 3s infinite;
}

/* ==========================================================================
   STEP 3 BOOKING INVENTORY UPGRADES (ORGANIZED & COMPACT ICONS)
   ========================================================================== */

/* Force inventory item cards to look gorgeous and compact */
.premium-item-card {
  display: flex;
  flex-direction: column;
  padding: 10px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  border: 1.5px solid #f1f5f9 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01) !important;
}

.premium-item-card:hover {
  border-color: #fdba74 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px rgba(249, 115, 22, 0.06) !important;
}

/* Selected state with orange branding */
.premium-item-card.selected {
  border-color: #ea580c !important;
  background: #fff7ed !important;
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.08) !important;
}

/* Make item SVGs (logos) compact and well-organized */
.premium-item-card .p-2.5 {
  padding: 5px !important;
  border-radius: 8px !important;
  background-color: rgba(249, 115, 22, 0.06) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(249, 115, 22, 0.05) !important;
  transition: all 0.3s ease !important;
  width: 28px !important;
  height: 28px !important;
}

.premium-item-card.selected .p-2.5 {
  background-color: #ea580c !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.premium-item-card svg {
  width: 17px !important;
  height: 17px !important;
  stroke-width: 2px !important;
  transition: transform 0.3s ease !important;
}

.premium-item-card:hover svg {
  transform: scale(1.1);
}

/* Category sidebar tabs inside modal */
.sidebar-cat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
}

.sidebar-cat-btn:hover {
  background: #f8fafc;
  color: #1e293b;
  border-color: #e2e8f0;
}

.sidebar-cat-btn.active {
  background: #fff7ed;
  color: #ea580c;
  border-color: #ffedd5;
}

.sidebar-cat-btn svg {
  width: 15px;
  height: 15px;
  stroke-width: 2px;
}

@media (max-width: 767px) {
  .sidebar-cat-btn {
    width: auto;
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Tactile counter compact buttons */
.tactile-counter {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  padding: 1px;
  width: max-content;
}

.premium-item-card.selected .tactile-counter {
  border-color: #fed7aa;
  background: #ffffff;
}

.tactile-btn {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #64748b;
  transition: all 0.2s ease;
}

.tactile-btn:hover:not(:disabled) {
  background: #e2e8f0;
  color: #1e293b;
}

.tactile-btn.plus-btn {
  background: #ea580c;
  color: #ffffff;
}

.tactile-btn.plus-btn:hover {
  background: #d97706;
}

.tactile-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* NoBroker Accordion and List Rows styles */
.subcat-header-active i.fa-chevron-down {
  transform: rotate(180deg);
}

.subcat-item-row {
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.2s ease;
}

.subcat-item-row:last-child {
  border-bottom: none;
}

.subcat-item-row:hover {
  background-color: rgba(249, 115, 22, 0.03);
}

/* Confetti Canvas Out-of-Flow to prevent trailing empty space under footer */
#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* Base HTML & Body backgrounds to prevent trailing whitespace gaps globally */
html, body {
  background-color: #020617 !important;
}

/* Radial progress circle transitions */
.radial-progress-circle {
  transition: stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.5s ease;
}

/* Premium dynamic number text scale/glow pop animation */
@keyframes textGlowPop {
  0% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(249, 115, 22, 0)); }
  50% { transform: scale(1.08); color: #ea580c; filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.4)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(249, 115, 22, 0)); }
}

.text-pop {
  animation: textGlowPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


