/* ══════════════════════════════════════════════════════════════
   PREVIEW ENHANCEMENTS CSS (Non-destructive)
   Neoflex Repairs - High Conversion & Interactive Features
══════════════════════════════════════════════════════════════ */

/* --- Top Announcement Bar --- */
.top-bar {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  padding: 8px 16px;
  font-size: 0.85rem;
  color: #f0f4ff;
  text-align: center;
  position: relative;
  z-index: 101;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar strong {
  color: #38bdf8;
  font-weight: 600;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a.top-phone-link {
  color: #10b981;
  font-weight: 700;
  text-decoration: none;
  background: rgba(16, 185, 129, 0.15);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  transition: all 0.2s ease;
}

.top-bar a.top-phone-link:hover {
  background: rgba(16, 185, 129, 0.3);
  transform: translateY(-1px);
}

/* --- Header Enhancement --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 6px 10px;
  border-radius: 99px;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.header-phone-btn:hover {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
  transform: translateY(-1px);
}

.header-phone-btn svg {
  width: 14px;
  height: 14px;
}

/* Adjust header to sit below top-bar */
.preview-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 13, 20, 0.88);
  border-bottom: 1px solid var(--border);
}

/* --- Google Reviews Trust Badge --- */
.trust-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.google-rating-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 99px;
  text-decoration: none;
  color: var(--text-1);
  font-size: 0.88rem;
  transition: all 0.2s ease;
}

.google-rating-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.08);
  transform: translateY(-2px);
}

.google-icon-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.google-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

/* --- Before / After Interactive Slider --- */
.before-after-section {
  padding: 80px 0;
  position: relative;
}

.ba-container {
  max-width: 850px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.15);
  border: 1px solid var(--border-hi);
  position: relative;
  user-select: none;
  background: #0d121d;
}

.ba-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: ew-resize;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  width: 50%;
  /* initial position */
}

.ba-image-overlay .ba-image {
  width: 850px;
  /* will be matched in JS */
  max-width: none;
}

.ba-badge {
  position: absolute;
  bottom: 18px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.ba-badge-before {
  left: 18px;
  background: rgba(239, 68, 68, 0.85);
  color: #fff;
}

.ba-badge-after {
  right: 18px;
  background: rgba(16, 185, 129, 0.85);
  color: #fff;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  z-index: 20;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #3b82f6;
  border: 3px solid #ffffff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.ba-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-2);
}

/* --- Gallery & Showcase Section --- */
.gallery-section {
  padding: 90px 0;
  background: rgba(15, 19, 32, 0.4);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-2);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  color: var(--text-1);
  border-color: rgba(59, 130, 246, 0.3);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.15);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #0d121f;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.06);
}

.gallery-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.25);
  z-index: 2;
}

.gallery-video-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.gallery-overlay-icon {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
}

.gallery-overlay-icon span {
  background: rgba(59, 130, 246, 0.9);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.gallery-caption {
  padding: 18px 20px;
  flex: 1;
}

.gallery-caption h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-1);
}

.gallery-caption p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* --- Service Area (Coverage Zones) --- */
.service-areas {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  margin: 50px 0;
  text-align: center;
}

.area-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 0.92rem;
  color: var(--text-1);
  font-weight: 500;
}

.area-pill svg {
  width: 14px;
  height: 14px;
  color: #38bdf8;
}

/* --- Lightbox Modal --- */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.94);
  backdrop-filter: blur(12px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption-text {
  margin-top: 16px;
  text-align: center;
  color: #f0f4ff;
  font-size: 1rem;
}

.lightbox-close-btn {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
}

/* --- Floating Bottom Conversion Bar (Mobile Sticky Bar) --- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 13, 20, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(59, 130, 246, 0.25);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none;
  z-index: 999;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.msb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  gap: 4px;
  transition: transform 0.15s ease;
}

.msb-btn:active {
  transform: scale(0.96);
}

.msb-btn svg {
  width: 20px;
  height: 20px;
}

.msb-call {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.msb-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.msb-quote {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

/* Floating WhatsApp desktop badge */
.floating-whatsapp-desktop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: all 0.3s ease;
}

.floating-whatsapp-desktop:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp-desktop svg {
  width: 32px;
  height: 32px;
}

/* --- Form Success Box --- */
.form-success-box {
  display: none;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: #d1fae5;
  margin-top: 20px;
}

.form-success-box h4 {
  color: #10b981;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════════════
   CONSOLE & CONTROLLER REPAIR SLIDER (PS5 & SWITCH)
══════════════════════════════════════════════════════════════ */
.console-slider-section {
  padding: 85px 0;
  position: relative;
  background: radial-gradient(circle at 50% 15%, rgba(59, 130, 246, 0.08) 0%, transparent 65%);
}

.slider-tabs-container {
  text-align: center;
  margin-bottom: 30px;
}

.slider-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  padding: 5px;
  gap: 6px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.slider-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--text-2);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-tab-btn:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.06);
}

.slider-tab-btn.active {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.slider-tab-btn .tab-badge {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

/* Slider Frame & Carousel */
.cs-slider-container {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.cs-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-hi);
  background: #0e1322;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 35px rgba(59, 130, 246, 0.12);
  position: relative;
}

.cs-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.cs-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  opacity: 0.35;
  transition: opacity 0.45s ease;
}

.cs-slide.active {
  opacity: 1;
}

/* Left Image Box */
.cs-slide-img-box {
  position: relative;
  min-height: 440px;
  background: #080c14;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cs-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.cs-slide-img-box:hover .cs-slide-img {
  transform: scale(1.05);
}

.cs-floating-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 14, 24, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.cs-floating-status {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  backdrop-filter: blur(8px);
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 3;
}

.cs-zoom-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #f1f5f9;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  transition: all 0.2s ease;
}

.cs-slide-img-box:hover .cs-zoom-button {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: scale(1.05);
}

/* Right Content Info Box */
.cs-slide-content {
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(19, 24, 38, 0.95), rgba(15, 19, 32, 0.98));
  position: relative;
}

.cs-device-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.cs-slide-title {
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--text-1);
  margin-bottom: 12px;
}

.cs-slide-desc {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 20px;
}

.cs-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-1);
  line-height: 1.4;
}

.cs-spec-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #10b981;
}

.cs-slide-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  transition: all 0.25s ease;
}

.cs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.cs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cs-btn-secondary:hover {
  color: #38bdf8;
}

/* Slider Nav Buttons */
.cs-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.cs-nav-btn:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
}

.cs-nav-btn.prev {
  left: -24px;
}

.cs-nav-btn.next {
  right: -24px;
}

.cs-nav-btn svg {
  width: 22px;
  height: 22px;
}

/* Bottom Controls (Dots & Counter) */
.cs-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 8px;
}

.cs-dots-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-dot {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cs-dot.active {
  width: 32px;
  background: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

.cs-slide-counter {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.08em;
}

.cs-slide-counter .current {
  color: #38bdf8;
  font-size: 1.05rem;
}

.cs-hint-swipe {
  font-size: 0.82rem;
  color: var(--text-3);
  display: none;
}

/* --- Responsive Rules for Preview --- */
@media (max-width: 900px) {
  .cs-slide {
    grid-template-columns: 1fr;
  }

  .cs-slide-img-box {
    min-height: 280px;
    max-height: 330px;
  }

  .cs-slide-content {
    padding: 28px 20px;
  }

  .cs-nav-btn.prev {
    left: 10px;
  }

  .cs-nav-btn.next {
    right: 10px;
  }

  .cs-hint-swipe {
    display: block;
  }
}

@media (max-width: 1120px) {
  .header-phone-btn {
    display: none;
    /* inside hamburger or sticky bar */
  }
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }

  .floating-whatsapp-desktop {
    display: none;
    /* replaced by sticky bar */
  }

  .top-bar {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .ba-container {
    border-radius: var(--radius-md);
  }

  /* Leave space at bottom so sticky bar does not cover footer */
  body {
    padding-bottom: 75px;
  }
}