/* TALO Home Services CSS Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* CSS Variables & Design Tokens */
:root {
  --primary: #101D3A;
  /* Deep Navy Blue from Talo Logo */
  --primary-dark: #081021;
  /* Richer Dark Navy */
  --primary-light: #F0F4FA;
  /* Soft Blue Slate Tint */
  --accent: #E5A93C;
  /* Premium Gold/Amber Accent from Talo Logo */
  --accent-light: #FFF8EE;
  /* Soft Gold Tint */
  --success: #22C55E;
  --danger: #EF4444;
  --warning: #E5A93C;
  /* Aligned with gold accent */
  --bg: #FFFFFF;
  --white: #FFFFFF;
  --card: #FFFFFF;
  --text: #0F192E;
  /* Dark Slate Navy for readable text */
  --text2: #3E4D68;
  /* Slate gray secondary text */
  --text3: #8A99AD;
  /* Light slate gray tertiary text */
  --border: #E2E8F0;
  /* Modern blue-gray border */
  --shadow: 0 4px 16px rgba(16, 29, 58, 0.05);
  --shadow-lg: 0 10px 32px rgba(16, 29, 58, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --nav-h: 68px;
  --bottom-h: 64px;
  --font-body: 'Open Sans', sans-serif;
  --font-head: 'Poppins', sans-serif;
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(16, 29, 58, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Mobile-first Layout (Under 1024px) */
@media (max-width: 1023px) {

  html,
  body {
    overflow-x: hidden;
  }

  #main-content {
    margin-top: var(--nav-h);
    margin-bottom: var(--bottom-h);
    width: 100%;
    padding: 16px 12px 24px;
  }
}

/* Desktop Layout (1024px and up) */
@media (min-width: 1024px) {
  :root {
    --nav-h: 78px;
    --bottom-h: 0px;
  }

  #main-content {
    margin-top: var(--nav-h);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 20px 48px;
    min-height: calc(100vh - var(--nav-h));
  }
}

/* Common Page transition utilities */
.page-load-anim {
  animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, rgba(229, 169, 60, 0.12) 25%, #EBEBEB 50%, rgba(229, 169, 60, 0.12) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Header Styles */
#app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 29, 58, 0.05);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon-box {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
}

.logo-text-box h1 {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-text-box span {
  font-size: 9px;
  color: var(--text3);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.city-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 10px;
}

.city-indicator svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-btn {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.header-btn-call {
  background: linear-gradient(135deg, var(--primary), #101D3A);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(16, 29, 58, 0.18);
  gap: 6px;
}

.header-btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16, 29, 58, 0.22);
}

.header-btn-hamburger {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 4.5px;
}

.header-btn-hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Header Hamburger Trigger Open */
.header-btn-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header-btn-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.header-btn-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Desktop navbar options */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  #app-header {
    padding: 0 48px;
    transition: padding 0.25s;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .desktop-nav a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text2);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.2s;
  }

  .desktop-nav a:hover {
    background: var(--primary-light);
    color: var(--primary);
  }

  .desktop-nav a.active {
    background: var(--primary);
    color: var(--white);
  }

  .header-btn-hamburger {
    display: none !important;
  }
}

@media (min-width: 1140px) {
  #app-header {
    padding: 0 calc((100vw - 1100px) / 2);
  }
}

/* Mobile Bottom Navigation Styles */
#bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--bottom-h);
  background: var(--white);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.05);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 200;
}

.bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  flex: 1;
  padding: 6px 0;
  transition: transform 0.15s;
}

.bnav-item:active {
  transform: scale(0.92);
}

.bnav-icon-box {
  color: var(--text3);
  transition: color 0.2s;
  width: 22px;
  height: 22px;
}

.bnav-item span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text3);
  transition: color 0.2s;
}

.bnav-item.active .bnav-icon-box,
.bnav-item.active span {
  color: var(--primary);
}

.bnav-item-whatsapp {
  position: relative;
}

.bnav-item-whatsapp .bnav-icon-box {
  background: linear-gradient(135deg, #2FD671, #128C7E);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  margin-top: -6px;
}

.bnav-item-whatsapp span {
  color: #25D366 !important;
  font-weight: 700;
}

/* Responsive Hide Bottom Nav on Desktop */
@media (min-width: 1024px) {
  #bottom-nav {
    display: none !important;
  }
}

/* Floating WhatsApp Chat Button for Desktop */
.talo-whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF !important;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
}

.talo-whatsapp-floating:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Hide floating button on mobile drawer viewports to avoid overlapping with bottom bar */
@media (max-width: 1023px) {
  .talo-whatsapp-floating {
    display: none !important;
  }
}

/* Nav Drawer (Side menu) overlay */
#drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 53, 0.4);
  backdrop-filter: blur(4px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Drawer Container */
#drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--white);
  z-index: 260;
  box-shadow: -6px 0 30px rgba(26, 16, 53, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

#drawer-menu.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.drawer-close-btn:hover {
  transform: rotate(90deg);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 10px;
}

.drawer-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 12px 8px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.drawer-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 2px;
}

.drawer-nav-item:hover,
.drawer-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.drawer-nav-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav-text {
  flex: 1;
}

.drawer-nav-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
}

.drawer-nav-sub {
  font-size: 10px;
  color: var(--text3);
}

.drawer-nav-arrow {
  color: var(--text3);
  font-weight: 700;
}

.drawer-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.drawer-footer-call {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #101D3A);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 29, 58, 0.15);
}

/* Home Banner Image Slider */
.slider-container {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary), #101D3A);
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slide-item {
  min-width: 100%;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 16, 53, 0.8) 20%, rgba(26, 16, 53, 0.2) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  padding: 16px 20px 24px;
  width: 100%;
  max-width: 600px;
  color: var(--white);
}

.slide-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: inline-block;
}

.slide-content h2 {
  font-size: clamp(18px, 4vw, 32px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slide-content p {
  font-size: clamp(11px, 2.5vw, 14px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.slide-cta-btn {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 11px;
  padding: 6px 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

.slide-cta-btn:hover {
  transform: translateY(-1px);
}

/* Slider indicators */
.slider-indicators {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: flex;
  gap: 5px;
  z-index: 4;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  width: 20px;
  border-radius: 4px;
  background: var(--white);
}

/* Slide arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}

.slider-arrow:hover {
  background: var(--white);
}

.slider-arrow-left {
  left: 10px;
}

.slider-arrow-right {
  right: 10px;
}

/* Custom Banner Progress Bar */
.slide-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.6);
  z-index: 4;
  width: 0;
  transition: width linear;
}

/* Search engine block */
.search-container {
  margin: 16px 0;
  position: relative;
}

.search-bar-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid rgba(16, 29, 58, 0.08);
  border-radius: 50px;
  padding: 6px 6px 6px 16px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar-wrap:focus-within {
  border-color: rgba(16, 29, 58, 0.22);
  box-shadow: var(--shadow-lg);
}

.search-icon-lens {
  color: var(--text3);
  margin-right: 8px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13.5px;
  color: var(--text);
  padding: 6px 0;
  min-width: 0;
}

.search-input::placeholder {
  color: var(--text3);
}

.search-submit-btn {
  border: none;
  background: linear-gradient(135deg, var(--primary), #101D3A);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(16, 29, 58, 0.2);
  transition: transform 0.2s;
}

.search-submit-btn:hover {
  transform: scale(1.05);
}

/* Autocomplete suggestion dropdown */
.search-suggestions-box {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  overflow: hidden;
  display: none;
}

.search-suggestions-box.visible {
  display: block;
}

.suggestion-header {
  font-size: 9px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #F8FAFC;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.suggestion-item:hover {
  background: var(--primary-light);
}

.suggestion-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.suggestion-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.suggestion-category {
  font-size: 10.5px;
  color: var(--text3);
  margin-top: 1px;
}

/* Categories Section styles */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.section-link {
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

/* Mobile Category Horizontal Swipe (No awkward cuts or wrapping holes) */
.categories-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 4px 10px;
  margin-bottom: 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.categories-grid::-webkit-scrollbar {
  display: none;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: var(--shadow);
  flex: 0 0 calc(25% - 8px);
  /* Reduced card width to fit more on screen (smaller size) */
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 29, 58, 0.1);
}

.category-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-emoji {
  font-size: 22px;
  /* Slightly smaller emoji for smaller cards */
  position: absolute;
  z-index: 2;
}

.category-card-body {
  padding: 4px 6px;
  /* Reduced padding to save vertical space */
  text-align: center;
  background: var(--white);
}

.category-name {
  font-size: 10px;
  /* Slightly smaller text size for smaller cards */
  font-weight: 700;
  line-height: 1.3;
}

/* Category grid responsive on desktop (5 cols) */
@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }

  .category-name {
    font-size: 12px;
    /* Slightly smaller name text on desktop */
  }
}

/* Horizontal scroller */
.horizontal-scroll-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Horizontal Service card */
.service-card-horizontal {
  min-width: 160px;
  max-width: 160px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.22s;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.service-card-horizontal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 29, 58, 0.1);
}

.service-card-image {
  height: 96px;
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.service-card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 32px;
}

.service-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: auto;
}

.service-card-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.service-card-original-price {
  font-size: 10px;
  color: var(--text3);
  text-decoration: line-through;
}

.service-card-discount {
  font-size: 9.5px;
  color: var(--success);
  font-weight: 700;
  margin-left: auto;
}

/* Service card responsive grid on desktop */
@media (min-width: 1024px) {
  .horizontal-scroll-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    overflow-x: visible;
  }

  .service-card-horizontal {
    min-width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
  }

  .service-card-image {
    height: 130px;
  }

  .service-card-title {
    font-size: 13.5px;
    height: 38px;
  }

  .service-card-price {
    font-size: 15px;
  }
}

/* How It Works step indicators styling */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.step-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.step-info h4 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.step-info p {
  font-size: 11.5px;
  color: var(--text2);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Why Choose Us styling */
.why-container {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.why-card h4 {
  font-size: 12.5px;
  font-weight: 700;
}

.why-card p {
  font-size: 10.5px;
  color: var(--text2);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .why-container {
    padding: 32px 40px;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* Customer Reviews styling */
.reviews-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 240px;
  max-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.review-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.reviewer-name {
  font-size: 12.5px;
  font-weight: 700;
}

.reviewer-verified-tag {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #ECFDF5;
  color: #047857;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

.reviewer-verified-tag svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
}

.review-stars {
  color: var(--warning);
  font-size: 11px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.review-service-badge {
  font-size: 9.5px;
  background: rgba(229, 169, 60, 0.12);
  color: var(--primary);
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-write-btn {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(16, 29, 58, 0.18);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  padding: 12px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  transition: all 0.2s;
}

.review-write-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

@media (min-width: 768px) {
  .reviews-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow-x: visible;
  }

  .review-card {
    min-width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
  }
}

/* Projects Gallery styling */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-body {
  padding: 8px 10px;
}

.project-title {
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.project-location {
  font-size: 9.5px;
  color: var(--text3);
  font-weight: 600;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .project-card {
    border-radius: var(--radius);
  }
}

/* Page Sub-header Layout */
.page-header-strip {
  border-bottom: 1px solid var(--border);
  padding: 12px 0px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  margin-bottom: 16px;
}

.back-arrow-btn {
  border: none;
  background: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}

.back-arrow-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.page-header-title h2 {
  font-size: 18px;
  line-height: 1.2;
}

.page-header-sub {
  font-size: 11px;
  color: var(--text3);
  font-weight: 500;
}

/* Service List detailed vertical layout cards */
.detailed-service-card {
  background: var(--white);
  border: 1.5px solid #EEEEF2;
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.detailed-card-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex: 1;
}

.detailed-card-image {
  width: 105px;
  min-width: 105px;
  aspect-ratio: 1;
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.detailed-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detailed-card-info {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.detailed-card-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.detailed-card-description {
  font-size: 10.5px;
  color: var(--text3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  margin-bottom: 6px;
}

.detailed-card-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #FFF8E1;
  color: #B45309;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  width: fit-content;
}

.detailed-card-rating-pill svg {
  fill: #F59E0B;
}

.detailed-card-middle {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 0 12px 10px;
}

.detailed-chip {
  font-size: 9px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(16, 29, 58, 0.08);
  padding: 2px 8px;
  border-radius: 50px;
}

.detailed-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.detailed-card-price-block {
  display: flex;
  flex-direction: column;
}

.detailed-card-price-label {
  font-size: 8px;
  color: var(--text3);
  text-transform: uppercase;
  font-weight: 700;
}

.detailed-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.detailed-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.detailed-card-original {
  font-size: 11px;
  color: var(--text3);
  text-decoration: line-through;
}

.detailed-card-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(16, 29, 58, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.detailed-card-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1.5px);
  box-shadow: 0 5px 14px rgba(16, 29, 58, 0.22);
}

.detailed-card-btn:active {
  transform: scale(0.95);
}

/* Category view list styling for desktop grids */
#cat-services-list {
  display: block;
  width: 100%;
}

@media (min-width: 1024px) {
  .detailed-service-card {
    margin: 0;
    height: 100%;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .detailed-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(16, 29, 58, 0.12);
    border-color: rgba(16, 29, 58, 0.25);
  }

  .detailed-card-top {
    flex: 1;
  }

  .detailed-card-image {
    width: 135px;
    min-width: 135px;
  }

  .detailed-card-title {
    font-size: 15.5px;
  }

  .detailed-card-description {
    font-size: 12px;
  }
}

/* Service Detail View layout */
.detail-layout-container {
  display: flex;
  flex-direction: column;
  background: #F8F8F8;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.detail-top-hero {
  background: var(--white);
  border-bottom: 8px solid #E2E8F0;
  display: flex;
  flex-direction: column;
}

.detail-hero-image {
  width: 100%;
  height: 200px;
  background: var(--primary-light);
  overflow: hidden;
}

.detail-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-info {
  padding: 16px;
}

.detail-badge-pill {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 6px;
}

.detail-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 6px;
}

.detail-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 12px;
}

.detail-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.detail-stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
}

.detail-stat-item-rating {
  background: #FFF8E1;
  color: #B45309;
  padding: 2px 8px;
  border-radius: 50px;
}

.detail-stat-item-rating svg {
  fill: #F59E0B;
}

.detail-stat-item-bookings {
  color: var(--text3);
}

/* Detail view lists sections */
.detail-section {
  background: var(--white);
  padding: 18px 16px;
  margin-bottom: 8px;
}

.detail-section-title {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text3);
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text2);
}

.detail-list-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-list-icon.inc {
  background: #ECFDF5;
  color: var(--success);
}

.detail-list-icon.exc {
  background: #FEF2F2;
  color: var(--danger);
}

/* Service Detail view responsive desktop layout */
@media (min-width: 1024px) {
  .detail-layout-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .detail-top-hero {
    grid-column: 1 / span 2;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: row;
    overflow: hidden;
  }

  .detail-hero-image {
    width: 45%;
    height: 280px;
  }

  .detail-hero-info {
    flex: 1;
    padding: 32px;
  }

  .detail-title {
    font-size: 24px;
  }

  .detail-desc {
    font-size: 13.5px;
  }

  .detail-section {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 0;
  }
}

/* Sticky Bottom Booking Bar */
.booking-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
  z-index: 150;
}

.booking-bar-price-box {
  display: flex;
  flex-direction: column;
}

.booking-bar-price-label {
  font-size: 8px;
  color: var(--text3);
  text-transform: uppercase;
  font-weight: 700;
}

.booking-bar-price-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.booking-bar-price-original {
  font-size: 11px;
  color: var(--text3);
  text-decoration: line-through;
}

.booking-bar-btn {
  background: linear-gradient(135deg, var(--primary), #101D3A);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 29, 58, 0.18);
  transition: all 0.2s;
}

.booking-bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16, 29, 58, 0.22);
}

@media (min-width: 1024px) {
  .booking-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    border-radius: 16px 16px 0 0;
    padding: 14px 24px;
  }
}

/* Stepper Booking Steps Layout */
.stepper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.step-header-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.step-header-item::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 2.5px;
  background: var(--border);
  z-index: 1;
}

.step-header-item:last-child::after {
  display: none;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text3);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.25s;
}

.step-header-item.active .step-circle {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(16, 29, 58, 0.2);
}

.step-header-item.done .step-circle {
  background: var(--success);
  color: var(--white);
}

.step-header-item.done::after {
  background: var(--success);
}

.step-circle-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text3);
  margin-top: 4px;
  text-transform: uppercase;
}

.step-header-item.active .step-circle-label {
  color: var(--primary);
}

.booking-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto 32px;
}

@media (min-width: 1024px) {
  .booking-form-card {
    padding: 32px;
  }
}

.booking-step-view {
  display: none;
}

.booking-step-view.active {
  display: block;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  display: block;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #F8FAFC;
  outline: none;
  font-size: 13.5px;
  transition: border-color 0.2s, background 0.2s;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
}

/* Stepper Date Picker scroll styling */
.date-scroll-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.date-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.date-pick-chip {
  min-width: 58px;
  padding: 8px 4px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  background: var(--white);
  transition: all 0.2s;
}

.date-pick-chip:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.date-pick-chip.active {
  background: linear-gradient(135deg, var(--primary), #101D3A);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(16, 29, 58, 0.2);
}

.date-chip-week {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text3);
}

.date-pick-chip.active .date-chip-week {
  color: rgba(255, 255, 255, 0.8);
}

.date-chip-daynum {
  font-size: 18px;
  font-weight: 700;
}

.date-chip-month {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text3);
}

.date-pick-chip.active .date-chip-month {
  color: rgba(255, 255, 255, 0.8);
}

/* Time slots grid */
.slots-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.slot-pick-chip {
  padding: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  transition: all 0.2s;
}

.slot-pick-chip:hover {
  border-color: var(--primary);
}

.slot-pick-chip.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}

/* Stepper Buttons footer */
.stepper-buttons-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.btn-stepper-back {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-stepper-back:hover {
  background: #F8FAFC;
}

.btn-stepper-next {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), #101D3A);
  color: var(--white);
  border: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 29, 58, 0.18);
  transition: all 0.2s;
}

.btn-stepper-next:hover {
  transform: translateY(-1px);
}

/* Step 4 Review summary card */
.review-summary-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

.summary-card-header {
  padding: 12px 14px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text3);
}

.summary-card-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 12px;
}

.summary-card-row:last-child {
  border-bottom: none;
}

.summary-card-total-row {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background: var(--primary-light);
  border-top: 1.5px solid rgba(16, 29, 58, 0.08);
  color: var(--primary);
  font-weight: 700;
}

.summary-card-total-val {
  font-size: 16px;
}

/* Form Input Group With Addon */
.input-group-addon-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #F8FAFC;
  overflow: hidden;
  transition: border-color 0.2s;
}

.input-group-addon-wrap:focus-within {
  border-color: var(--primary);
  background: var(--white);
}

.input-addon-text {
  padding: 0 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text2);
  border-right: 1.5px solid var(--border);
  background: rgba(16, 29, 58, 0.03);
  height: 48px;
  display: flex;
  align-items: center;
}

.input-addon-control {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  padding-left: 12px !important;
  flex: 1;
}

/* Modals & Overlays styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 53, 0.55);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: var(--white);
  border-radius: 24px 24px 0 0;
  padding: 24px 20px 32px;
  width: 100%;
  max-width: min(500px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .modal-overlay {
    align-items: center;
  }

  .modal-container {
    border-radius: 20px;
    max-height: 90vh;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.25s, opacity 0.25s;
  }

  .modal-overlay.active .modal-container {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-drag-handle {
  width: 40px;
  height: 4.5px;
  background: var(--border);
  border-radius: 4px;
  margin: -10px auto 16px;
}

.modal-title {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.modal-subtitle {
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 16px;
}

/* Success Modal styling */
.success-card {
  text-align: center;
  padding: 10px 0;
}

.success-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ECFDF5;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
}

.success-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.success-card p {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 16px;
}

.success-booking-id {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 20px;
}

.success-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 29, 58, 0.15);
}

/* Toast message styling */
#toast-alert {
  position: fixed;
  bottom: calc(var(--bottom-h) + 16px);
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--text);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

#toast-alert.active {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 1024px) {
  #toast-alert {
    bottom: 24px;
  }
}

/* User Profile settings styling */
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

/* Contact information items */
.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-item-row:last-child {
  margin-bottom: 0;
}

.contact-icon-frame {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-block h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 2px;
}

.contact-info-block p {
  font-size: 13px;
  color: var(--text2);
}

/* Interactive Mock map */
.mock-map-box {
  background: #E8F5E9;
  border: 1px solid #C8E6C9;
  border-radius: var(--radius-sm);
  height: 200px;
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  position: relative;
  z-index: 2;
  font-size: 32px;
  animation: bouncePin 2s infinite;
}

@keyframes bouncePin {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.map-address-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow);
}

/* Bookings Log List layout */
.booking-item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.booking-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-item-title {
  font-size: 13.5px;
  font-weight: 700;
}

.booking-status-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.status-badge-pending {
  background: #FFF8E1;
  color: #B45309;
}

.status-badge-confirmed {
  background: #EFF6FF;
  color: #1D4ED8;
}

.status-badge-completed {
  background: #ECFDF5;
  color: #047857;
}

.status-badge-cancelled {
  background: #FEF2F2;
  color: #B91C1C;
}

.booking-item-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.booking-item-detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text2);
}

.booking-item-detail-row svg {
  color: var(--text3);
}

.booking-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 10px;
}

.booking-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.booking-item-id {
  font-size: 10.5px;
  color: var(--text3);
  font-weight: 600;
}

/* Partner benefits screen */
.partner-hero-band {
  background: linear-gradient(135deg, var(--text), var(--primary));
  padding: 32px 20px;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}

.partner-hero-band h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 6px;
}

.partner-hero-band p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.partner-benefit-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.partner-benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E8F5E9;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.partner-benefit-text h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.partner-benefit-text p {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.4;
}

/* --- ADMIN PANEL DESIGNS --- */

/* Login card */
.admin-login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h) - 150px);
  padding: 20px;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px 24px;
}

/* Tabs & Panes */
.admin-dashboard-wrap {
  display: flex;
  flex-direction: column;
}

.admin-nav-tabs {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 20px;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.admin-nav-tabs::-webkit-scrollbar {
  display: none;
}

.admin-tab-btn {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text3);
  border-radius: var(--radius-xs);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.admin-tab-btn.active {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.admin-pane {
  display: none;
}

.admin-pane.active {
  display: block;
}

/* Stats */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.admin-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.admin-stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.admin-stat-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .admin-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Lead row & CRUD cards */
.admin-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.admin-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 10px;
}

.btn-admin-action {
  border: none;
  font-weight: 700;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-admin-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-admin-primary:hover {
  background: var(--primary-dark);
}

.btn-admin-danger {
  background: #FEF2F2;
  color: var(--danger);
}

.btn-admin-secondary {
  background: #F8FAFC;
  border: 1.5px solid var(--border);
}

/* Service CRUD Management styles */
.service-mgmt-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-mgmt-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-mgmt-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.service-mgmt-details {
  flex: 1;
}

.service-mgmt-title {
  font-size: 13.5px;
  font-weight: 700;
}

.service-mgmt-price {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 2px;
}

/* Footer layout */
#app-footer {
  background: #F8FAFC;
  border-top: 1px solid var(--border);
  padding: 32px 16px 20px;
  text-align: center;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 11px;
  color: var(--text3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-nav-links a {
  font-size: 12.5px;
  color: var(--text2);
  font-weight: 600;
}

.footer-nav-links a:hover {
  color: var(--primary);
}

.footer-trust-strip {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: var(--text2);
  font-weight: 700;
}

.footer-trust-item svg {
  color: var(--primary);
}

.footer-copy {
  font-size: 10.5px;
  color: var(--text3);
}

.footer-admin-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text3);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.2s;
}

.footer-admin-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

@media (min-width: 1024px) {
  #app-footer {
    padding: 48px 80px 24px;
  }
}

/* Global Onboarding & Stepper Action Button style */
.btn-block-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #101D3A);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: 13.5px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 29, 58, 0.18);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-block-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 29, 58, 0.22);
}

.btn-block-primary:active {
  transform: scale(0.97);
}

/* --- DYNAMIC SIDEBAR CRM LAYOUT --- */

.admin-sidebar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 16px;
  width: 100%;
}

.sidebar-brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-menu {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 6px;
  margin-bottom: 10px;
  scrollbar-width: none;
}

.sidebar-menu::-webkit-scrollbar {
  display: none;
}

.sidebar-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text3);
  border-radius: var(--radius-xs);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-menu-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.sidebar-menu-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(16, 29, 58, 0.15);
}

.sidebar-menu-icon {
  font-size: 14px;
}

.sidebar-footer {
  display: none;
}

/* Right main panel layout */
.admin-main-panel {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.admin-top-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.admin-panes-container {
  flex: 1;
}

@media (min-width: 768px) {
  .admin-dashboard-wrap {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: calc(100vh - var(--nav-h));
    margin: 0;
  }

  .admin-sidebar {
    width: 250px;
    min-width: 250px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 24px 16px;
    height: auto;
    position: sticky;
    top: var(--nav-h);
  }

  .sidebar-brand-box {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .sidebar-menu {
    flex-direction: column;
    overflow-x: visible;
    flex: 1;
    margin: 0;
  }

  .sidebar-menu-btn {
    padding: 12px 16px;
    white-space: normal;
    font-size: 13px;
    border-radius: var(--radius-sm);
  }

  .sidebar-footer {
    display: block;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
  }

  .admin-main-panel {
    padding: 24px 32px;
  }
}

/* --- RESPONSIVE ALIGNMENT & BANNER POLISH --- */

@media (min-width: 768px) {

  /* Center and constrain search container */
  .search-container {
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: -24px !important;
    /* smooth negative overlap on desktop */
  }

  /* Shorter, wider slider banner aspect ratio */
  .slide-item {
    aspect-ratio: 21/9 !important;
  }

  /* Categories 5-column grid alignment */
  .categories-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
    overflow-x: visible !important;
    padding: 0 !important;
  }

  .category-card {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .category-emoji {
    font-size: 24px !important;
    /* Slightly smaller emoji on desktop */
  }

  .category-name {
    font-size: 12px !important;
    /* Slightly smaller text on desktop */
  }
}

/* --- PREMIUM DARK NAVY & GOLD COMBINATION HEADER OVERRIDES --- */
#app-header {
  background: var(--primary) !important;
  /* Deep Navy Blue */
  border-bottom: 2.5px solid var(--accent) !important;
  /* Accent Gold line */
  box-shadow: 0 4px 20px rgba(16, 29, 58, 0.25) !important;
}

#app-header .logo-text-box h1 {
  color: var(--white) !important;
}

#app-header .logo-text-box span {
  color: var(--accent) !important;
}

#app-header .city-indicator {
  background: rgba(229, 169, 60, 0.15) !important;
  color: var(--accent) !important;
  border: 1px solid rgba(229, 169, 60, 0.3) !important;
}

#app-header .desktop-nav a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
}

#app-header .desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--accent) !important;
}

#app-header .desktop-nav a.active {
  background: var(--accent) !important;
  color: var(--primary) !important;
}

#app-header .header-btn-call {
  background: var(--accent) !important;
  color: var(--primary) !important;
  box-shadow: 0 4px 12px rgba(229, 169, 60, 0.25) !important;
}

#app-header .header-btn-call:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.35) !important;
}

#app-header .header-btn-hamburger {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

#app-header .header-btn-hamburger span {
  background: var(--white) !important;
}

/* Category lists service cards refined alignment spacing */
.detailed-card-image {
  border-radius: 8px !important;
  margin: 12px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  aspect-ratio: 1 / 1 !important;
  align-self: flex-start !important;
}

.detailed-card-info {
  padding: 12px 14px 12px 2px !important;
}

.detailed-chip {
  background: rgba(229, 169, 60, 0.12) !important;
  color: #B45309 !important;
  border: 1px solid rgba(229, 169, 60, 0.2) !important;
}

/* Admin Page Full-Width Workspace Override */
@media (min-width: 1024px) {
  #main-content.admin-main-override {
    max-width: 100% !important;
    padding: 24px 40px 48px !important;
  }
}

/* Ensure content can scroll fully above the fixed bottom bar */
.detail-layout-container {
  margin-bottom: 120px !important;
}

@media (max-width: 1023px) {
  #main-content {
    padding-bottom: 120px !important;
    /* Safe scroll padding on mobile */
  }
}

/* Footer social buttons interactive hover micro-animations */
.footer-social-btn {
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.footer-social-btn:hover {
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 5px 14px rgba(16, 29, 58, 0.12) !important;
}

.footer-social-btn:active {
  transform: scale(0.96) !important;
}

/* Category header See-All navigation styling */
.section-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 12px !important;
}

.see-all-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(16, 29, 58, 0.04);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.see-all-link:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(3px);
}

/* Responsive grid layout for services categories on the All Services view */
.category-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .category-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Filter Pills Styling */
.services-filter-pills-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
}
.services-filter-pills-row::-webkit-scrollbar {
  display: none;
}
.filter-pill {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}
.filter-pill:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-1px);
}
.filter-pill.active {
  border-color: var(--primary) !important;
  background: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow);
}

/* ==========================================================
   LIVE REALTIME SYNC INDICATOR
   ========================================================== */
#talo-live-sync-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-right: 12px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  user-select: none;
  align-self: center;
}

#talo-live-sync-indicator.offline {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

#talo-live-sync-indicator .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: taloPulse 1.8s infinite;
}

#talo-live-sync-indicator.offline .pulse-dot {
  background-color: #ef4444;
  animation: taloPulseRed 1.8s infinite;
}

@keyframes taloPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@keyframes taloPulseRed {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@media (max-width: 600px) {
  #talo-live-sync-indicator {
    padding: 6px;
    margin-right: 6px;
  }
  #talo-live-sync-indicator .sync-text {
    display: none;
  }
}