/* ============================================================
   URBANBEANS - Premium Pink Design System
   Primary: #FF4FA3 | Accent: #FF85C1 | Dark: #1a0a14
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --brand: #52A328;
  --brand-light: #70B44C;
  --brand-pale: #C7E1B8;
  --brand-deep: #3D7A1E;
  --brand-muted: rgba(82, 163, 40, 0.12);

  --dark: #0F1117;
  --dark-2: #222222;
  --dark-3: #1a3a0a;

  --text-main: #0F1117;
  --text-sub: #4B5563;
  --text-muted: #6B7280;

  --white: #ffffff;
  --surface: #fafafe;
  --border: #f0ecf8;

  --grad-primary: linear-gradient(135deg, #52A328 0%, #70B44C 100%);
  --grad-dark: linear-gradient(135deg, #1a0a12 0%, #3d0a24 50%, #1a0a12 100%);
  --grad-subtle: linear-gradient(to bottom, #eef9ee 0%, #C7E1B8 40%, #c8e6c7 100%);

  --shadow-sm: #68B043;
  --shadow-md: #68B043;
  --shadow-lg: #68B043;
  --shadow-card: #68B043;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  top: 0 !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Typography ────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.text-brand {
  color: var(--brand);
}

.text-white {
  color: var(--white);
}

.text-sub {
  color: var(--text-sub);
}

/* ─── Utility ───────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-gap {
  padding: 80px 0;
}

.section-gap-sm {
  padding: 50px 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ─── Pink Gradient Text ─────────────────────────────────── */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-uh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-uh::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: var(--transition);
}

.btn-uh:hover::before {
  opacity: 1;
}

.btn-primary-uh {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary-uh:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline-uh {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-outline-uh:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost-uh {
  background: var(--brand-muted);
  color: var(--brand);
  border: none;
}

.btn-ghost-uh:hover {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark-uh {
  background: var(--dark);
  color: var(--white);
}

.btn-dark-uh:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ─── Section Headers ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--brand-muted);
  color: var(--brand);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Badge / Tag ────────────────────────────────────────── */
.uh-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  background: var(--brand-muted);
  color: var(--brand);
}

.uh-badge-dark {
  background: var(--dark);
  color: var(--white);
}

.uh-badge-success {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.uh-badge-warning {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

/* ────────────────────────────────────────────────────────────
   NAVBAR
   ──────────────────────────────────────────────────────────── */
.uh-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.uh-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(255, 79, 163, 0.1);
}

.uh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

/* Logo */
.uh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.uh-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--grad-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
}

.uh-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.uh-logo-text span {
  color: var(--brand);
}

/* Nav links */
.uh-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.uh-nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  transition: var(--transition);
}

.uh-nav-links a:hover,
.uh-nav-links a.active {
  color: var(--brand);
  background: var(--brand-muted);
}

/* Nav right */
.uh-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.uh-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--brand-muted);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.uh-nav-phone:hover {
  background: var(--brand);
  color: var(--white);
}

.uh-nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  border-radius: var(--radius-full);
  background: var(--brand-pale);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-deep);
}

.uh-nav-user .user-avatar {
  width: 30px;
  height: 30px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

/* Mobile hamburger */
.uh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.uh-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.uh-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(15, 10, 24, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.uh-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.uh-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--white);
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.uh-mobile-menu.open .uh-mobile-panel {
  transform: translateX(0);
}

.uh-mobile-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32px;
}

.uh-mobile-close button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-muted);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.uh-mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.uh-mobile-nav-links a {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.uh-mobile-nav-links a:hover {
  background: var(--brand-muted);
  color: var(--brand);
}

/* Mobile top header (for app-like mobile experience) */
.uh-mobile-header {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 990;
}

.uh-mobile-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.uh-mobile-user-info {
  display: flex;
  flex-direction: column;
}

.uh-mobile-user-info .greet {
  font-size: 11px;
  color: var(--text-muted);
}

.uh-mobile-user-info .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.uh-mobile-user-info .loc {
  font-size: 12px;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ────────────────────────────────────────────────────────────
   HERO / BANNER
   ──────────────────────────────────────────────────────────── */
.uh-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.uh-hero-slide {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.uh-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.uh-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 79, 163, 0.72) 0%, rgba(26, 10, 20, 0.60) 100%);
  z-index: 1;
}

.uh-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 80px 0;
}

.uh-hero-content h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.uh-hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  max-width: 500px;
}

/* ────────────────────────────────────────────────────────────
   TICKER / AUTO-SCROLL
   ──────────────────────────────────────────────────────────── */
.uh-ticker {
  background: var(--grad-primary);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.uh-ticker-inner {
  display: inline-flex;
  animation: uh-ticker-scroll 30s linear infinite;
}

.uh-ticker-inner:hover {
  animation-play-state: paused;
}

@keyframes uh-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.uh-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.uh-ticker-item::after {
  content: '✦';
  opacity: 0.6;
}

/* ────────────────────────────────────────────────────────────
   SEARCH BOX
   ──────────────────────────────────────────────────────────── */
.uh-search-section {
  padding: 32px 0 0;
  background: var(--surface);
}

.uh-search-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 8px 6px 20px;
  gap: 12px;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  transition: var(--transition);
}

.uh-search-box:focus-within {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.uh-search-box i {
  color: var(--brand);
  font-size: 18px;
  flex-shrink: 0;
}

.uh-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-main);
  background: transparent;
}

.uh-search-box input::placeholder {
  color: var(--text-muted);
}

.uh-search-btn {
  padding: 10px 22px;
  background: var(--grad-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  border: none;
  flex-shrink: 0;
  transition: var(--transition);
}

.uh-search-btn:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-sm);
}

/* Dropdown */
#searchResults {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 999;
  overflow: hidden;
}

.search-result-item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-main);
  transition: var(--transition);
  cursor: pointer;
}

.search-result-item:hover {
  background: var(--brand-muted);
  color: var(--brand);
}

/* ────────────────────────────────────────────────────────────
   CATEGORY ICON GRID
   ──────────────────────────────────────────────────────────── */
.uh-services-section {
  padding: 40px 0 60px;
  background: var(--surface);
}

.uh-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.uh-service-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  width: 110px;
  transition: var(--transition-bounce);
  text-align: center;
  cursor: pointer;
}

.uh-service-chip:hover {
  border-color: var(--brand);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.uh-service-chip i {
  font-size: 26px;
  color: var(--brand);
  transition: var(--transition);
}

.uh-service-chip:hover i {
  transform: scale(1.2);
}

.uh-service-chip span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  line-height: 1.3;
}

/* ────────────────────────────────────────────────────────────
   CATEGORY SECTION (with slider)
   ──────────────────────────────────────────────────────────── */
.uh-category-section {
  padding: 60px 0;
  background: var(--white);
}

.uh-category-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 32px;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.uh-category-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 79, 163, 0.85) 0%, rgba(26, 10, 20, 0.5) 100%);
}

.uh-category-banner-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: white;
}

.uh-category-banner-content h2 {
  color: white;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* Service cards in category slider */
.uh-labour-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition-bounce);
  cursor: pointer;
  text-align: center;
}

.uh-labour-card:hover {
  border-color: var(--brand-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.uh-labour-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--brand-pale);
}

.uh-labour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.uh-labour-card:hover .uh-labour-img img {
  transform: scale(1.08);
}

.uh-labour-info {
  padding: 14px 12px;
}

.uh-labour-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 4px;
}

.uh-labour-price {
  font-size: 12px;
  color: var(--brand);
  font-weight: 500;
}

.view-all-btn-uh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--brand-muted);
  color: var(--brand);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-top: 24px;
  transition: var(--transition);
}

.view-all-btn-uh:hover {
  background: var(--brand);
  color: white;
  transform: translateX(4px);
}

/* ────────────────────────────────────────────────────────────
   TESTIMONIALS
   ──────────────────────────────────────────────────────────── */
.uh-testimonials {
  padding: 80px 0;
  background: var(--surface);
}

.uh-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.uh-testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 72px;
  color: var(--brand-muted);
  font-family: Georgia, serif;
  line-height: 1;
}

.uh-testimonial-card:hover {
  border-color: var(--brand-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.uh-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.uh-stars i {
  color: var(--brand);
  font-size: 14px;
}

.uh-testimonial-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.uh-testimonial-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 20px;
}

.uh-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.uh-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.uh-author-info h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.uh-author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ────────────────────────────────────────────────────────────
   TRUST / STATS BAR
   ──────────────────────────────────────────────────────────── */
.uh-stats {
  background: var(--grad-dark);
  padding: 60px 0;
  color: white;
}

.uh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.uh-stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-light);
  margin-bottom: 6px;
}

.uh-stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ────────────────────────────────────────────────────────────
   WHY CHOOSE US CARDS
   ──────────────────────────────────────────────────────────── */
.uh-why-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: var(--transition-bounce);
  cursor: default;
}

.uh-why-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.uh-why-icon {
  width: 72px;
  height: 72px;
  background: var(--brand-muted);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.uh-why-card:hover .uh-why-icon {
  background: var(--grad-primary);
}

.uh-why-icon i {
  font-size: 28px;
  color: var(--brand);
  transition: var(--transition);
}

.uh-why-card:hover .uh-why-icon i {
  color: white;
}

.uh-why-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.uh-why-card p {
  font-size: 14px;
  color: var(--text-sub);
}

/* ────────────────────────────────────────────────────────────
   BREADCRUMB / PAGE HERO
   ──────────────────────────────────────────────────────────── */
.uh-page-hero {
  background: var(--grad-primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.uh-page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.uh-page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.uh-page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.uh-page-hero h1 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.uh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.uh-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.uh-breadcrumb a:hover {
  color: white;
}

.uh-breadcrumb .sep {
  opacity: 0.5;
}

/* ────────────────────────────────────────────────────────────
   ABOUT PAGE
   ──────────────────────────────────────────────────────────── */
.uh-about-section {
  padding: 80px 0;
}

.uh-about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.uh-about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.uh-about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}

.uh-about-img-badge .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
}

.uh-about-img-badge .label {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.3;
}

/* ────────────────────────────────────────────────────────────
   CONTACT PAGE
   ──────────────────────────────────────────────────────────── */
.uh-contact-section {
  padding: 80px 0;
  background: var(--surface);
}

.uh-contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.uh-contact-info-card {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  color: white;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.uh-contact-info-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.uh-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.uh-contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.uh-contact-item-icon i {
  color: white;
  font-size: 18px;
}

.uh-contact-item-text h6 {
  color: white;
  font-size: 14px;
  margin-bottom: 4px;
}

.uh-contact-item-text a,
.uh-contact-item-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ────────────────────────────────────────────────────────────
   FORMS (Common)
   ──────────────────────────────────────────────────────────── */
.uh-form-group {
  margin-bottom: 20px;
}

.uh-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uh-form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
}

.uh-form-control:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 79, 163, 0.1);
}

.uh-form-control::placeholder {
  color: var(--text-muted);
}

textarea.uh-form-control {
  min-height: 130px;
  resize: vertical;
}

/* ────────────────────────────────────────────────────────────
   BOOKING / SERVICE DETAIL CARDS
   ──────────────────────────────────────────────────────────── */
.uh-service-detail-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.uh-service-detail-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.uh-service-detail-body {
  padding: 32px;
}

.uh-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--brand-muted);
  color: var(--brand);
  border-radius: var(--radius-full);
  font-size: 20px;
  font-weight: 800;
}

.uh-booking-sidebar {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 90px;
}

.uh-booking-sidebar h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ────────────────────────────────────────────────────────────
   PROFILE PAGE
   ──────────────────────────────────────────────────────────── */
.uh-profile-header {
  background: var(--grad-primary);
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.uh-profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.uh-profile-body {
  margin-top: -60px;
  padding-bottom: 60px;
}

.uh-profile-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

/* ────────────────────────────────────────────────────────────
   BOOKING LIST
   ──────────────────────────────────────────────────────────── */
.uh-booking-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
  margin-bottom: 12px;
}

.uh-booking-item:hover {
  border-color: var(--brand-light);
  box-shadow: var(--shadow-sm);
}

.uh-booking-status {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.status-pending {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.status-confirmed {
  background: var(--brand-muted);
  color: var(--brand);
}

.status-completed {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.status-cancelled {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.status-assigned {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}

.status-started {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

/* ────────────────────────────────────────────────────────────
   TABLES
   ──────────────────────────────────────────────────────────── */
.uh-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.uh-table {
  width: 100%;
  border-collapse: collapse;
}

.uh-table thead {
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
}

.uh-table thead th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-align: left;
  letter-spacing: 0.3px;
  border: none;
  white-space: nowrap;
}

.uh-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.uh-table tbody tr:hover {
  background: var(--brand-muted);
}

.uh-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-main);
  vertical-align: middle;
}

.uh-table tbody tr:last-child {
  border-bottom: none;
}

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.uh-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 0;
}

.uh-footer-cta {
  background: var(--grad-primary);
  padding: 50px 0;
  text-align: center;
}

.uh-footer-cta h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 10px;
}

.uh-footer-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.uh-footer-body {
  padding: 64px 0 40px;
}

.uh-footer-brand {
  margin-bottom: 20px;
}

.uh-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.uh-footer-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--grad-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
}

.uh-footer-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.uh-footer-logo-text span {
  color: var(--brand-light);
}

.uh-footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.uh-social-links {
  display: flex;
  gap: 10px;
}

.uh-social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: var(--transition);
}

.uh-social-links a:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-3px);
}

.uh-footer-col h6 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.uh-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uh-footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.uh-footer-links a:hover {
  color: var(--brand-light);
  padding-left: 4px;
}

.uh-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.uh-footer-contact-item i {
  color: var(--brand-light);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.uh-footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.uh-footer-contact-item a:hover {
  color: var(--brand-light);
}

.uh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.uh-footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.uh-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.uh-footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.uh-footer-bottom-links a:hover {
  color: var(--brand-light);
}

/* ────────────────────────────────────────────────────────────
   BOTTOM MOBILE NAV
   ──────────────────────────────────────────────────────────── */
.uh-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 12px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

.uh-bottom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.uh-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.uh-bottom-nav-item i {
  font-size: 20px;
  line-height: 1;
}

.uh-bottom-nav-item.active {
  color: var(--brand);
}

.uh-bottom-nav-item.active i {
  transform: scale(1.15);
}

.uh-bottom-nav-item.center-btn {
  background: var(--grad-primary);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
  box-shadow: var(--shadow-md);
  font-size: 22px;
  padding: 0;
}

.uh-bottom-nav-item.center-btn span {
  display: none;
}

/* ────────────────────────────────────────────────────────────
   NOTIFICATION TOAST
   ──────────────────────────────────────────────────────────── */
.uh-notification-toast {
  background: var(--dark);
  color: white;
  padding: 14px 18px;
  margin-bottom: 10px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  animation: notif-slide-in 0.3s ease;
  border-left: 4px solid var(--brand);
}

@keyframes notif-slide-in {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ────────────────────────────────────────────────────────────
   AUTH PAGES (Login / Register)
   ──────────────────────────────────────────────────────────── */
.uh-auth-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-pale) 0%, #f5e8ff 50%, var(--brand-pale) 100%);
  padding: 40px 20px;
}

.uh-auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: auth-fade-up 0.5s ease;
}

@keyframes auth-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.uh-auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.uh-auth-logo .mark {
  width: 56px;
  height: 56px;
  background: var(--grad-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
  font-weight: 900;
  color: white;
}

.uh-auth-logo h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.uh-auth-logo h3 span {
  color: var(--brand);
}

.uh-auth-logo p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Input group with floating label */
.uh-input-group {
  position: relative;
  margin-bottom: 20px;
}

.uh-input-group input,
.uh-input-group select,
.uh-input-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-main);
  background: var(--surface);
  outline: none;
  transition: var(--transition);
  padding-right: 46px;
}

.uh-input-group input:focus,
.uh-input-group select:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 79, 163, 0.1);
}

.uh-input-group label {
  position: absolute;
  left: 14px;
  top: 15px;
  font-size: 15px;
  color: var(--text-muted);
  background: transparent;
  padding: 0 4px;
  transition: var(--transition);
  pointer-events: none;
}

.uh-input-group input:focus+label,
.uh-input-group input:not(:placeholder-shown)+label {
  top: -10px;
  font-size: 11px;
  color: var(--brand);
  background: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uh-input-group .input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.uh-input-group .input-icon:hover {
  color: var(--brand);
}

.uh-input-error {
  font-size: 12px;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
}

.uh-non-field-error {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  color: #dc2626;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ──────────────────────────────────────────────────────────── */
.uh-accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.uh-accordion-item:hover {
  border-color: var(--brand-light);
}

.uh-accordion-btn {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
  font-family: inherit;
}

.uh-accordion-btn[aria-expanded="true"] {
  color: var(--brand);
}

.uh-accordion-btn .acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.uh-accordion-btn[aria-expanded="true"] .acc-icon {
  background: var(--brand);
  color: white;
  transform: rotate(45deg);
}

.uh-accordion-body {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   SEARCH RESULT PAGE
   ──────────────────────────────────────────────────────────── */
.uh-labour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

/* ────────────────────────────────────────────────────────────
   GOOGLE TRANSLATE (compact overrides)
   ──────────────────────────────────────────────────────────── */
#google_translate_element {
  position: fixed;
  bottom: 100px;
  right: 14px;
  z-index: 9999;
  background: var(--white);
  padding: 4px 6px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  transform: scale(0.82);
  transform-origin: bottom right;
}

.goog-te-gadget {
  font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
  padding: 4px 6px;
  font-size: 12px !important;
  border-radius: 6px;
  border: 1px solid var(--border);
  outline: none;
  font-family: inherit;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.skiptranslate iframe {
  display: none !important;
}

/* ────────────────────────────────────────────────────────────
   DASHBOARD PINK OVERRIDES
   ──────────────────────────────────────────────────────────── */
.uh-dashboard-stat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.uh-dashboard-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.uh-dashboard-stat-card .stat-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-muted);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--brand);
  margin-bottom: 16px;
}

.uh-dashboard-stat-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.uh-dashboard-stat-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ────────────────────────────────────────────────────────────
   MISC / UTILITY
   ──────────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.pink-divider {
  border: none;
  border-top: 2px solid var(--brand);
  width: 60px;
  margin: 16px 0 24px;
}

.uh-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.uh-empty-state i {
  font-size: 48px;
  color: var(--brand-light);
  margin-bottom: 16px;
}

.uh-empty-state h5 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-sub);
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .uh-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Navbar */
  .uh-navbar {
    display: none;
  }

  .uh-mobile-header {
    display: block;
  }

  .uh-bottom-nav {
    display: block;
  }

  /* Main content push up for bottom nav */
  main.main-content {
    padding-bottom: 80px;
  }

  /* Hero */
  .uh-hero-content {
    padding: 60px 0;
  }

  .uh-hero-content h2 {
    font-size: 1.8rem;
  }

  /* Services grid */
  .uh-services-grid {
    gap: 8px;
  }

  .uh-service-chip {
    width: 90px;
    padding: 16px 10px;
  }

  .uh-service-chip i {
    font-size: 22px;
  }

  /* Stats */
  .uh-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Footer */
  .uh-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Auth */
  .uh-auth-card {
    padding: 32px 22px;
  }

  /* Contact */
  .uh-contact-card {
    padding: 28px 20px;
  }

  /* Table */
  .uh-table-wrap {
    overflow-x: auto;
  }

  /* Section gap */
  .section-gap {
    padding: 50px 0;
  }

  /* Google Translate */
  #google_translate_element {
    bottom: 85px;
    right: 8px;
    transform: scale(0.7);
  }
}

@media (max-width: 480px) {
  .uh-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .uh-service-chip {
    width: 80px;
  }

  .uh-auth-card {
    padding: 28px 18px;
  }

  .section-label {
    font-size: 11px;
  }

  .uh-contact-info-card {
    padding: 32px 24px;
  }
}

/* ─── Loading skeleton shimmer ───────────────────────────── */
.uh-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ─── Micro-animations ───────────────────────────────────── */
.hover-lift {
  transition: var(--transition-bounce);
}

.hover-lift:hover {
  transform: translateY(-6px);
}

.hover-scale {
  transition: var(--transition-bounce);
}

.hover-scale:hover {
  transform: scale(1.04);
}

/* ─── Pink glow effect ───────────────────────────────────── */
.pink-glow {
  box-shadow: 0 0 0 0 rgba(255, 79, 163, 0.4);
  animation: pink-pulse 2s ease-in-out infinite;
}

@keyframes pink-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 79, 163, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 79, 163, 0);
  }
}

/* ─── Scroll animations ──────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Override old styles for compatibility ──────────────── */
.header-area,
.desktop-header {
  display: none !important;
}

.app-header-mobile.mobile-header {
  display: none !important;
}

.elto-bottom-nav {
  display: none !important;
}

.footer-section {
  display: none !important;
}

body.tt-magic-cursor #magic-cursor {
  display: none !important;
}

/* --- Snabbit Overrides & Responsiveness --- */
/* Search Box Fix */
.uh-search-section {
  padding: 20px 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.uh-search-box {
  display: flex;
  align-items: center;
  background: white;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  border: 1px solid #52A328;
}

.uh-search-box i {
  color: var(--brand);
  font-size: 18px;
  margin-right: 14px;
}

.uh-search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  padding: 12px 0;
  min-width: 0;
  background: transparent;
}

.uh-search-btn {
  background: var(--brand);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 10px;
}

.uh-search-btn:hover {
  background: var(--brand-deep);
}

#searchResults {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 100;
  overflow: hidden;
  border: 1px solid var(--border);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: 0.2s;
}

.search-result-item:hover {
  background: var(--surface);
}

.search-result-item:last-child {
  border-bottom: none;
}

/* Services Grid & Chip Fix */
.uh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.uh-service-chip {
  background: white;
  border: 1px solid var(--border);
  padding: 20px 10px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}

.uh-service-chip:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.uh-service-chip i {
  font-size: 24px;
  color: var(--brand);
  background: var(--brand-pale);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.uh-service-chip:hover i {
  background: var(--brand);
  color: white;
}

/* Mobile Nav Perfect Alignment */
.uh-mobile-header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.uh-bottom-nav {
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding-bottom: env(safe-area-inset-bottom);
}

/* Google Translate Fix */
body {
  top: 0 !important;
}

.skiptranslate iframe {
  display: none !important;
}

#google_translate_element {
  position: fixed;
  bottom: 80px;
  right: 15px;
  z-index: 999;
  background: white;
  padding: 6px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

#google_translate_element select {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  padding-right: 4px;
  cursor: pointer;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px !important;
}

.goog-te-gadget span {
  display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .uh-search-box {
    padding: 4px 8px 4px 12px;
    border-radius: 20px;
    width: 100%;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    box-sizing: border-box;
    gap: 8px;
  }

  .uh-search-btn {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 14px;
    margin-left: 0;
  }

  .uh-search-box i {
    font-size: 14px;
    margin-right: 0;
  }

  .uh-search-box input {
    font-size: 13px;
    padding: 6px 0;
    min-width: 0;
  }

  .uh-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .uh-service-chip {
    padding: 16px 8px;
    font-size: 12px;
    border-radius: 12px;
  }

  .uh-service-chip i {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  #google_translate_element {
    bottom: 90px;
  }
}

@media (max-width: 480px) {
  .uh-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .uh-service-chip {
    padding: 12px 6px;
    font-size: 11px;
  }
}

/* === Premium Marketplace Utilities === */
.shadow-soft {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.shadow-float {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.shadow-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.rounded-xl {
  border-radius: 20px;
}

.bg-surface {
  background: var(--surface);
}

.bg-white {
  background: var(--white);
}

.text-brand {
  color: var(--brand);
}

.fw-800 {
  font-weight: 800;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card-premium {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.card-premium:hover {
  border-color: var(--brand-pale);
  box-shadow: 0 12px 30px rgba(82, 163, 40, 0.1);
}