/* ==========================================================================
   SHAH DEMOLISHERS - ULTRA-ELITE UI
   Engineered by KrrishWebSolutions.in
   ========================================================================== */

/* -----------------------------------------
   1. GLOBAL VARIABLES (Teal & Amber Theme)
   ----------------------------------------- */
:root {
  --primary: #0f766e;        /* Deep Teal */
  --primary-dark: #0a5c4b;   /* Midnight Teal */
  --accent: #f59e0b;         /* Safety Amber */
  --accent-hover: #d97706;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
  --shadow-hover: 0 25px 50px -12px rgba(15, 118, 110, 0.25);
  --shadow-glow: 0 0 20px rgba(37, 211, 102, 0.5);
  --transition-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Global Hero Gradient for uniform inner pages */
  --hero-overlay: linear-gradient(135deg, rgba(2, 44, 34, 0.92) 0%, rgba(15, 118, 110, 0.85) 100%);
}

/* -----------------------------------------
   2. BASE & TYPOGRAPHY
   ----------------------------------------- */
body { 
  font-family: 'Inter', sans-serif; 
  color: var(--text-main); 
  background-color: var(--bg-light); 
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden; 
}

h1, h2, h3, h4, h5, h6, .navbar-brand { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  letter-spacing: -0.03em; 
}

.max-w-600 { max-width: 600px; margin: 0 auto; }

/* -----------------------------------------
   3. GLOBAL ANIMATIONS
   ----------------------------------------- */
@keyframes shineSweep { 
  0% { left: -100%; opacity: 0; } 
  20% { left: 100%; opacity: 1; } 
  100% { left: 100%; opacity: 0; } 
}
@keyframes textGradientShift { 
  0% { background-position: 0% 50%; } 
  50% { background-position: 100% 50%; } 
  100% { background-position: 0% 50%; } 
}
@keyframes floatElement { 
  0% { transform: translateY(0px); } 
  50% { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.2); } 
  100% { transform: translateY(0px); } 
}
@keyframes floatBox {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
  100% { transform: translateY(0px); }
}
@keyframes pulse-wa { 
  0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 
  100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } 
}
@keyframes pulse-primary { 
  0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.7); } 
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(15, 118, 110, 0); } 
  100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(15, 118, 110, 0); } 
}
@keyframes pulse-outline { 
  0% { box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.4); } 
  70% { box-shadow: 0 0 0 10px rgba(15, 118, 110, 0); } 
  100% { box-shadow: 0 0 0 0 rgba(15, 118, 110, 0); } 
}
@keyframes blinkTerminal { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes codePulseGlow { 
  0%, 100% { text-shadow: 0 0 4px rgba(34, 197, 94, 0.4); } 
  50% { text-shadow: 0 0 12px rgba(34, 197, 94, 0.9); } 
}

/* Desktop Green Blinking Phone Number */
@keyframes blinkGreenText { 
  0%, 100% { color: #ffffff; text-shadow: none; border-color: rgba(255,255,255,0.2); } 
  50% { color: var(--whatsapp); text-shadow: 0 0 10px rgba(37, 211, 102, 0.6); border-color: var(--whatsapp); } 
}
.call-blink-effect { animation: blinkGreenText 1.5s infinite; transition: all 0.3s ease; }
.call-blink-effect i { color: inherit; }

/* -----------------------------------------
   4. SOLID NAVBAR & STANDARD LOGO
   ----------------------------------------- */
.navbar {
  background-color: #ffffff !important;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  padding: 10px 0 !important;
}
.navbar.nav-hidden { transform: translateY(-100%); }

.navbar-brand { 
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--primary-dark) !important; 
  font-weight: 800; 
  font-size: 1.6rem; 
  transition: transform 0.3s; 
  flex-shrink: 0;
}
.navbar-brand:hover { transform: scale(1.02); }

/* STANDARD DESKTOP LOGO SIZE */
.nav-logo { 
  height: 85px !important; 
  max-height: 85px !important; 
  width: auto !important; 
  max-width: 400px !important; 
  object-fit: contain !important; 
  object-position: left center !important;
  display: block !important;
}

.nav-link { color: var(--text-main) !important; font-weight: 600; padding: 0.5rem 1rem; position: relative; transition: 0.3s; }
.nav-link:hover { color: var(--primary) !important; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 3px; bottom: 0; left: 50%; background: linear-gradient(90deg, var(--primary), var(--accent)); transition: all 0.4s var(--transition-spring); transform: translateX(-50%); border-radius: 50px; }
.nav-link:hover::after, .nav-link.active::after { width: 80%; }

/* -----------------------------------------
   5. ULTRA-ELITE GLOWING CTA BUTTONS
   ----------------------------------------- */
.btn-glow-whatsapp { background: var(--whatsapp); color: white; border: none; position: relative; overflow: hidden; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); animation: pulse-wa 2s infinite; transition: all 0.4s var(--transition-spring); z-index: 1; }
.btn-glow-whatsapp::after, .btn-glow-primary::after, .btn-glow-outline::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.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: shineSweep 4s cubic-bezier(0.25, 1, 0.5, 1) infinite; z-index: 2; }
.btn-glow-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-5px) scale(1.03) !important; color: white; box-shadow: var(--shadow-glow); animation: none; }

.btn-glow-primary { background: linear-gradient(45deg, var(--primary), var(--primary-dark)); color: white; border: none; position: relative; overflow: hidden; box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.7); animation: pulse-primary 2s infinite; transition: all 0.4s var(--transition-spring); z-index: 1; border: 1px solid var(--accent); }
.btn-glow-primary:hover { transform: translateY(-3px) scale(1.03) !important; color: white; box-shadow: 0 10px 25px rgba(15, 118, 110, 0.5); animation: none; }

.btn-glow-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); position: relative; overflow: hidden; box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.4); animation: pulse-outline 2.5s infinite; transition: all 0.4s var(--transition-spring); z-index: 1; }
.btn-glow-outline:hover { background: var(--primary); color: white; transform: translateY(-3px) scale(1.03) !important; box-shadow: 0 10px 20px rgba(15, 118, 110, 0.3); border-color: var(--primary); animation: none; }

.btn-arrow-animate { transition: all 0.4s var(--transition-spring); color: var(--text-main); background: #ffffff; }
.btn-arrow-animate:hover { background: var(--primary) !important; color: white !important; transform: translateX(5px) scale(1.15) rotate(-15deg); box-shadow: 0 10px 20px rgba(15, 118, 110, 0.4); border-color: var(--primary) !important; }
.btn-arrow-animate i { transition: transform 0.3s ease; }
.btn-arrow-animate:hover i { transform: translateX(2px) rotate(15deg); }

/* -----------------------------------------
   6. SPLIT-SCREEN HERO & MEDIA SHOWCASE
   ----------------------------------------- */
.hero-section { min-height: 90vh; display: flex; align-items: center; padding-top: 140px; padding-bottom: 80px; position: relative; overflow: hidden; }

.media-showcase-box { border: 8px solid rgba(255, 255, 255, 0.95); border-radius: 28px; overflow: hidden; width: 100%; box-shadow: 0 30px 60px rgba(0,0,0,0.25); aspect-ratio: 4/3; max-height: 600px; background: #000; position: relative; transform: perspective(1200px) rotateY(-8deg) translateY(0); transition: all 0.6s var(--transition-spring); }
.media-showcase-box:hover { transform: perspective(1200px) rotateY(0deg) translateY(-10px) scale(1.02); box-shadow: 0 40px 80px rgba(0,0,0,0.35); border-color: var(--accent); }

.hero-media-anim { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); transition: transform 8s ease-out; }
.carousel-item.active .hero-media-anim { transform: scale(1); }

.slide-title-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%); padding: 50px 20px 20px 20px; text-align: left; z-index: 10; opacity: 0; transform: translateY(20px); transition: all 0.6s ease 0.3s; }
.carousel-item.active .slide-title-overlay { opacity: 1; transform: translateY(0); }

.hero-title { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.05; color: #ffffff; }
.trust-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); animation: floatBox 6s ease-in-out infinite; }

.carousel-indicators { margin-bottom: 15px; gap: 8px; z-index: 15; }
.carousel-indicators [data-bs-target] { width: 35px; height: 6px; border-radius: 10px; background-color: var(--accent); opacity: 0.4; transition: all 0.4s ease; border: none; }
.carousel-indicators .active { opacity: 1; background-color: #fff; width: 45px; box-shadow: 0 0 10px rgba(255,255,255,0.8); }

/* -----------------------------------------
   7. CARDS & GRIDS (Services & Process)
   ----------------------------------------- */
.service-card { background: white; border-radius: 24px; border: 1px solid rgba(0,0,0,0.03); overflow: hidden; transition: all 0.5s var(--transition-spring); box-shadow: var(--shadow-soft); height: 100%; display: flex; flex-direction: column; position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(15, 118, 110, 0.2); }
.img-wrapper { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--transition-smooth); }
.service-card:hover .img-wrapper img { transform: scale(1.1); }
.img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.4s; }
.service-card:hover .img-overlay { opacity: 1; }
.service-content { padding: 1.8rem; flex-grow: 1; display: flex; flex-direction: column; background: white; }

.interactive-card-anim { transition: all 0.4s var(--transition-spring); border: 1px solid rgba(0,0,0,0.05); }
.interactive-card-anim:hover { transform: translateY(-12px); border-color: var(--primary) !important; box-shadow: var(--shadow-hover) !important; }
.interactive-icon { transition: all 0.4s ease; }
.interactive-card-anim:hover .interactive-icon { transform: scale(1.15) rotate(5deg); background: var(--accent) !important; color: #000 !important; }

/* -----------------------------------------
   8. SERVICE DETAILS INNER PAGE
   ----------------------------------------- */
.service-media-box { border: 6px solid rgba(255, 255, 255, 0.95); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 16/10; background: #000; position: relative; }
.service-media-box video, .service-media-box img { width: 100%; height: 100%; object-fit: cover; }
.content-box { background: white; border-radius: 24px; padding: 40px; box-shadow: var(--shadow-soft); margin-bottom: 30px; border: 1px solid rgba(0,0,0,0.03); transition: transform 0.3s ease; }
.content-box:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: rgba(15, 118, 110, 0.1); }
.bhk-card { background: #ffffff; border: 2px solid #e2e8f0; border-radius: 20px; padding: 1.8rem 1.5rem; text-align: center; transition: all 0.4s var(--transition-spring); cursor: pointer; position: relative; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.bhk-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(15, 118, 110, 0.15); }
.bhk-card i { font-size: 2.5rem; color: var(--text-muted); transition: 0.3s; margin-bottom: 1rem; }
.bhk-card:hover i { color: var(--primary); transform: scale(1.1); }
.bhk-card .price-tag { font-size: 1.6rem; font-weight: 800; color: var(--primary); margin-top: auto; padding-top: 1.5rem; }
.sticky-widget { position: sticky; top: 120px; background: white; border-radius: 24px; padding: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); border: 2px solid var(--accent); z-index: 10; }
.check-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 15px; }
.check-list i { color: var(--primary); font-size: 1.2rem; margin-top: 3px; }

/* -----------------------------------------
   9. DYNAMIC COLLAGE PROJECTS SECTION
   ----------------------------------------- */
.dynamic-collage { display: grid; grid-template-columns: repeat(12, 1fr); gap: 15px; grid-auto-rows: 220px; }
.collage-box { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); background: #000; }
.collage-box img { width: 100%; height: 100%; object-fit: cover; transition: opacity 1.2s ease-in-out, transform 8s linear; opacity: 1; }
.collage-box:hover img { transform: scale(1.1); }
.collage-box:nth-child(1) { grid-column: span 8; grid-row: span 2; }
.collage-box:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.collage-box:nth-child(3) { grid-column: span 4; grid-row: span 1; }
.collage-box:nth-child(4) { grid-column: span 6; grid-row: span 1; }
.collage-box:nth-child(5) { grid-column: span 6; grid-row: span 1; }

/* -----------------------------------------
   10. REVIEWS & FAQ SECTIONS
   ----------------------------------------- */
.review-card { background: #ffffff; border-radius: 24px; padding: 2rem; height: 100%; border: 1px solid #f1f5f9; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s var(--transition-spring); display: flex; flex-direction: column; }
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(15, 118, 110, 0.2); }
.avatar-circle { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; color: white; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.accordion-item { border: none !important; border-bottom: 1px solid #e2e8f0 !important; }
.accordion-button { border-radius: 0 !important; box-shadow: none !important; color: var(--text-main) !important; transition: background 0.3s; }
.accordion-button:not(.collapsed) { background-color: rgba(15, 118, 110, 0.05) !important; color: var(--primary) !important; }
.accordion-button:focus { box-shadow: none !important; border-color: transparent !important; }

/* -----------------------------------------
   11. FORMS & MODALS
   ----------------------------------------- */
.modal-content { border-radius: 28px; border: none; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.3); }
.modal-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border: none; padding: 1.5rem 2rem; }
.form-control, .form-select { border-radius: 12px; padding: 14px 18px; border: 2px solid #e2e8f0; background: #f8fafc; font-size: 1rem; font-weight: 500; transition: all 0.3s; }
.form-control:focus, .form-select:focus { border-color: var(--accent); background: white; box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15); transform: translateY(-2px); }

/* -----------------------------------------
   12. FOOTER & FLOATING ACTIONS (FAB)
   ----------------------------------------- */
.hover-badge { transition: all 0.3s ease; }
.hover-badge:hover { background-color: var(--bg-light) !important; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important; }
.footer-link-item { transition: all 0.3s ease; display: inline-block; }
.footer-link-item:hover { transform: translateX(5px); color: #ffffff !important; }

.agency-signature { display: inline-flex; align-items: center; padding: 8px 18px; border-radius: 50px; background: rgba(34, 197, 94, 0.05); border: 1px solid rgba(34, 197, 94, 0.2); transition: all 0.3s ease; }
.agency-signature:hover { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.4); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(34, 197, 94, 0.1); }
.agency-brand-animated { display: inline-block; font-family: 'Courier New', Courier, monospace; font-weight: 800; color: #22c55e; letter-spacing: 0px; animation: codePulseGlow 3s infinite; }
.agency-brand-animated::after { content: '_'; display: inline-block; margin-left: 2px; font-weight: 900; animation: blinkTerminal 1s step-start infinite; }

.floating-container { position: fixed; bottom: 30px; right: 30px; z-index: 1050; display: flex; flex-direction: column; gap: 15px; }
.fab-btn { width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: white; box-shadow: 0 10px 25px rgba(0,0,0,0.25); transition: all 0.4s var(--transition-spring); text-decoration: none; position: relative; overflow: hidden; }

.fab-wa { background: var(--whatsapp); animation: pulse-wa 2s infinite !important; }
.fab-call { background: var(--primary); border: 2px solid var(--accent); animation: pulse-primary 2s infinite !important; }

.fab-btn:hover { transform: scale(1.15) rotate(-5deg) !important; color: white; animation: none !important; }
.fab-btn::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.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: shineSweep 4s cubic-bezier(0.25, 1, 0.5, 1) infinite; }

.scroll-top-btn { position: fixed; bottom: 190px; right: 37px; width: 50px; height: 50px; background: var(--text-main); color: white; border: none; border-radius: 50%; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s ease; z-index: 1045; }
.scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--accent); transform: translateY(-5px); color: var(--primary); }

/* -----------------------------------------
   13. REVEAL ENGINE
   ----------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px) scale(0.98); transition: all 0.8s var(--transition-smooth); }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }

/* -----------------------------------------
   14. MOBILE RESPONSIVE OVERRIDES (HORIZONTAL LOGO FIX)
   ----------------------------------------- */
@media (max-width: 991px) {
  .navbar-brand { 
      flex: 1; 
      width: 100%;
      /* 1. INCREASED WIDTH: Changed from 135px to 115px to give the logo more horizontal room */
      max-width: calc(100% - 115px) !important; 
      /* 2. REDUCED MARGIN: Brings the logo slightly closer to the icons to maximize size */
      margin-right: 5px !important; 
      display: flex;
      align-items: center;
  }
  .nav-logo { 
      width: 100% !important; 
      max-width: 100% !important; 
      height: auto !important; 
      /* 3. INCREASED HEIGHT: Bumped from 75px to 90px to allow vertical growth */
      max-height: 90px !important; 
      object-fit: contain !important; 
      object-position: left center !important; 
  }
  
  .mobile-nav-group { flex-shrink: 0 !important; }
  .mobile-nav-action-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; font-size: 1.1rem; text-decoration: none; position: relative; z-index: 1; }
  
  .mobile-call { background: linear-gradient(45deg, var(--primary), var(--primary-dark)); box-shadow: 0 4px 10px rgba(15,118,110,0.3); animation: pulse-primary 2s infinite; border: 1px solid var(--accent); }
  .mobile-wa { background: var(--whatsapp); box-shadow: 0 4px 10px rgba(37,211,102,0.3); animation: pulse-wa 2s infinite; }
  .navbar-toggler { padding: 0.25rem 0.5rem; border: none; box-shadow: none; outline: none; }
  
  .hero-section { padding-top: 140px !important; padding-bottom: 40px; min-height: auto; }
  
  /* Reduced Video Height to 300px so content below is visible on mobile */
  .media-showcase-box, .service-media-box { 
      aspect-ratio: auto !important; height: 300px !important; border-width: 4px; 
      margin-bottom: 2rem; background: var(--primary-dark); display: block; transform: none !important;
  }
  .media-showcase-box:hover, .service-media-box:hover { transform: none !important; box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-color: rgba(255, 255, 255, 0.95); }
  
  .hero-media-anim { height: calc(100% - 60px) !important; position: absolute; top: 0; left: 0; }
  
  .slide-title-overlay {
      position: absolute !important; bottom: 0 !important; left: 0 !important; right: 0 !important; height: 60px !important;
      background: var(--primary-dark) !important; padding: 0 10px !important; display: flex; align-items: center; justify-content: center; text-align: center;
      transform: none !important; opacity: 1 !important;
  }
  .slide-title-overlay h4 { font-size: 1.1rem !important; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-shadow: none !important; }
  
  .carousel-control-prev, .carousel-control-next { height: calc(100% - 60px) !important; }
  .carousel-indicators { bottom: 60px !important; margin-bottom: 8px !important; }

  .dynamic-collage { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .collage-box:nth-child(n) { grid-column: span 1; grid-row: span 1; }

  .trust-box { animation: none; } 
  .content-box { padding: 25px; } 
  .bhk-card { padding: 1.5rem 1rem; }
}

@media (max-width: 768px) {
  .mobile-sticky-cta { position: fixed; bottom: 0; left: 0; width: 100%; background: white; padding: 12px; display: flex; gap: 10px; box-shadow: 0 -5px 25px rgba(0,0,0,0.15); z-index: 1040; }
  .mobile-sticky-cta .btn { flex: 1; font-weight: 800; border-radius: 14px; padding: 12px 0; }
  body { padding-bottom: 75px; }
  
  .scroll-top-btn { bottom: 100px; right: 20px; width: 45px; height: 45px; font-size: 18px; } 
}