/* ============================================
   BHARATIEA — Light Theme (lovable.dev inspired)
   Bg: #FFFBF5  Cards: #FFFFFF  Text: #111827
   Gradient: #C2185B → #E64A19 (Rose → Saffron)
   Fonts: Inter (body), Playfair Display (headings)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #C2185B;
  --orange-light: rgba(194,24,91,0.08);
  --orange-hover: #9C1348;
  --gradient: linear-gradient(135deg, #C2185B 0%, #E64A19 100%);
  --gradient-hover: linear-gradient(135deg, #9C1348 0%, #C43C13 100%);
  --primary: #C2185B;
  --accent: #E64A19;
  --dark: #111827;
  --dark-2: #FFFFFF;
  --dark-3: #F9FAFB;
  --dark-4: #F3F4F6;
  --text: #111827;
  --text-light: #374151;
  --text-muted: #6B7280;
  --bg: #FFFBF5;
  --bg-light: #FDF6ED;
  --bg-card: #FFFFFF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --success: #059669;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --max-width: 1280px;
  --nav-height: 72px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

/* ---------- Typography ---------- */
h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1.18; color: var(--text); letter-spacing: -0.5px; font-style: normal; }
h2 { font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; line-height: 1.22; color: var(--text); letter-spacing: -0.3px; font-style: normal; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.4; color: var(--text); }
h4 { font-size: 1rem; font-weight: 500; line-height: 1.5; color: var(--text); }
p { font-size: 1rem; line-height: 1.7; color: var(--text-light); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  flex-shrink: 0;
  font-style: italic;
}

/* --- Nav Center --- */
.nav-center {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

/* Services Dropdown */
.nav-services-dropdown { position: relative; }
.nav-services-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 4px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
}
.nav-services-btn:hover { color: var(--orange); }
.nav-services-btn svg { transition: transform 0.2s; }
.nav-services-dropdown.open .nav-services-btn svg { transform: rotate(180deg); }
.nav-services-dropdown.open .nav-services-btn { color: var(--orange); }

.services-mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: -40px;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 28px 32px;
  z-index: 1001;
  min-width: 640px;
}
.nav-services-dropdown.open .services-mega-menu { display: block; }
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mega-col h5 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 12px;
}
.mega-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 5px 0;
  transition: color 0.15s;
}
.mega-col a:hover { color: var(--orange); }
.mega-col-highlight {
  background: rgba(215,105,9,0.08);
  margin: -28px -32px -28px 0;
  padding: 28px 24px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border-left: 1px solid var(--border);
}

/* Location Selector */
.nav-location { position: relative; }
.nav-location-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
}
.nav-location-btn:hover { border-color: var(--orange); }
.nav-location-btn svg:first-child { stroke: var(--orange); }
.location-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 160px;
  z-index: 1001;
  overflow: hidden;
}
.nav-location.open .location-dropdown { display: block; }
.location-option {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--text-light);
  transition: background 0.15s;
}
.location-option:hover { background: var(--dark-4); }
.location-option.active { color: var(--orange); font-weight: 600; background: var(--orange-light); }

/* Search Bar */
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  flex: 1;
  max-width: 360px;
  min-width: 160px;
  transition: border-color 0.2s;
}
.nav-search:focus-within { border-color: var(--orange); }
.nav-search svg { flex-shrink: 0; }
.nav-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.8125rem;
  color: var(--text);
  width: 100%;
  font-family: var(--font);
}
.nav-search-input::placeholder { color: var(--text-muted); }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-login-btn {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  padding: 8px 4px;
  font-family: var(--font);
}
.nav-login-btn:hover { color: var(--orange); }
.nav-cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--text-light);
  padding: 4px;
  cursor: pointer;
}
.nav-cart-btn:hover { color: var(--orange); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Login Modal */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.login-modal-overlay.active { display: flex; }
.login-modal {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 90%;
  position: relative;
}

/* Mobile Menu */
.nav-mobile-menu { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  transition: all 0.2s;
  gap: 8px;
  letter-spacing: 0.3px;
  font-family: var(--font);
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
}
.btn-primary:hover { background: var(--gradient-hover); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(194,24,91,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-secondary:hover { background: var(--orange-light); }
.btn-dark {
  background: var(--dark-3);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--orange); color: var(--orange); }
.btn-white {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-white:hover { background: var(--bg-light); }
.btn-sm { padding: 10px 24px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 44px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-link {
  background: none;
  border: none;
  color: var(--orange);
  font-weight: 600;
  padding: 0;
  font-size: 0.9375rem;
}
.btn-link:hover { text-decoration: underline; }

/* ---------- Hero Section ---------- */
.hero {
  background: var(--bg-light);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}
.hero h1 {
  font-size: 2.75rem;
  line-height: 1.18;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.hero h1 .highlight { color: var(--orange); font-style: italic; }
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 20px; align-items: center; }
.hero-image {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-image .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-lg);
}

/* ---------- Section Spacing ---------- */
.section { padding: 96px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: linear-gradient(135deg, #1a1a2e 0%, #111827 100%); }
.section-dark h2, .section-dark h3 { color: #fff; font-style: normal; }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark .stat-card { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.section-dark .stat-value { color: var(--orange); }
.section-dark .stat-label { color: rgba(255,255,255,0.65); }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,0.75); }
.section-orange { background: var(--orange); color: #fff; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1rem; }

/* Section label (uppercase tracked) */
.section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step-card {
  text-align: center;
  padding: 36px 20px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 24px;
}
.step-card h3 { margin-bottom: 12px; font-size: 1rem; }
.step-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  position: absolute;
  top: 60px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--border);
}
.step-card:last-child .step-connector { display: none; }

/* ---------- Service Category Cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-sm);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.category-card-img {
  height: 200px;
  background: linear-gradient(135deg, #1E1B24 0%, #252231 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: 16px;
}
.category-card-body { padding: 20px 24px; }
.category-card-body h3 { font-size: 1rem; margin-bottom: 6px; font-weight: 600; }
.category-card-body p { font-size: 0.875rem; margin-bottom: 12px; line-height: 1.5; color: var(--text-muted); }
.category-card-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}
.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 8px;
}
.category-card-link::after { content: ' →'; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  text-align: center;
  padding: 28px 20px;
}
.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border: 1px solid rgba(215,105,9,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}
.trust-item h4 { font-size: 0.9375rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* ---------- Occasion Grid ---------- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.occasion-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.occasion-card:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  transform: translateY(-2px);
}
.occasion-icon { font-size: 2rem; margin-bottom: 4px; }
.occasion-card h4 { font-size: 0.9375rem; font-weight: 500; color: var(--text-light); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--orange); font-size: 0.875rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; font-style: normal; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; font-size: 1rem; }
.cta-section .btn-primary { background: #fff; color: var(--primary); }
.cta-section .btn-primary:hover { background: rgba(255,255,255,0.92); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ---------- Pricing Tables ---------- */
.pricing-section { margin-bottom: 56px; }
.pricing-section h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.pricing-intro {
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 700px;
  color: var(--text-light);
}
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pricing-table thead th {
  background: var(--dark-3);
  color: var(--text);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-table tbody td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  background: var(--dark-2);
  color: var(--text-light);
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) td { background: var(--bg-card); }
.pricing-table tbody tr:hover td { background: rgba(215,105,9,0.07); }
.pricing-table .price-col {
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
}
.pricing-table .book-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.pricing-table .book-btn:hover { background: var(--orange-hover); }

.pricing-note {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(215,105,9,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-light);
  border-left: 3px solid var(--orange);
}

/* ---------- Tiers ---------- */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.tier-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
  background: var(--bg-card);
}
.tier-card:hover { border-color: var(--orange); }
.tier-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
  position: relative;
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.tier-card h4 { font-size: 1.2rem; margin-bottom: 4px; }
.tier-price { font-size: 0.9rem; color: var(--orange); font-weight: 600; margin-bottom: 16px; }
.tier-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Package Cards ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.package-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.25s;
  background: var(--bg-card);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.package-card h3 { font-size: 1.15rem; }
.package-price {
  background: var(--orange-light);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.8125rem;
  white-space: nowrap;
  border: 1px solid rgba(215,105,9,0.3);
}
.package-includes {
  margin: 16px 0;
}
.package-includes li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.package-includes li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.package-best {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

/* ---------- Booking Form ---------- */
.booking-container {
  max-width: 720px;
  margin: 0 auto;
}
.form-step {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.form-step:last-child { border-bottom: none; }
.form-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.form-step-num {
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.form-step-header h3 { font-size: 1rem; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--dark-3);
  color: var(--text);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(215,105,9,0.12);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-select option { background: var(--dark-3); }

.form-radio-group,
.form-check-group { display: flex; flex-direction: column; gap: 10px; }
.form-radio,
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--dark-3);
}
.form-radio:hover,
.form-check:hover { border-color: var(--orange); background: var(--orange-light); }
.form-radio input,
.form-check input { accent-color: var(--orange); width: 18px; height: 18px; }
.form-radio-label,
.form-check-label { font-size: 0.9rem; color: var(--text-light); }
.form-radio-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 28px;
  margin-top: -4px;
}

.form-count {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-count button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--dark-3);
  color: var(--text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: var(--font);
}
.form-count button:hover { border-color: var(--orange); color: var(--orange); }
.form-count .count-value {
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
  color: var(--text);
}

.form-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.time-slot {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
  background: var(--dark-3);
  color: var(--text-light);
}
.time-slot:hover,
.time-slot.selected { border-color: var(--orange); background: var(--orange-light); color: var(--orange); font-weight: 600; }
.time-slot .slot-label { font-weight: 600; display: block; }
.time-slot .slot-desc { font-size: 0.75rem; color: var(--text-muted); }

/* Order summary */
.order-summary {
  background: var(--dark-3);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
}
.order-summary h3 { margin-bottom: 16px; font-size: 1.05rem; }
.order-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.order-row.total {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.payment-methods {
  display: flex;
  gap: 12px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.payment-method {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--dark-3);
  color: var(--text-light);
}
.payment-method:hover,
.payment-method.selected { border-color: var(--orange); background: var(--orange-light); color: var(--orange); }
.prepaid-note {
  background: rgba(215,105,9,0.08);
  border: 1px solid rgba(215,105,9,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.85rem;
  margin-top: 16px;
  color: var(--text-light);
}
.prepaid-note strong { color: var(--text); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.faq-answer-inner table {
  width: 100%;
  margin: 12px 0;
  border-collapse: collapse;
}
.faq-answer-inner table th,
.faq-answer-inner table td {
  padding: 10px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.faq-answer-inner table th { background: var(--dark-3); font-weight: 600; color: var(--text); }

/* ---------- Expert/Join Page ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.stat-card {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
  font-style: italic;
}
.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 24px 0;
}
.comparison-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}
.comparison-table th:first-child { background: var(--dark-3); color: var(--text-muted); }
.comparison-table th:nth-child(2) { background: var(--orange); color: #fff; }
.comparison-table th:nth-child(3) { background: var(--dark-4); color: var(--text-muted); }
.comparison-table td {
  padding: 12px 20px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
  color: var(--text-light);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:nth-child(2) { background: rgba(215,105,9,0.08); font-weight: 500; color: var(--text); }

.career-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.career-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  background: var(--bg-card);
}
.career-card.highlighted { border-color: var(--orange); background: rgba(215,105,9,0.07); }
.career-level {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.career-card h4 { font-size: 1rem; margin-bottom: 8px; }
.career-income {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 8px;
}
.career-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-method {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: border-color 0.2s;
  background: var(--bg-card);
}
.contact-method:hover { border-color: var(--orange); }
.contact-method h4 { margin-bottom: 4px; }
.contact-method p { font-size: 0.9rem; color: var(--text-muted); }
.contact-method .contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 4px;
}

.service-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.area-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.area-card h4 { margin-bottom: 8px; color: var(--orange); }
.area-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 12px; }
.footer h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--orange); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
  transition: transform 0.3s;
  color: #fff;
  font-size: 1.6rem;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Popup / Modal ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
}
.modal h3 { margin-bottom: 8px; }
.modal p { font-size: 0.9rem; margin-bottom: 24px; color: var(--text-muted); }
.modal .offer-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  margin: 16px 0 4px;
  font-style: italic;
}
.modal .offer-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.modal .btn { margin-bottom: 12px; }
.modal .dismiss-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}

/* ---------- About Page ---------- */
.about-content { max-width: 780px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; font-size: 1.05rem; color: var(--text-light); }
.about-content h3 { margin-top: 40px; margin-bottom: 12px; }

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.diff-card {
  padding: 24px;
  border-radius: var(--radius-md);
}
.diff-card.ours { background: rgba(215,105,9,0.1); border: 1px solid rgba(215,105,9,0.3); }
.diff-card.theirs { background: var(--bg-card); border: 1px solid var(--border); }
.diff-card h4 { margin-bottom: 8px; font-size: 1rem; }
.diff-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.page-hero h1 { font-size: 2.25rem; margin-bottom: 12px; }
.page-hero p { font-size: 1rem; max-width: 560px; color: var(--text-muted); }

/* ---------- Confirmation ---------- */
.confirmation-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
}
.confirm-icon {
  width: 72px;
  height: 72px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.confirm-steps {
  text-align: left;
  margin: 32px 0;
  padding: 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.confirm-steps li {
  padding: 10px 0;
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.confirm-steps li:last-child { border-bottom: none; }
.confirm-steps .step-num {
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { height: 320px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .career-path { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.625rem; }
  .container { padding: 0 24px; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1.125rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 56px 0; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .service-areas { grid-template-columns: 1fr; }
  .form-time-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  .nav-mobile-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--dark-2);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-mobile-menu.open { display: block; }
  .nav-mobile-menu .nav-search {
    display: flex;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .nav-mobile-menu .nav-location-btn {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .nav-mobile-menu .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .nav-mobile-menu .mobile-nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-menu .mobile-nav-links a:hover { color: var(--orange); }
  .nav-mobile-menu .mobile-nav-section-title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-top: 16px;
    margin-bottom: 4px;
  }
  .nav-mobile-menu .mobile-nav-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .nav-mobile-menu .mobile-nav-actions button {
    flex: 1;
    padding: 10px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
  }
  .mobile-login-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-light);
  }
  .mobile-cart-btn {
    background: var(--orange);
    border: none;
    color: #fff;
  }

  .pricing-table { font-size: 0.8125rem; }
  .pricing-table thead th,
  .pricing-table tbody td { padding: 10px 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 1.875rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.75rem; }
  .category-grid { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .career-path { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
}

/* ============================================
   Hero Service Picker
   ============================================ */
.hero-picker {
  background: var(--dark-2);
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--border);
}
.hero-picker-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.4px;
  font-style: normal;
}
.hero-picker-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 40px;
}
.hero-picker-sub strong { color: var(--text-light); font-weight: 600; }

.service-tiles {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}
.service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.service-tile:hover { background: var(--orange-light); }
.service-tile-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  background: var(--dark-3) !important;
  border: 1px solid var(--border);
}
.service-tile-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  line-height: 1.35;
}
.service-tile-price {
  font-size: 0.6875rem;
  color: var(--text-muted);
}
.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.trust-rating { color: var(--orange); font-weight: 700; }
.trust-sep { color: var(--border); }

/* ============================================
   UC-Style Services Page
   ============================================ */

.services-page-layout {
  display: flex;
  min-height: calc(100vh - var(--nav-height));
}
.services-sidebar {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  background: var(--dark-2);
}
.sidebar-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  padding: 14px 20px 6px;
}
.sidebar-cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all 0.15s;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.sidebar-cat-link:hover { color: var(--orange); background: var(--orange-light); border-left-color: var(--orange); }
.sidebar-cat-link.active { color: var(--orange); font-weight: 600; border-left-color: var(--orange); background: var(--orange-light); }
.sidebar-cat-icon { font-size: 1rem; line-height: 1; }

.services-main {
  flex: 1;
  padding: 32px 48px 160px;
  max-width: 900px;
  background: var(--bg);
}
.services-section { margin-bottom: 40px; }
.services-section-hdr {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.services-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.services-section-count {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.services-section-intro {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}

/* Service card */
.service-card-uc {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.service-card-uc:last-child { border-bottom: none; }
.service-card-uc-img {
  width: 120px;
  height: 90px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid var(--border);
}
.service-card-uc-body { flex: 1; min-width: 0; }
.service-card-uc-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.service-card-uc-region {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.service-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  margin-bottom: 5px;
}
.service-rating .s-star { color: #f5a623; }
.rating-val { font-weight: 600; color: var(--text); }
.rating-count { color: var(--text-muted); }
.service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 6px;
}
.service-price { font-weight: 700; color: var(--text); }
.service-dot { color: var(--border); }
.service-duration { color: var(--text-muted); }
.service-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}
.service-badges { display: flex; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.service-badge {
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-bestseller { background: rgba(215,105,9,0.15); color: var(--orange); }
.badge-new { background: rgba(61,170,106,0.15); color: var(--success); }
.badge-only { background: var(--orange-light); color: var(--orange); }
.badge-popular { background: rgba(100,150,255,0.1); color: #7090d0; }

.service-card-uc-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 2px;
}
.service-add-btn {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font);
}
.service-add-btn:hover { background: var(--gradient); border-color: transparent; color: #fff; }
.service-add-btn.added { background: var(--gradient); border-color: transparent; color: #fff; }
.service-view-details {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--font);
}
.service-view-details:hover { color: var(--orange); }

/* Floating Cart Bar */
.cart-float-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 14px 48px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
}
.cart-float-bar.visible { display: flex; }
.cart-float-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-float-count {
  background: var(--orange);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.cart-float-label { font-size: 0.875rem; font-weight: 500; }
.cart-float-price { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.cart-float-btn {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.cart-float-btn:hover { background: var(--gradient-hover); }

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  display: none;
}
.cart-drawer-overlay.open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 420px;
  max-width: 100vw;
  height: 100dvh;
  background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.4);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cart-drawer-header h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.cart-drawer-close {
  width: 32px;
  height: 32px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-drawer-close:hover { border-color: var(--orange); color: var(--orange); }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 24px;
}
.cart-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.cart-empty .empty-icon { font-size: 2.5rem; margin-bottom: 8px; }
.cart-empty p { font-size: 0.875rem; }
.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-emoji {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--orange-light);
  border: 1px solid rgba(215,105,9,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.cart-item-price { font-size: 0.8125rem; color: var(--orange); font-weight: 500; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 2px 4px;
  flex-shrink: 0;
  transition: color 0.15s;
}
.cart-item-remove:hover { color: #e05050; }
.cart-drawer-booking {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-booking h4 { font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.cart-booking-field { margin-bottom: 12px; }
.cart-booking-field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cart-booking-field input,
.cart-booking-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--dark-3);
}
.cart-booking-field input:focus,
.cart-booking-field textarea:focus { outline: none; border-color: var(--orange); }
.cart-booking-field textarea { min-height: 56px; resize: none; }
.cart-drawer-footer {
  padding: 16px 24px;
  flex-shrink: 0;
}
.cart-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.cart-total-price { color: var(--orange); }
.cart-proceed-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* Services page responsive */
@media (max-width: 1024px) {
  .services-main { padding: 24px 32px 160px; }
  .service-tiles { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .hero-picker { padding: 36px 0 32px; }
  .hero-picker-title { font-size: 1.625rem; }
  .service-tiles { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .service-tile-img { width: 60px; height: 60px; font-size: 1.5rem; }
  .service-tile-name { font-size: 0.6875rem; }

  .services-page-layout { flex-direction: column; }
  .services-sidebar {
    width: 100%;
    height: auto;
    position: sticky;
    top: var(--nav-height);
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    z-index: 10;
  }
  .services-sidebar::-webkit-scrollbar { display: none; }
  .sidebar-section-label { display: none; }
  .sidebar-cat-link {
    padding: 12px 16px;
    border-left: none;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
    font-size: 0.8125rem;
    gap: 6px;
  }
  .sidebar-cat-link.active {
    border-bottom-color: var(--orange);
    border-left-color: transparent;
    background: transparent;
    color: var(--orange);
  }
  .services-main { padding: 20px 20px 160px; }
  .service-card-uc-img { width: 90px; height: 72px; font-size: 1.75rem; }
  .service-card-uc { gap: 12px; }
  .cart-float-bar { padding: 12px 24px; }
  .cart-drawer { width: 100vw; right: -100vw; }
  .cart-drawer.open { right: 0; }
}
@media (max-width: 480px) {
  .service-tiles { grid-template-columns: repeat(4, 1fr); }
  .service-tile-img { width: 52px; height: 52px; font-size: 1.375rem; }
  .service-tile-name { font-size: 0.625rem; }
  .service-tile-price { font-size: 0.625rem; }
}

/* ============================================
   Packages & Join Page
   ============================================ */

.package-emoji {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border: 1px solid rgba(215,105,9,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-right: 14px;
}
.package-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 0;
}
.package-header > div h3 { font-size: 1.1rem; margin-bottom: 6px; }
.package-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}
.package-actions .service-add-btn { flex: 1; }
.package-actions .service-view-details { flex-shrink: 0; }

/* Join page — skills grid */
.join-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.join-skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
}
.join-skill-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.join-skill-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.join-skill-card h3 { font-size: 1rem; margin-bottom: 8px; }
.join-skill-card p { font-size: 0.875rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .join-skills-grid { grid-template-columns: repeat(2, 1fr); }
  .package-actions { flex-direction: column; }
  .package-actions .service-add-btn,
  .package-actions .service-view-details { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .join-skills-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Photo / Image Handling
   ============================================ */

/* Service tiles — circular photo */
.service-tile-img {
  overflow: hidden;
  background: var(--bg-light) !important;
}
.service-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Service cards — rectangular photo */
.service-card-uc-img {
  overflow: hidden;
  background: var(--bg-light) !important;
}
.service-card-uc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Category cards — tall banner photo */
.category-card-img {
  overflow: hidden;
  background: var(--bg-light);
  display: block;
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.04); }

/* Occasion cards — square icon photo */
.occasion-icon {
  width: 72px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 10px;
  flex-shrink: 0;
  font-size: 0; /* hide any stray text */
}
.occasion-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Trust icons — SVG */
.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border: 1px solid rgba(194,24,91,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Package card photo banner */
.package-card-img {
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -32px -32px 20px -32px;
}
.package-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.package-card:hover .package-card-img img { transform: scale(1.03); }

/* Sidebar category icons — SVG */
.sidebar-cat-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0;
}
.sidebar-cat-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Cart empty icon */
.cart-empty .empty-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: var(--bg-light);
  border-radius: 50%;
  font-size: 0;
}
.cart-empty .empty-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
}

/* Cart item icon */
.cart-item-emoji {
  background: var(--orange-light);
  border: 1px solid rgba(194,24,91,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.cart-item-emoji svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}

/* Join page skill photos */
.join-skill-photo {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.join-skill-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Step number — use gradient */
.step-number {
  background: var(--gradient);
}

/* Confirm icon */
.confirm-icon {
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

/* Mobile cart button */
.mobile-cart-btn { background: var(--gradient); }
