/* ============================================================
   Om Express Packers and Movers - Main Stylesheet
   Color Palette: Black, Orange (#E8720C), White, Dark Gray
   ============================================================ */

:root {
  --primary: #e8720c;
  --primary-dark: #c5600a;
  --primary-light: #ffb347;
  --secondary: #1a1a2e;
  --dark: #111111;
  --dark-2: #222222;
  --dark-3: #333333;
  --gray: #6c757d;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --success: #28a745;
  --warning: #e8720c;
  --font-body: "Poppins", sans-serif;
  --font-heading: "Playfair Display", serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-3);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  background: rgba(232, 114, 12, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  padding: 7px 0;
  position: relative;
  z-index: 1;
}

.topbar a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.topbar a:hover {
  color: var(--primary);
}

.btn-whatsapp-top {
  background: #25d366;
  color: white !important;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================================
   NAVBAR
   ============================================================ */
   
   .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1035;
  transform: translateY(0);
  transition: transform 0.2s ease;
}

body {
  padding-top: var(--site-header-offset, 0px);
   padding-bottom: var(--mobile-cta-offset, 0px);
}
.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-size: 0.88rem;
  color: var(--dark-3) !important;
  padding: 10px 14px !important;
  border-radius: 12px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(232, 114, 12, 0.1);
  transform: translateY(-1px);
}

.nav-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cart-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.btn-cta-nav {
  background: var(--primary) !important;
  color: white !important;
  border: none;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-cta-nav:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232, 114, 12, 0.3);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 18px;
  padding: 10px;
  min-width: 200px;
  margin-top: 10px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

.dropdown-item {
  border-radius: 12px;
  font-size: 0.85rem;
  padding: 10px 14px;
  transition: var(--transition);
  font-weight: 500;
}

.dropdown-item:hover {
  background: rgba(232, 114, 12, 0.1);
  color: var(--primary);
}

.navbar-toggler {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  padding: 0.48rem 0.7rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff7ef 100%);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.22rem rgba(232, 114, 12, 0.18);
}

.navbar-toggler-icon {
  width: 1.2em;
  height: 1.2em;
}

.mobile-call-btn,
.mobile-wa-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.mobile-call-btn {
  background: var(--primary);
  color: white;
}

.mobile-wa-btn {
  background: #25d366;
  color: white;
}

/* ============================================================
   APP HERO HOMEPAGE
   ============================================================ */
.app-hero {
  background:
    radial-gradient(
      circle at top left,
      rgba(232, 114, 12, 0.18),
      transparent 32%
    ),
    linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
  padding: 28px 0 36px;
}

.app-hero-shell {
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
  padding: 38px;
}

.app-hero-copy h1 {
  font-family: "Sora", var(--font-body);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  color: var(--dark);
  max-width: 11ch;
}

.app-hero-copy p {
  font-size: 1.05rem;
  color: #4f4f59;
  max-width: 600px;
  margin-bottom: 28px;
}

.app-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3f3f48;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-search-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ef 100%);
  border: 1px solid rgba(232, 114, 12, 0.12);
  border-radius: 22px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-search-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 1fr);
  gap: 14px;
  align-items: end;
}

.hero-search-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-3);
  margin-bottom: 8px;
}

.hero-search-panel .form-control,
.hero-search-panel .form-select,
.hero-quote-card .form-control,
.hero-quote-card .form-select {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid #d8dce3;
  background: #fff;
}

.hero-search-btn {
  min-height: 48px;
  border: none;
  border-radius: 12px;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  transition: var(--transition);
}

.hero-search-btn:hover {
  background: #000;
  transform: translateY(-1px);
}

.hero-search-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-search-tags > span {
  font-size: 0.9rem;
  color: #5a5a66;
}

.hero-tag {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
  color: var(--dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.hero-tag:hover {
  border-color: rgba(232, 114, 12, 0.45);
  color: var(--primary);
  background: rgba(232, 114, 12, 0.08);
}

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.mini-stat {
  min-width: 140px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
}

.mini-stat strong {
  display: block;
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.1;
}

.mini-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #6b7280;
}

.hero-quote-card {
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.quote-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.quote-card-head h3,
.quote-success h3 {
  font-family: "Sora", var(--font-body);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 8px 0 0;
}

.quote-badge {
  display: inline-block;
  font-size: 0.9rem;
  color: #4a4a55;
}

.quote-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff3e6;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.quote-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  color: #4a4a55;
  font-size: 0.9rem;
}

.quote-card-foot span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.quote-success {
  text-align: center;
  padding: 18px 10px;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(40, 167, 69, 0.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}

.app-service-dock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.dock-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--dark);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.05);
}

.dock-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 114, 12, 0.28);
  box-shadow: 0 16px 32px rgba(232, 114, 12, 0.12);
}

.dock-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff4ea;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dock-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
}

.app-section {
  padding: 78px 0;
}

.app-surface {
  background: linear-gradient(180deg, #fff9f2 0%, #ffffff 100%);
}

.trust-strip-modern {
  padding-top: 16px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading-row.compact {
  align-items: center;
  margin-bottom: 22px;
}

.section-heading-row .section-subtitle {
  max-width: 680px;
  margin-bottom: 0;
}

.trust-app-card,
.service-app-card,
.review-app-card,
.story-blog-card,
.faq-side-card,
.planner-card,
.app-panel,
.promo-banner {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.06);
}

.trust-app-card {
  height: 100%;
  padding: 24px;
}

.trust-app-icon,
.service-app-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fff1e4;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.trust-app-card h3,
.service-app-card h3,
.promo-banner h3,
.planner-card h2,
.app-panel h2,
.story-blog-body h3,
.review-app-card strong,
.faq-side-card strong {
  font-family: "Sora", var(--font-body);
  letter-spacing: -0.02em;
}

.trust-app-card h3 {
  font-size: 1.15rem;
  margin: 18px 0 10px;
}

.trust-app-card p {
  margin: 0;
  color: #5f6470;
  font-size: 0.95rem;
}

.service-app-card {
  display: block;
  height: 100%;
  padding: 26px;
  color: var(--dark);
}

.service-app-card:hover,
.story-blog-card:hover,
.route-app-card:hover,
.app-chip:hover,
.panel-link:hover {
  transform: translateY(-4px);
}

.service-app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-app-arrow {
  color: var(--primary);
  font-size: 1.15rem;
}

.service-app-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-app-card p {
  color: #5c6270;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--primary);
  font-size: 0.92rem;
}

.service-app-meta span {
  background: rgba(232, 114, 12, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
}

.promo-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.promo-banner {
  padding: 28px;
}

.promo-banner.primary {
  background: linear-gradient(135deg, #1f2026 0%, #2d2f38 100%);
  color: #fff;
  border-color: transparent;
}

.promo-banner.primary p,
.promo-banner.primary .promo-chip {
  color: rgba(255, 255, 255, 0.8);
}

.promo-banner.soft {
  background: #fff8f0;
}

.promo-banner.soft.alt {
  background: #f8f8ff;
}

.promo-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 114, 12, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.promo-banner h3 {
  font-size: 1.2rem;
  line-height: 1.28;
  margin-bottom: 12px;
}

.promo-banner p {
  font-size: 0.97rem;
  color: #5f6470;
  margin: 0;
}

.promo-link,
.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 18px;
}

.planner-card {
  height: 100%;
  padding: 28px;
}

.planner-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.planner-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.planner-step-no {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fff3e8;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.planner-step h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.planner-step p {
  margin: 0;
  color: #5c6270;
  font-size: 0.96rem;
}

.app-panel {
  height: 100%;
  padding: 28px;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-chip {
  margin: 0;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.04);
}

.route-grid {
  display: grid;
  gap: 14px;
}

.route-app-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
  color: var(--dark);
}

.route-city {
  font-weight: 700;
  font-size: 1rem;
}

.route-city.strong {
  text-align: right;
}

.route-path {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

.route-path span {
  width: 26px;
  height: 2px;
  background: rgba(232, 114, 12, 0.35);
  border-radius: 999px;
}

.route-time {
  grid-column: 1 / -1;
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 6px;
}

.review-app-card {
  height: 100%;
  padding: 24px;
}

.review-app-card p {
  color: #5c6270;
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 14px 0 20px;
}

.review-app-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-app-user strong,
.review-app-user span {
  display: block;
}

.review-app-user span {
  color: #6b7280;
  font-size: 0.88rem;
}

.story-blog-card {
  display: block;
  overflow: hidden;
  height: 100%;
  color: var(--dark);
}

.story-blog-image-wrap {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.story-blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.story-blog-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.08) 0%,
    rgba(17, 17, 17, 0.58) 100%
  );
}

.story-blog-art {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  min-height: 130px;
  color: #fff;
}

.story-blog-card.tone-1 .story-blog-art {
  background: linear-gradient(135deg, #1f2026 0%, #f07d11 100%);
}

.story-blog-card.tone-2 .story-blog-art {
  background: linear-gradient(135deg, #5f3dc4 0%, #2f80ed 100%);
}

.story-blog-card.tone-3 .story-blog-art {
  background: linear-gradient(135deg, #0f766e 0%, #22c55e 100%);
}

.story-blog-art span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-blog-overlay span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-blog-art i {
  font-size: 1.3rem;
}

.story-blog-overlay i {
  font-size: 1.3rem;
}

.story-blog-body {
  padding: 24px;
}

.story-blog-body h3 {
  font-size: 1.16rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.story-blog-body p {
  color: #5c6270;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.story-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #6b7280;
  font-size: 0.86rem;
}

.faq-side-card {
  padding: 24px;
}

.faq-side-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.faq-side-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
}

.page-sidebar-stack {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: start;
}

.page-sidebar-stack .hero-form-card,
.page-sidebar-stack .dashboard-card {
  margin-bottom: 0 !important;
}

body.quote-page .quote-page-sidebar {
  position: static;
  top: auto;
}

body.quote-page .quote-page-sidebar .dashboard-card {
  height: auto;
}

body.quote-page .inquiry-form-card {
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.08);
}

body.blog-page .blog-page-sidebar {
  position: sticky;
  top: 96px;
}

body.blog-page .blog-page-sidebar .dashboard-card,
body.blog-page .blog-page-sidebar .hero-form-card {
  height: auto;
}

.route-page-layout {
  align-items: stretch;
}

.locality-page-layout {
  align-items: stretch;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark-2) 40%,
    #1a1a2e 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(232, 114, 12, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(232, 114, 12, 0.08) 0%,
      transparent 50%
    );
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light),
    var(--primary)
  );
}

.hero-label {
  display: inline-flex;
  align-items: center;
  background: rgba(232, 114, 12, 0.15);
  border: 1px solid rgba(232, 114, 12, 0.3);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 114, 12, 0.4);
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 114, 12, 0.5);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.hero-form-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.hero-form-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 114, 12, 0.1);
  outline: none;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-3);
  margin-bottom: 4px;
}

.btn-submit-main {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-main:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: white;
  box-shadow: 0 4px 15px rgba(232, 114, 12, 0.4);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-strip {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
}

.trust-item .icon {
  width: 42px;
  height: 42px;
  background: rgba(232, 114, 12, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-item .content .label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.trust-item .content .sublabel {
  font-size: 0.72rem;
  color: var(--gray);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 50px 0;
}
.bg-light-section {
  background: #fafafa;
}
.bg-dark-section {
  background: var(--dark);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 25px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(232, 114, 12, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.service-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .card-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-card:hover .card-link {
  gap: 10px;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--primary);
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  color: white;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.location-chip {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-3);
  transition: var(--transition);
  text-decoration: none;
  margin: 5px;
}

.location-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(232, 114, 12, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.location-chip i {
  color: var(--primary);
  margin-right: 6px;
  font-size: 0.75rem;
}

/* Route Cards */
.route-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  text-align: center;
  height: 100%;
}

.route-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.route-card .route-from {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.route-card .route-arrow {
  color: var(--primary);
  font-size: 1.2rem;
  margin: 8px 0;
}
.route-card .route-to {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.route-card .route-meta {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 8px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stars {
  color: #ffb800;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}
.author-location {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.blog-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(232, 114, 12, 0.1),
    rgba(232, 114, 12, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
}

.blog-body {
  padding: 20px;
}

.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--gray);
  display: flex;
  gap: 12px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
}

.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}

.faq-item.open .faq-question {
  background: rgba(232, 114, 12, 0.05);
  color: var(--primary);
}

.faq-icon {
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 20px 16px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  height: 100%;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(232, 114, 12, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-content h5 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-content p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   INQUIRY FORM SECTION
   ============================================================ */
.inquiry-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 80px 0;
  position: relative;
}

.inquiry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(232, 114, 12, 0.1) 0%,
    transparent 60%
  );
}

.inquiry-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-cta-strip {
  background: var(--primary);
  padding: 40px 0;
}

.footer-cta-strip h3 {
  color: white;
  font-size: 1.5rem;
}
.footer-cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-main {
  background: var(--dark);
  padding: 60px 0 30px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-brand-panel,
.footer-link-panel,
.footer-info-panel {
  min-width: 0;
}

.footer-brand-panel .footer-widget,
.footer-link-panel .footer-widget,
.footer-info-panel .footer-widget {
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px;
}

.footer-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.footer-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(232, 114, 12, 0.12);
  color: #ffd9b4;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-trust-pill i {
  color: var(--primary);
}

.footer-contact p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact a:hover {
  color: var(--primary);
}

.footer-heading {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-links i {
  font-size: 0.7rem;
}

.footer-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.footer-quick-grid a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-quick-grid a:hover {
  color: var(--white);
  border-color: rgba(232, 114, 12, 0.4);
  background: rgba(232, 114, 12, 0.12);
  transform: translateY(-2px);
}

.footer-address-card {
  display: grid;
  gap: 14px;
}

.footer-address-block {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-address-block h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd166;
  font-size: 0.96rem;
  margin-bottom: 10px;
}

.footer-address-block p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.footer-address p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  transition: var(--transition);
}

.social-btn:hover {
  transform: translateY(-3px);
  color: white;
}
.social-btn.whatsapp {
  background: #25d366;
}
.social-btn.facebook {
  background: #1877f2;
}
.social-btn.instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #c13584,
    #e1306c,
    #fd1d1d,
    #f56040,
    #f77737,
    #fcaf45
  );
}
.social-btn.youtube {
  background: #ff0000;
}

.footer-bottom {
  background: #000;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin: 0;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1040;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  box-sizing: border-box;
}

.sticky-call,
.sticky-quote,
.sticky-whatsapp {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  gap: 3px;
  color: white;
  text-decoration: none;
  box-sizing: border-box;
}

.sticky-call {
  background: var(--primary);
}
.sticky-quote {
  background: var(--dark);
}
.sticky-whatsapp {
  background: #25d366;
}

.sticky-call i,
.sticky-quote i,
.sticky-whatsapp i {
  font-size: 1.1rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

.whatsapp-float:hover {
  color: white;
  transform: scale(1.1);
}

/* ============================================================
   PAGE HEADER / BREADCRUMB
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(232, 114, 12, 0.12) 0%,
    transparent 60%
  );
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}
.breadcrumb-item.active {
  color: var(--primary);
  /* font-size: 0.82rem; */
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-sidebar {
  background: var(--dark);
  min-height: calc(100vh - 200px);
  border-radius: var(--radius);
  padding: 25px 0;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
  color: white;
  background: rgba(232, 114, 12, 0.15);
  border-left: 3px solid var(--primary);
}

.sidebar-menu li a i {
  width: 18px;
  text-align: center;
  color: var(--primary);
}

.dashboard-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
}

.customer-dashboard-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(232, 114, 12, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #f8f9fa 0%, #f5f3ef 100%);
  min-height: calc(100vh - 200px);
  padding: 40px 0 56px;
}

.customer-dashboard-page .dashboard-page-header {
  padding: 26px 30px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fff6ee 100%);
  box-shadow: 0 20px 45px rgba(29, 29, 29, 0.06);
}

.customer-dashboard-page .dashboard-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 114, 12, 0.12);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.customer-dashboard-page .dashboard-page-header h4 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #1d1d1d;
}

.customer-dashboard-page .dashboard-page-header p {
  font-size: 0.95rem;
}

.customer-dashboard-page .dashboard-sidebar {
  position: sticky;
  top: 110px;
  min-height: auto;
  padding: 24px 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
}

.customer-dashboard-page .sidebar-menu {
  padding: 0 14px;
}

.customer-dashboard-page .sidebar-menu li + li {
  margin-top: 6px;
}

.customer-dashboard-page .sidebar-menu li a {
  border-radius: 14px;
  padding: 13px 16px;
}

.customer-dashboard-page .sidebar-menu li a:hover,
.customer-dashboard-page .sidebar-menu li a.active {
  border-left: none;
  transform: translateX(2px);
}

.customer-dashboard-page .dashboard-card,
.customer-dashboard-page .admin-stat-card {
  border-radius: 24px;
  border: 1px solid rgba(29, 29, 29, 0.08);
  box-shadow: 0 18px 36px rgba(29, 29, 29, 0.06);
}

.customer-dashboard-page .dashboard-card {
  height: auto;
}

.customer-dashboard-page .admin-stat-card {
  padding: 24px;
}

.customer-dashboard-page .dashboard-link {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

.customer-dashboard-page .dashboard-empty-state {
  padding: 56px 20px;
}

.customer-dashboard-page .dashboard-empty-state i {
  display: block;
  font-size: 2.8rem;
}

.customer-dashboard-page .dashboard-empty-state p {
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.customer-dashboard-page .table-responsive {
  border-radius: 18px;
  border: 1px solid rgba(29, 29, 29, 0.06);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.customer-dashboard-page .admin-table {
  margin-bottom: 0;
}

.customer-dashboard-page .admin-table th {
  background: #fbf7f2;
  color: #6a6258;
}

.customer-dashboard-page .admin-table td,
.customer-dashboard-page .admin-table th {
  vertical-align: middle;
  padding: 14px 16px;
}

.customer-dashboard-page .booking-status-badge {
  padding: 6px 12px;
  font-size: 0.74rem;
}

.customer-request-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
}

.customer-request-table {
  min-width: 980px;
  width: max-content;
}

.customer-request-service {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1d1d1d;
}

.customer-request-service-meta {
  margin-top: 4px;
  font-size: 0.75rem;
  color: #8a8177;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.customer-request-item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(29, 29, 29, 0.08);
}

.customer-request-item strong,
.customer-request-item small {
  display: block;
}

.customer-request-item strong {
  font-size: 0.88rem;
  line-height: 1.45;
}

.customer-request-item small {
  margin-top: 4px;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.5;
}

.customer-request-route {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  line-height: 1.5;
}

.customer-request-route + .customer-request-route {
  margin-top: 12px;
}

.customer-request-route span {
  color: var(--primary);
}

.customer-request-contact {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: #4b5563;
}

.customer-request-message {
  min-width: 250px;
  max-width: 420px;
  font-size: 0.84rem;
  line-height: 1.7;
  color: #374151;
  white-space: pre-wrap;
  word-break: break-word;
}

.customer-request-table th:nth-child(1),
.customer-request-table td:nth-child(1) {
  min-width: 250px;
}

.customer-request-table th:nth-child(2),
.customer-request-table td:nth-child(2) {
  min-width: 180px;
}

.customer-request-table th:nth-child(3),
.customer-request-table td:nth-child(3) {
  min-width: 350px;
}

.customer-request-table th:nth-child(4),
.customer-request-table td:nth-child(4) {
  min-width: 170px;
}

.customer-request-table th:nth-child(5),
.customer-request-table td:nth-child(5) {
  min-width: 110px;
}

.customer-request-table th:nth-child(6),
.customer-request-table td:nth-child(6) {
  min-width: 120px;
}

.customer-request-remove {
  border: none;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  font-size: 0.78rem;
  font-weight: 700;
}

.customer-request-remove i {
  margin-right: 6px;
}

.customer-dashboard-page .footer-cta-strip {
  margin-top: 0;
}

.customer-dashboard-page .footer-main {
  padding-top: 36px;
}

.customer-dashboard-page .footer-shell {
  align-items: start;
}

.customer-dashboard-page .footer-brand-panel .footer-widget,
.customer-dashboard-page .footer-link-panel .footer-widget,
.customer-dashboard-page .footer-info-panel .footer-widget {
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.booking-status-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.status-pending {
  background: rgba(255, 193, 7, 0.15);
  color: #d39e00;
}
.status-confirmed {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}
.status-in_progress {
  background: rgba(232, 114, 12, 0.15);
  color: var(--primary);
}
.status-completed {
  background: rgba(23, 162, 184, 0.15);
  color: #17a2b8;
}
.status-cancelled {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}
.status-new {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}
.status-read {
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}
.status-replied {
  background: rgba(59, 130, 246, 0.14);
  color: #2563eb;
}
.status-closed {
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232, 114, 12, 0.35);
}

.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: white;
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-sidebar {
  background: var(--dark);
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  z-index: 100;
  transition: var(--transition);
  overflow-y: auto;
}

.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: #f8f9fa;
}

.admin-topbar {
  background: var(--white);
  padding: 15px 25px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.admin-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.admin-stat-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}
.admin-stat-card .label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
}

.admin-table {
  font-size: 0.85rem;
}
.admin-table th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  background: #f8f9fa;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(232, 114, 12, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 15px;
}

.process-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ============================================================
   ALERTS & MISC
   ============================================================ */
.alert {
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  border: none;
}
.alert-success {
  background: rgba(40, 167, 69, 0.1);
  color: #155724;
}
.alert-danger {
  background: rgba(220, 53, 69, 0.1);
  color: #721c24;
}
.alert-info {
  background: rgba(23, 162, 184, 0.1);
  color: #0c5460;
}

.table-responsive {
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .customer-dashboard-section {
    padding: 28px 0 42px;
  }

  .customer-dashboard-page .dashboard-sidebar {
    position: static;
    top: auto;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    width: 100%;
    position: relative;
    min-height: auto;
  }
  .admin-content {
    margin-left: 0;
  }
  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }
  .app-hero-shell {
    padding: 24px;
  }
  .hero-search-grid {
    grid-template-columns: 1fr;
  }
  .app-service-dock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-heading-row {
    flex-direction: column;
    align-items: start;
  }
  .route-app-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .route-city.strong {
    text-align: left;
  }
  .route-path {
    justify-content: flex-start;
  }
  .page-sidebar-stack {
    position: static;
    top: auto;
  }
}

@media (max-width: 1199.98px) {
  .main-navbar .container {
    flex-wrap: wrap;
    overflow: visible;
    row-gap: 12px;
  }

  .main-navbar .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    margin-top: 2px;
    padding-top: 4px;
    max-height: calc(95vh - var(--site-header-offset, 0px) - var(--mobile-cta-offset, 0px) - 16px);
    overflow-y: auto;
  }

  .main-navbar .navbar-collapse.show,
  .main-navbar .navbar-collapse.collapsing {
    display: block;
  }
}


@media (max-width: 767px) {
  .customer-dashboard-page .dashboard-page-header {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .customer-dashboard-page .dashboard-card,
  .customer-dashboard-page .admin-stat-card {
    border-radius: 20px;
  }

  .customer-dashboard-page .admin-table td,
  .customer-dashboard-page .admin-table th {
    padding: 12px 14px;
  }

  .customer-request-table {
    min-width: 980px;
    width: max-content;
  }

  .customer-request-message {
    min-width: 0;
    max-width: 320px;
  }

  .service-request-detail-card {
    padding: 18px;
  }

  .service-request-detail-head {
    flex-direction: column;
  }

  .footer-brand-panel .footer-widget,
  .footer-link-panel .footer-widget,
  .footer-info-panel .footer-widget {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .footer-quick-grid {
    grid-template-columns: 1fr;
  }
  .main-navbar,
  .main-footer,
  .footer-main,
  .footer-bottom,
  .footer-cta-strip,
  .mobile-sticky-cta {
    width: 100%;
    max-width: 100%;
  }
  .main-navbar .container {
    padding-left: 12px;
    padding-right: 12px;
    flex-wrap: wrap;
    overflow: visible;
    row-gap: 12px;
  }
  .navbar-brand {
    margin-right: 0;
    min-width: 0;
    flex: 1 1 auto;
  }
  .nav-logo {
    height: 42px;
  }
  .main-navbar .d-lg-none {
    margin-right: 8px !important;
    flex-shrink: 0;
  }
  .mobile-call-btn,
  .mobile-wa-btn {
    width: 34px;
    height: 34px;
  }
  .navbar-toggler {
    flex-shrink: 0;
    margin-left: auto;
    padding: 0.42rem 0.6rem;
  }
  .main-navbar .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    margin-top: 2px;
    padding-top: 4px;
     max-height: calc(100vh - var(--site-header-offset, 0px) - var(--mobile-cta-offset, 0px) - 16px);
    overflow-y: auto;
  }
  .main-navbar .navbar-collapse.show,
  .main-navbar .navbar-collapse.collapsing {
    display: block;
  }
  .main-navbar .navbar-nav {
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 22px 40px rgba(17, 17, 17, 0.08);
  }
  .main-navbar .navbar-nav .nav-item {
    width: 100%;
  }
  .main-navbar .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px !important;
    border: 1px solid rgba(17, 17, 17, 0.05);
    background: rgba(255, 255, 255, 0.72);
  }
  .main-navbar .navbar-nav .nav-link:hover,
  .main-navbar .navbar-nav .nav-link.active {
    transform: none;
    border-color: rgba(232, 114, 12, 0.18);
  }
  .main-navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    min-width: 100%;
    margin-top: 8px;
    padding: 8px;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
    background: #fffdf9;
    backdrop-filter: none;
  }
  .main-navbar .dropdown-item {
    white-space: normal;
  }
  .main-navbar .btn-cta-nav {
    width: 100%;
    justify-content: center;
    padding: 12px 18px !important;
    border-radius: 14px !important;
    margin-top: 6px;
  }
  .main-navbar .nav-item.ms-lg-2 {
    margin-left: 0 !important;
  }
  .section-pad {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .footer-bottom {
    padding-bottom: 70px;
  }
  .hero-stats {
    gap: 15px;
    justify-content: center;
  }
  .trust-item {
    justify-content: center;
  }
  .topbar .row {
    row-gap: 6px;
  }
  .topbar-left,
  .topbar-right {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  .topbar .col-md-5.text-end {
    text-align: center !important;
  }
  .inquiry-form-card {
    padding: 25px 20px;
  }
  .hero-form-card {
    padding: 25px 20px;
  }
  .app-hero {
    padding: 16px 0 24px;
  }
  .app-hero-shell {
    border-radius: 20px;
    padding: 18px;
  }
  .app-hero-copy h1 {
    max-width: none;
  }
  .hero-quote-card {
    padding: 20px;
    border-radius: 20px;
  }
  .app-service-dock {
    grid-template-columns: 1fr;
  }
  .app-section {
    padding: 52px 0;
  }
  .hero-search-panel,
  .trust-app-card,
  .service-app-card,
  .promo-banner,
  .planner-card,
  .app-panel,
  .review-app-card,
  .story-blog-body,
  .faq-side-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .story-blog-art {
    padding: 20px;
  }
  .planner-step {
    grid-template-columns: 46px 1fr;
  }
  .planner-step-no {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 20px;
    font-size: 0.88rem;
  }
  .main-navbar .navbar-nav {
    border-radius: 0px;
    border: none;
    box-shadow: none;
    padding: 14px 0px;
  }
}


/* Swiper styles */
.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}
.swiper-button-next,
.swiper-button-prev {  
  color: var(--primary) !important;
}

/* Utility classes */
.text-primary-custom {
  color: var(--primary) !important;
}
.bg-primary-custom {
  background: var(--primary) !important;
}
.border-primary-custom {
  border-color: var(--primary) !important;
}
.rounded-custom {
  border-radius: var(--radius) !important;
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 38px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-md);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   MARKETPLACE HOMEPAGE
   ============================================================ */
body.market-homepage {
  background: #f8fbff;
  color: #21345d;
}

body.market-homepage .main-navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(71, 104, 204, 0.12);
  box-shadow: none;
  padding: 16px 0;
}

body.market-homepage .nav-logo {
  height: 50px;
}

body.market-homepage .navbar-nav .nav-link {
  color: #2c416f !important;
  font-weight: 500;
}

body.market-homepage .btn-cta-nav {
  background: #5d84ea !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
}

.market-section {
  padding: 42px 0;
}

.market-proof-strip {
  padding: 24px 0;
  background: #fff;
}

.market-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.market-proof-card {
  min-height: 114px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 18px 16px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

.market-proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.market-proof-icon.trophy {
  color: #d89a00;
}

.market-proof-icon.verified {
  color: #21a738;
}

.market-proof-icon.cities {
  color: #4186d9;
}

.market-proof-icon.rating {
  color: #f0b100;
}

.market-proof-value {
  font-family: "Sora", var(--font-body);
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 800;
  color: #0c5f7d;
  margin-bottom: 8px;
}

.market-proof-label {
  font-size: 0.68rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #516072;
}

.market-light-surface {
  background: #f2f7ff;
}

.market-hero {
  position: relative;
  background: #fff;
}

.market-hero .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.market-hero-inner {
  position: relative;
  min-height: 400px;
  padding: 34px 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    url("../images/hero-img1.jpg") right center / cover no-repeat;
  border-radius: 0 0 28px 28px;
}

.market-hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.market-hero-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d84ea;
  margin-bottom: 16px;
}

.market-hero-copy h1 {
  font-family: "Sora", var(--font-body);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  color: #223a67;
  margin-bottom: 16px;
}

.market-hero-copy p {
  font-size: 1.06rem;
  color: #000000;
  max-width: 650px;
  margin: 0 auto 24px;
}

.market-search {
  background: #fff;
  border: 1px solid rgba(93, 132, 234, 0.22);
  border-radius: 26px;
  box-shadow: 0 22px 44px rgba(82, 112, 183, 0.14);
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr) 76px;
  gap: 12px;
  align-items: stretch;
  max-width: 740px;
  margin: 0 auto;
}

.market-search-field {
  text-align: left;
  min-width: 0;
}

.market-search-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7b88a8;
  margin-bottom: 6px;
}

.market-combo {
  position: relative;
}

.market-combo-input {
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 1px solid rgba(36, 52, 93, 0.18);
  border-radius: 16px;
  padding: 0 54px 0 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #253c66;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.market-combo-input::placeholder {
  color: #7080a6;
  font-weight: 500;
}

.market-combo-input:focus {
  outline: none;
  border-color: rgba(232, 114, 12, 0.35);
  box-shadow: 0 0 0 4px rgba(232, 114, 12, 0.08);
}

.market-combo-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 12px;
  background: #f5f7ff;
  color: #526ca4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.market-combo.is-open .market-combo-toggle i {
  transform: rotate(180deg);
}

.market-combo-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 20;
  background: #fff;
  border: 1px solid rgba(36, 52, 93, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
  padding: 10px;
  max-height: 280px;
  overflow-y: auto;
  display: none;
}

.market-combo.is-open .market-combo-menu {
  display: block;
}

.market-combo-group + .market-combo-group {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(36, 52, 93, 0.08);
}

.market-combo-group-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a93aa;
  padding: 6px 8px 4px;
}

.market-combo-option {
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
  color: #253c66;
}

.market-combo-option:hover,
.market-combo-option.is-selected {
  background: #fff5eb;
}

.market-combo-option span {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.market-combo-option small {
  font-size: 0.78rem;
  color: #7c87a0;
}

.market-combo-empty {
  display: none;
  padding: 12px;
  color: #7c87a0;
  font-size: 0.88rem;
}

.market-combo-menu.is-empty .market-combo-empty {
  display: block;
}

.market-search-btn {
  width: 100%;
  height: 56px;
  border: none;
  align-self: flex-end;
  border-radius: 20px;
  background: linear-gradient(135deg, #f07d11 0%, #e8720c 100%);
  color: #fff;
  font-size: 1.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(232, 114, 12, 0.24);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.market-search-btn:hover {
  background: linear-gradient(135deg, #dd6f0b 0%, #c5600a 100%);
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(232, 114, 12, 0.28);
}

.market-search-btn-text {
  display: none;
  font-size: 0.92rem;
}

.market-hero-shape {
  display: none;
}

.market-hero-shape-left {
  width: 180px;
  height: 180px;
  left: -58px;
  top: 190px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 11px,
    rgba(93, 132, 234, 0.95) 11px 14px
  );
  opacity: 0.9;
}

.market-hero-shape-right {
  top: 0;
  right: 0;
  width: 370px;
  height: 220px;
  background: linear-gradient(135deg, #79acf7 0%, #5d84ea 100%);
  border-bottom-left-radius: 140px;
}

.market-hero-dots {
  display: none;
}

.market-hero-dots-right {
  top: 230px;
  right: 95px;
}

.market-category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  margin-bottom: 26px;
}

.market-category-card {
  background: #fff;
  border: 1px solid rgba(93, 132, 234, 0.12);
  border-radius: 18px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: #29406f;
  box-shadow: 0 12px 28px rgba(82, 112, 183, 0.06);
}

.market-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(82, 112, 183, 0.12);
}

.market-category-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eff4ff 0%, #dfe9ff 100%);
  color: #4f79e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.market-category-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.market-booking-process {
  max-width: 1080px;
  margin: 0 auto;
}

.market-booking-head {
  text-align: center;
  margin-bottom: 28px;
}

.market-booking-head h2 {
  font-family: "Sora", var(--font-body);
  font-size: 2rem;
  color: #21345d;
  margin: 0;
}

.market-booking-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.market-booking-step {
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 6px;
  padding: 22px 18px 20px;
  text-align: center;
  min-height: 158px;
}

.market-booking-icon {
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 12px;
}

.market-booking-step h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0 0 10px;
}

.market-booking-step p {
  font-size: 0.77rem;
  line-height: 1.55;
  color: #5f6f86;
  margin: 0;
}

.market-why-section {
  background: #fff;
}

.market-why-heading {
  margin-bottom: 28px;
}

.market-why-heading h2 {
  font-family: "Sora", var(--font-body);
  font-size: 2rem;
  color: var(--market-accent-dark);
  margin: 0 0 10px;
}

.market-why-heading-line {
  display: inline-block;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1db6d2 0 20%, #4c7eea 20% 40%, #7f6df2 40% 60%, #52c36d 60% 80%, #f0951b 80% 100%);
}

.market-why-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 26px;
}

.market-why-reference-card {
  position: relative;
  min-height: 160px;
  background: #fff;
  border: 1px dashed #d9d9d9;
  padding: 34px 18px 18px 22px;
}

.market-why-reference-badge {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d9d9d9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.market-why-reference-badge::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: currentColor;
  border-right-color: currentColor;
  opacity: 0.7;
}

.market-why-reference-badge.is-blue {
  color: #4c7eea;
}

.market-why-reference-badge.is-green {
  color: #46b96d;
}

.market-why-reference-badge.is-indigo {
  color: #6d82ea;
}

.market-why-reference-badge.is-orange {
  color: #f0951b;
}

.market-why-reference-badge.is-yellow {
  color: #d9a018;
}

.market-why-reference-card h3 {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #1f1f1f;
  margin: 0 0 8px;
}

.market-why-reference-card p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.6;
  color: #7a7a7a;
}

.market-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.market-section-head h2 {
  font-family: "Sora", var(--font-body);
  font-size: 2rem;
  color: #223a67;
  margin-bottom: 8px;
}

.market-section-head p {
  color: #66789c;
  margin: 0;
}

.market-see-all,
.market-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid #5d84ea;
  border-radius: 12px;
  color: #5d84ea;
  font-weight: 600;
  background: #fff;
}

.market-outline-btn.secondary {
  border-color: #d6e1ff;
  color: #223a67;
}

.market-scroll-shell {
  position: relative;
}

.market-scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 6px 0 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.market-scroll-row::-webkit-scrollbar {
  display: none;
}

.market-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(93, 132, 234, 0.18);
  border-radius: 50%;
  background: #fff;
  color: #223a67;
  box-shadow: 0 8px 18px rgba(82, 112, 183, 0.14);
  z-index: 2;
}

.market-scroll-btn.prev {
  left: -18px;
}

.market-scroll-btn.next {
  right: -18px;
}

.market-service-tile,
.market-service-card-wide,
.market-route-card,
.market-locality-card,
.market-review-card,
.market-story-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.market-service-tile {
  width: 250px;
  color: #223a67;
}

.market-service-thumb {
  width: 100%;
  height: 170px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef4ff;
}

.market-service-thumb.large {
  height: 210px;
}

.market-service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-service-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5d84ea;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #eef4ff 0%, #dfe9ff 100%);
}

.market-service-tile h3 {
  font-size: 1.1rem;
  margin: 12px 0 0;
  line-height: 1.35;
}

.market-feature-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.market-feature-overlay {
  position: absolute;
  inset: 0;
}

.market-feature-image {
  width: 100%;
  max-height: none;
  background-size: cover;
  object-position: center;
  border-radius: 0;
  border-radius: 24px;
}

.market-feature-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  min-height: 430px;
  padding: 42px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.market-feature-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.market-feature-actions {
  margin-top: 20px;
}

.market-feature-content h2 {
  color: #fff;
  font-family: "Sora", var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin: 18px 0 12px;
}

.market-feature-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  margin-bottom: 26px;
  max-width: 620px;
}

.market-feature-action {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 14px;
  background: #5d84ea;
  color: #fff;
  font-weight: 700;
}

.market-service-card-wide {
  width: 300px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(93, 132, 234, 0.1);
  overflow: hidden;
  color: #21345d;
  box-shadow: 0 10px 24px rgba(82, 112, 183, 0.08);
}

.market-service-info {
  padding: 16px;
}

.market-service-info h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}

.market-service-info p {
  color: #66789c;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.market-route-card {
  width: 290px;
  background: #fff;
  border: 1px solid rgba(93, 132, 234, 0.1);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(82, 112, 183, 0.08);
  color: #233b67;
}

.market-route-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.market-route-top i {
  color: #5d84ea;
}

.market-route-card p {
  margin: 0;
  color: #6a7ca0;
}

.market-locality-card {
  background: #fff;
  border: 1px solid rgba(93, 132, 234, 0.12);
  border-radius: 20px;
  padding: 18px;
  color: #233b67;
  box-shadow: 0 10px 24px rgba(82, 112, 183, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.market-locality-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  color: #5d84ea;
  font-size: 1rem;
}

.market-locality-card strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.market-locality-card span:last-child {
  color: #67799d;
  font-size: 0.86rem;
  line-height: 1.5;
}

.market-review-card {
  width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(93, 132, 234, 0.08);
  box-shadow: 0 10px 24px rgba(82, 112, 183, 0.08);
}

.market-review-card p {
  color: #5f7196;
  line-height: 1.75;
  margin: 14px 0 18px;
}

.market-review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.market-review-user strong,
.market-review-user span {
  display: block;
}

.market-review-user span {
  color: #6e7ea0;
  font-size: 0.88rem;
}

.market-story-row {
  gap: 20px;
}

.market-story-card {
  width: 290px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 385px;
  background: #dfe9ff;
  box-shadow: 0 14px 28px rgba(82, 112, 183, 0.12);
}

.market-story-media,
.market-story-media img,
.market-story-fallback {
  width: 100%;
  height: 100%;
}

.market-story-media {
  position: relative;
}

.market-story-media img {
  object-fit: cover;
}

.market-story-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dce7ff 0%, #bfd2ff 100%);
  color: #5d84ea;
  font-size: 2.5rem;
}

.market-story-body {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 16px;
}

.market-story-body h3 {
  font-size: 1.1rem;
  line-height: 1.42;
  color: #20375f;
  margin-top: 8px;
}

.market-story-body p {
  font-size: 0.88rem;
  color: #6b7b9b;
  margin: 0;
}

.blog-story-card {
  display: block;
  width: 100%;
}

.blog-story-card .market-story-media {
  min-height: 235px;
}

.blog-story-card .market-story-fallback {
  min-height: 235px;
}

.blog-story-card .market-story-body {
  display: flex;
  flex-direction: column-reverse;
}

.blog-story-date-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #20375f;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(32, 55, 95, 0.14);
}

.market-pro-section {
  padding-top: 26px;
  padding-bottom: 54px;
}

.market-pro-card {
  background: #fff;
  border: 1px solid rgba(93, 132, 234, 0.12);
  border-radius: 28px;
  padding: 56px 28px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(82, 112, 183, 0.08);
}

.market-pro-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: #eef4ff;
  color: #5d84ea;
  font-size: 1.9rem;
}

.market-pro-card h2 {
  font-family: "Sora", var(--font-body);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #243c67;
  margin-bottom: 16px;
}

.market-pro-card p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #617396;
  font-size: 1.05rem;
}

.market-pro-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.market-state-grid,
.market-locality-grid {
  display: grid;
  gap: 16px;
}

.market-state-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.market-locality-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.market-state-card {
  background: #fff;
  border: 1px solid rgba(232, 114, 12, 0.12);
  border-radius: 20px;
  padding: 22px;
  color: #24345d;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
}

.market-route-state-row .market-state-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.market-route-page-row {
  gap: 18px;
}

.market-route-page {
  flex: 0 0 min(100%, 1120px);
  scroll-snap-align: start;
}

.market-route-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.route-search-panel {
  max-width: 760px;
  margin: 0 auto 28px;
}

.route-search-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #24345d;
}

.route-search-input-wrap {
  position: relative;
}

.route-search-input-wrap i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a89aa;
  font-size: 0.95rem;
  pointer-events: none;
}

.route-search-input {
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(232, 114, 12, 0.16);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.05);
  padding: 15px 18px 15px 48px;
  font-size: 1rem;
  color: #24345d;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.route-search-input:focus {
  outline: none;
  border-color: rgba(232, 114, 12, 0.42);
  box-shadow: 0 12px 28px rgba(232, 114, 12, 0.12);
}

.route-search-input::placeholder {
  color: #8d99b2;
}

.route-search-help {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: #6a7897;
}

.route-search-empty {
  margin-top: 20px;
  padding: 34px 24px;
  border-radius: 22px;
  border: 1px dashed rgba(232, 114, 12, 0.24);
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
  text-align: center;
  color: #24345d;
}

.route-search-empty i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.route-search-empty h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.route-search-empty p {
  margin: 0;
  color: #6a7897;
}


.market-route-compact-card {
  background: #fff;
  border: 1px solid rgba(232, 114, 12, 0.12);
  border-radius: 18px;
  padding: 14px 14px 12px;
  color: #24345d;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.market-route-compact-card strong {
  font-size: 0.95rem;
  line-height: 1.4;
}

.market-route-compact-card span:last-child {
  color: #6f7484;
  font-size: 0.8rem;
  line-height: 1.45;
}

.market-state-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(232, 114, 12, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.market-state-card strong {
  font-size: 1.06rem;
}

.market-state-card span:last-child {
  color: #6f7484;
  font-size: 0.9rem;
}

body.market-homepage {
  --market-accent: var(--primary);
  --market-accent-dark: #24345d;
  --market-border: rgba(232, 114, 12, 0.14);
}

body.market-homepage .btn-cta-nav,
body.market-homepage .market-search-btn,
body.market-homepage .market-feature-action,
body.market-homepage .market-outline-btn.secondary {
  background: var(--market-accent) !important;
  color: #fff !important;
}

body.market-homepage .market-hero-kicker,
body.market-homepage .market-category-icon,
body.market-homepage .market-locality-icon,
body.market-homepage .market-route-top i,
body.market-homepage .market-story-fallback,
body.market-homepage .market-pro-icon,
body.market-homepage .market-state-label,
body.market-homepage .market-search-field label,
body.market-homepage .market-see-all,
body.market-homepage .market-outline-btn {
  color: var(--market-accent);
}

body.market-homepage .market-hero-copy h1,
body.market-homepage .market-section-head h2,
body.market-homepage .market-pro-card h2,
body.market-homepage .market-story-body h3,
body.market-homepage .market-service-tile h3,
body.market-homepage .market-service-info h3,
body.market-homepage .market-locality-card,
body.market-homepage .market-route-card,
body.market-homepage .market-state-card,
body.market-homepage .market-category-card {
  color: var(--market-accent-dark);
}

body.market-homepage .market-search,
body.market-homepage .market-category-card,
body.market-homepage .market-service-card-wide,
body.market-homepage .market-route-card,
body.market-homepage .market-locality-card,
body.market-homepage .market-review-card,
body.market-homepage .market-story-card,
body.market-homepage .market-state-card,
body.market-homepage .market-pro-card {
  border-color: var(--market-border);
}

body.market-homepage .market-category-icon,
body.market-homepage .market-locality-icon,
body.market-homepage .market-pro-icon,
body.market-homepage .market-service-fallback,
body.market-homepage .market-story-fallback {
  background: linear-gradient(135deg, #fff7ef 0%, #ffe7d2 100%);
}

body.market-homepage .market-promo-card.tone-1 {
  background: linear-gradient(135deg, #f7c090 0%, #f38e37 100%);
}

body.market-homepage .market-promo-card.tone-2 {
  background: linear-gradient(135deg, #ffd594 0%, #f6a533 100%);
}

body.market-homepage .market-promo-card.tone-3 {
  background: linear-gradient(135deg, #f9dfc5 0%, #f3bf8f 100%);
}

body.market-homepage .market-hero-shape-right {
  background: linear-gradient(135deg, #f1c28f 0%, #fb9b48 100%);
}

body.market-homepage .market-hero-shape-left {
  background: repeating-linear-gradient(
    45deg,
    transparent 0 11px,
    rgba(232, 114, 12, 0.82) 11px 14px
  );
}

body.market-homepage .market-hero-dots {
  background-image: radial-gradient(var(--market-accent) 2px, transparent 2px);
}

body.market-homepage .market-light-surface {
  background: #fff8f2;
}

@media (max-width: 991px) {
  .market-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .market-category-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .market-booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .market-why-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .market-state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .market-locality-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .market-feature-content {
    padding: 34px 26px;
  }
  .market-feature-content {
    min-height: auto;
    max-width: none;
  }

  .market-route-page-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .market-section {
    padding: 30px 0;
  }
  .market-proof-strip {
    padding: 20px 0;
  }
  .market-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .market-proof-card {
    min-height: 102px;
    padding: 16px 14px;
  }
  .market-proof-value {
    font-size: 1.6rem;
  }
  .market-booking-head {
    margin-bottom: 20px;
  }
  .market-booking-head h2 {
    font-size: 1.08rem;
  }
  .market-booking-grid {
    grid-template-columns: 1fr;
  }
  .market-booking-step {
    min-height: auto;
    padding: 18px 16px;
  }
  .market-why-heading {
    margin-bottom: 20px;
  }
  .market-why-heading h2 {
    font-size: 1.45rem;
  }
  .market-why-reference-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .market-why-reference-card {
    min-height: auto;
    padding: 30px 16px 16px 18px;
  }
  .market-why-reference-badge {
    width: 48px;
    height: 48px;
    top: -12px;
    left: -12px;
    font-size: 1rem;
  }
  .market-why-reference-card h3 {
    font-size: 0.78rem;
  }
  .market-why-reference-card p {
    font-size: 0.72rem;
  }
  .market-hero-inner {
    min-height: auto;
  }
  .market-hero-copy h1 {
    font-size: 2rem;
  }
  .market-hero-copy p {
    font-size: 0.95rem;
  }
  .market-search {
    grid-template-columns: 1fr;
    border-radius: 18px;
    max-width: none;
  }
  .market-combo-input {
    height: 52px;
    font-size: 0.94rem;
  }
  .market-combo-menu {
    max-height: 220px;
  }
  .market-search-btn {
    height: 52px;
    border-radius: 14px;
    min-height: 52px;
  }
  .market-search-btn-text {
    display: inline;
  }
  .market-category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .market-state-grid,
  .market-locality-grid {
    grid-template-columns: 1fr 1fr;
  }
  .market-locality-grid {
    gap: 12px;
  }
  .market-locality-card {
    padding: 14px;
    border-radius: 16px;
    gap: 8px;
  }
  .market-locality-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 0.9rem;
  }
  .market-locality-card strong {
    font-size: 0.9rem;
  }
  .market-locality-card span:last-child {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .market-route-page-grid {
    grid-template-columns: 1fr;
  }
  
  .route-search-panel {
    margin-bottom: 22px;
  }
  .route-search-input {
    min-height: 54px;
    border-radius: 16px;
    font-size: 0.95rem;
  }
  
  .market-route-compact-card {
    padding: 13px 12px 11px;
  }
  .market-route-compact-card strong {
    font-size: 0.9rem;
  }
  .market-route-compact-card span:last-child {
    font-size: 0.78rem;
  }
  .market-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .market-section-head h2 {
    font-size: 1.55rem;
  }

  .market-story-card {
    min-height: 350px;
  }
  .market-feature-banner {
    min-height: auto;
  }
  .market-feature-content {
    min-height: 330px;
    padding: 34px 22px;
  }
  .market-hero-shape-left,
  .market-hero-dots-right {
    display: none;
  }
  .market-hero-shape-right {
    width: 180px;
    height: 120px;
    border-bottom-left-radius: 70px;
  }
  .market-pro-card {
    padding: 40px 20px;
  }
  .scroll-top-btn {
    bottom: 80px;
    right: 20px;
  }
}

@media (max-width: 575.98px) {

  .market-hero-inner{
    padding: 25px 10px 30px;
  }
  .market-route-page {
    flex-basis: 100%;
  }

  .market-route-compact-card {
    padding: 12px 12px 10px;
    border-radius: 16px;
  }

  .market-route-compact-card strong {
    font-size: 0.88rem;
  }

  .market-route-compact-card span:last-child {
    font-size: 0.76rem;
  }

  .market-scroll-btn {
    width: 34px;
    height: 34px;
  }
  .market-scroll-btn.prev {
    left: 0px;
  }

  .market-scroll-btn.next {
    right: 0px;
  }
  .market-pro-card {
    border: none;
    border-radius: 0px;
    box-shadow: none;
    padding: 40px 0px;
  }
}

/* ============================================================
   FOOTER REDESIGN OVERRIDES
   ============================================================ */
.footer-main {
  background: linear-gradient(180deg, #fbf8f3 0%, #f6f1ea 100%);
  padding: 0 0 28px;
}

.footer-surface {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0;
  padding: 96px 24px 36px;
  box-shadow: 0 18px 50px rgba(49, 31, 7, 0.08);
  overflow: hidden;
  width: 100%;
}

.footer-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 108px;
  background:
    radial-gradient(
      60% 140px at 10% 0%,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.98) 56%,
      transparent 57%
    ),
    radial-gradient(
      52% 140px at 48% 0%,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.92) 56%,
      transparent 57%
    ),
    radial-gradient(
      58% 150px at 88% 0%,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.96) 56%,
      transparent 57%
    );
  pointer-events: none;
}

.footer-container {
  max-width: 1540px;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr) minmax(0, 0.82fr) minmax(0, 0.78fr)
    minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.footer-brand-panel,
.footer-link-panel,
.footer-info-panel,
.footer-widget {
  min-width: 0;
}

.footer-widget {
  background: transparent;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-brand-mark {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 1.5px solid rgba(29, 29, 29, 0.16);
  background: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.footer-brand-copy {
  padding-left: 18px;
  border-left: 1px solid rgba(29, 29, 29, 0.12);
}

.footer-brand-title {
  font-size: 1.08rem;
  line-height: 1.34;
  font-weight: 800;
  color: #1d1d1d;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: #5c564e;
  line-height: 1.68;
  margin-bottom: 14px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #555048;
  margin-bottom: 8px;
}

.footer-contact i {
  color: #1d1d1d;
  margin-top: 4px;
}

.footer-contact a {
  color: #555048;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-heading {
  color: #1d1d1d;
  font-size: 1.04rem;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #3c3934;
  transition: var(--transition);
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0;
}

.footer-address-card {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.footer-address-block {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.footer-address-block h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1d1d1d;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer-address-block p {
  margin: 0;
  font-size: 0.86rem;
  color: #5e5951;
  line-height: 1.58;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #1d1d1d;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(29, 29, 29, 0.12);
}

.social-btn:hover {
  transform: translateY(-3px);
  color: #1d1d1d;
}

.footer-bottom {
  background: linear-gradient(180deg, #f6f1ea 0%, #f6f1ea 100%);
  padding: 0 0 30px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(29, 29, 29, 0.14);
  padding-top: 24px;
}

.footer-bottom p {
  color: #504b44;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links,
.footer-bottom-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #504b44;
  font-size: 0.9rem;
}

.footer-bottom-links a,
.footer-bottom-meta span {
  color: #504b44;
}

.footer-bottom-meta i {
  margin-right: 6px;
}

@media (max-width: 1199px) {
  .footer-surface {
    padding: 78px 28px 30px;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px 40px;
  }

  .footer-brand-panel,
  .footer-info-panel {
    grid-column: 1 / -1;
  }

  .footer-brand-feature {
    grid-template-columns: 96px 1fr;
  }

  .footer-brand-mark {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 991px) {
  .footer-surface {
    padding: 70px 24px 28px;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-panel,
  .footer-info-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .footer-surface {
    padding: 60px 20px 24px;
    border-radius: 0;
  }

  .footer-wave {
    height: 82px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand-feature {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-brand-mark {
    width: 88px;
    height: 88px;
  }

  .footer-brand-copy {
    padding-left: 0;
    border-left: none;
  }

  .footer-brand-title {
    font-size: 1rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   SIMPLE FOOTER OVERRIDES
   ============================================================ */
.footer-main {
  background: #f8f5ef;
  padding: 54px 0 0;
  border-top: 1px solid rgba(29, 29, 29, 0.08);
}

.footer-surface {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.footer-wave {
  display: none;
}

.footer-container {
  max-width: 1320px;
}

.footer-shell {
  grid-template-columns:
    minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.82fr)
    minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.footer-brand-feature {
  display: block;
}

.footer-brand-mark {
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 24px;
  justify-content: flex-start;
}

.footer-logo {
  height: 56px;
}

.footer-brand-copy {
  padding-left: 0;
  border-left: none;
}

.footer-brand-title {
  font-size: 1.08rem;
  line-height: 1.45;
  margin-bottom: 14px;
  max-width: 320px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 360px;
  margin-bottom: 22px;
}

.footer-heading {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #2f2b27;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-address-card {
  gap: 20px;
  margin-top: 8px;
}

.footer-address-block h6 {
  margin-bottom: 8px;
}

.footer-address-block p {
  font-size: 0.94rem;
  line-height: 1.75;
  max-width: 360px;
}

.footer-social {
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(29, 29, 29, 0.16);
}

.social-btn:hover {
  border-color: rgba(232, 114, 12, 0.45);
  background: rgba(232, 114, 12, 0.08);
}

.footer-bottom {
  background: #f8f5ef;
  padding: 26px 0 30px;
}

.footer-bottom-row {
  border-top: 1px solid rgba(29, 29, 29, 0.12);
  padding-top: 22px;
}

.footer-bottom p,
.footer-bottom-links,
.footer-bottom-meta {
  font-size: 0.94rem;
}

@media (max-width: 1199px) {
  .footer-shell {
    grid-template-columns: 1fr 1fr;
    gap: 36px 42px;
  }

  .footer-brand-panel,
  .footer-info-panel {
    grid-column: 1 / -1;
  }

  .footer-desc,
  .footer-address-block p {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .footer-main {
    padding-top: 42px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand-panel,
  .footer-info-panel {
    grid-column: auto;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-brand-title,
  .footer-desc {
    max-width: none;
  }

  .footer-bottom-row {
    gap: 10px;
  }

  .footer-bottom-links,
  .footer-bottom-meta {
    flex-wrap: wrap;
  }
}

/* ============================================================
   SERVICE CATALOG PAGE
   ============================================================ */
body.modal-open {
  overflow: hidden;
}

.service-catalog-shell {
  padding: 26px 0 18px;
  background:
    radial-gradient(
      circle at top left,
      rgba(232, 114, 12, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, #f8f7f3 0%, #ffffff 100%);
}

.service-catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #121212 0%, #232323 52%, #2c1707 100%);
  box-shadow: 0 30px 65px rgba(17, 17, 17, 0.16);
}

.service-catalog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 18px;
}

.service-catalog-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.service-catalog-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffe7c8;
  font-size: 0.86rem;
  margin-bottom: 20px;
}

.service-catalog-location i {
  color: #ffb357;
}

.service-catalog-location small {
  color: rgba(255, 255, 255, 0.58);
}

.service-catalog-hero h1 {
  font-family: "Sora", var(--font-body);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  margin-bottom: 14px;
  color: #fff;
}

.service-catalog-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-catalog-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.service-catalog-call,
.service-catalog-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.service-catalog-call {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 18px 30px rgba(232, 114, 12, 0.28);
}

.service-catalog-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.service-catalog-hero-media {
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-catalog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-catalog-hero-fallback {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 4rem;
}

.service-catalog-main {
  padding: 34px 0 70px;
  background: #fff;
}

.service-catalog-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.service-catalog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 114, 12, 0.1);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-catalog-title-row h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 0;
}

.service-catalog-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff8f1;
  border: 1px solid rgba(232, 114, 12, 0.1);
  color: #7a4a14;
  font-size: 0.86rem;
  font-weight: 700;
}

.service-catalog-rating-badge i {
  color: #f4b400;
}

.service-catalog-list {
  display: grid;
  gap: 20px;
}

.service-package-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 22px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  box-shadow: 0 20px 38px rgba(17, 17, 17, 0.06);
}

.service-package-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.service-package-head h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
}

.service-package-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 0.84rem;
}

.service-package-meta i {
  color: #f4b400;
  margin-right: 4px;
}

.service-package-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-package-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}

.service-package-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.service-package-points li {
  position: relative;
  padding-left: 22px;
  color: #4b5563;
  line-height: 1.7;
}

.service-package-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.service-package-links {
  margin-top: 16px;
}

.service-package-link {
  border: none;
  background: none;
  padding: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.95rem;
}

.service-package-link i {
  margin-left: 6px;
}

.service-package-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-package-image {
  width: 100%;
  height: 113px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-package-image-fallback {
  width: 100%;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-package-add-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #c8d9ff;
  background: #f5f9ff;
  color: #2563eb;
  font-weight: 700;
}

.service-package-side small {
  color: #6b7280;
}

.service-catalog-content,
.service-catalog-extra {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  background: #fffdfa;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.04);
}

.service-catalog-richtext {
  color: #374151;
  line-height: 1.85;
}

.service-related-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  height: 100%;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}

.service-related-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(232, 114, 12, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-related-card span {
  display: grid;
  gap: 4px;
}

.service-related-card small {
  color: #6b7280;
  line-height: 1.6;
}

.service-catalog-sidebar {
  display: grid;
  gap: 20px;
}

.sticky-sidebar-col {
  align-self: stretch;
  overflow: visible;
  position: relative;
}

.page-section-sidebar {
  position: sticky;
  top: calc(var(--site-header-offset, 0px) + 24px);
  display: grid;
  gap: 20px;
  align-self: start;
  height: fit-content;
  overflow: visible;
  width: 100%;
}

.service-cart-card,
.service-side-info {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.05);
}

.service-cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.service-cart-head h3 {
  margin: 0 0 6px;
  font-size: 1.14rem;
}

.service-cart-head p {
  margin: 0;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.7;
}

.service-cart-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-cart-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #9ca3af;
}

.service-cart-empty i {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-cart-items {
  display: grid;
  gap: 14px;
}

.service-cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-areas:
    "copy copy copy copy"
    "controls price price price";
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.service-cart-row-copy {
  grid-area: copy;
}

.service-cart-row-controls {
  grid-area: controls;
}

.service-cart-row-price {
  grid-area: price;
  justify-self: end;
}

.service-cart-row-copy strong,
.service-cart-row-copy small {
  display: block;
}

.service-cart-row-copy strong {
  font-size: 0.92rem;
}

.service-cart-row-copy small {
  margin-top: 4px;
  color: #6b7280;
  line-height: 1.5;
}

.service-cart-row-controls button {
  border: none;
  background: none;
  color: #2563eb;
  font-weight: 800;
  font-size: 1rem;
}

.service-cart-row-price {
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
}

.service-cart-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-cart-footer span {
  display: block;
  color: #6b7280;
  font-size: 0.82rem;
}

.service-cart-footer strong {
  display: block;
  font-size: 1.35rem;
  margin-top: 4px;
}

.service-cart-proceed {
  min-width: 150px;
  padding: 13px 20px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 28px rgba(37, 99, 235, 0.25);
}

.service-cart-proceed:disabled {
  opacity: 0.55;
  box-shadow: none;
}

.service-side-info h4 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.service-side-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.service-side-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5563;
  line-height: 1.7;
}

.service-side-info i {
  color: #22c55e;
  margin-top: 4px;
}

.service-catalog-empty {
  padding: 46px 22px;
  text-align: center;
  border-radius: 28px;
  border: 1px dashed rgba(17, 17, 17, 0.18);
  background: #fffaf6;
  margin-bottom: 20px;
}

.service-catalog-empty i {
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.service-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(6px);
  padding: 30px 16px;
  overflow-y: auto;
}

.service-modal-window,
.service-login-window {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 32px 70px rgba(17, 17, 17, 0.22);
}

.service-login-window {
  width: min(540px, 100%);
  padding: 28px;
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 17, 17, 0.06);
  color: #111;
  z-index: 2;
}

.service-modal-body {
  padding: 30px;
}

.service-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 2;
  padding-top: 28px;
  padding-bottom: 18px;
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  margin-bottom: 0;
}

.service-modal-head h3 {
  margin: 6px 0 10px;
  font-size: 1.8rem;
}

.service-modal-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
}

.service-modal-intro {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-modal-section {
  padding: 22px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.service-modal-section h5 {
  font-size: 1.08rem;
  margin-bottom: 16px;
}

.service-request-details-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.service-request-detail-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, #fffdfa 0%, #fff7ef 100%);
}

.service-request-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.service-request-detail-head strong,
.service-request-detail-head small,
.service-request-detail-head span {
  display: block;
}

.service-request-detail-head strong {
  font-size: 0.96rem;
}

.service-request-detail-head small {
  margin-top: 4px;
  color: #6b7280;
  line-height: 1.5;
}

.service-request-detail-head span {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
}

.service-modal-section ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #4b5563;
  line-height: 1.7;
}

.service-modal-variants {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-modal-variant-card {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fffdfa;
  display: grid;
  gap: 10px;
}

.service-modal-variant-media {
  border-radius: 18px;
  overflow: hidden;
  background: #f4f0ea;
  height: 258px;
  min-height: 258px;
}

.service-modal-variant-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-modal-variant-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #7b7b7b;
}

.service-modal-variant-card h6 {
  margin: 0;
  font-size: 1rem;
}

.service-modal-variant-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.88rem;
}

.service-modal-variant-card strong {
  font-size: 1.1rem;
}

.service-modal-add-btn {
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid #c8d9ff;
  background: #f5f9ff;
  color: #2563eb;
  font-weight: 700;
}

.service-modal-faqs {
  display: grid;
  gap: 12px;
}

.service-modal-faq-item {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.service-modal-faq-toggle {
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-weight: 700;
}

.service-modal-faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: #4b5563;
  line-height: 1.7;
}

.service-modal-faq-item.open .service-modal-faq-answer {
  display: block;
}

.service-modal-reviews {
  display: grid;
  gap: 14px;
}

.service-modal-review {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f9fafb;
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.service-modal-review-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.service-modal-review-head strong {
  font-size: 0.98rem;
}

.service-modal-review-head span,
.service-modal-review p {
  color: #6b7280;
}

.service-modal-review-stars {
  color: #f4b400;
  margin-bottom: 8px;
}

.service-modal-review-form {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fffdfa;
}

.service-login-copy h3 {
  margin: 8px 0 10px;
}

.service-login-copy p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-login-alt-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  color: #2563eb;
  font-weight: 700;
}

@media (max-width: 991px) {
  .service-catalog-hero {
    grid-template-columns: 1fr;
  }

  .service-catalog-sidebar {
    position: static;
    top: auto;
  }

  body.blog-page .blog-page-sidebar,
  .page-section-sidebar {
    position: static;
    top: auto;
  }

  .service-package-card {
    grid-template-columns: 1fr;
  }

  .service-package-side {
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .service-catalog-shell {
    padding-top: 18px;
  }

  .service-catalog-hero {
    padding: 22px;
    border-radius: 24px;
  }

  .service-catalog-actions {
    flex-direction: column;
  }

  .service-catalog-call,
  .service-catalog-outline {
    justify-content: center;
  }

  .service-catalog-title-row,
  .service-modal-head,
  .service-cart-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-modal-body,
  .service-login-window {
    padding: 22px;
  }

  .service-cart-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "copy copy copy"
      "controls controls price";
  }

  .service-cart-row-copy {
    grid-area: copy;
  }

  .service-cart-row-controls {
    grid-area: controls;
    justify-content: center;
  }

  .service-cart-row-price {
    grid-area: price;
  }

  .service-cart-proceed {
    width: 100%;
  }
}

.market-location-trigger-wrap {
  position: relative;
}

.market-location-trigger {
  cursor: pointer;
  background: #fff;
}

.market-location-trigger-wrap .market-combo-toggle {
  pointer-events: none;
}

.market-location-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 20px;
}

.market-location-window {
  position: relative;
  width: min(920px, 100%);
  max-height: min(84vh, 920px);
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.22);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.market-location-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(17, 17, 17, 0.06);
  color: #111;
}

.market-location-header h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 10px 0 8px;
}

.market-location-header p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 18px;
}

.market-location-searchbar {
  position: relative;
  margin-bottom: 14px;
}

.market-location-searchbar i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.market-location-searchbar input {
  width: 100%;
  min-height: 56px;
  padding: 14px 62px 14px 46px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.market-location-voice-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.market-location-voice-btn:hover,
.market-location-voice-btn.is-listening {
  background: #2563eb;
  color: #fff;
}

.market-detect-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.market-location-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 8px;
}

.market-location-group {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fffdfa;
}

.market-location-group-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.market-location-option {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
  transition: var(--transition);
}

.market-location-option:last-child {
  margin-bottom: 0;
}

.market-location-option span {
  font-weight: 700;
  color: #111827;
}

.market-location-option small {
  color: #6b7280;
  line-height: 1.5;
}

.market-location-option:hover,
.market-location-option.is-selected {
  border-color: rgba(232, 114, 12, 0.22);
  background: #fff4e8;
}

@media (max-width: 767px) {
  .market-location-window {
    padding: 22px;
  }

  .market-location-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .market-location-group {
    border: none;
    border-radius: 0;
    padding: 18px 0px;
    background: none;
  }
  .market-location-modal {
    padding: 0px;
  }
  .market-hero {
    padding: 0;
    overflow: visible;
  }

  .market-location-window {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .service-modal-variants {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICE PAGE REFINEMENT
   ============================================================ */
body.service-catalog-page {
  background: #fbfbfb;
}

.service-catalog-main {
  padding: 28px 0 72px;
  background: linear-gradient(180deg, #faf8f4 0%, #ffffff 22%, #ffffff 100%);
}

.service-catalog-layout {
  align-items: stretch;
}

.service-journey-primary,
.service-journey-sidebar-top {
  display: grid;
  gap: 24px;
}

.service-journey-sidebar-top {
  position: static;
  top: auto;
  align-self: auto;
}

.service-journey-intro-card,
.service-journey-hero-card,
.service-cart-card--hero,
.service-side-promo-card,
.service-side-info--top,
.service-catalog-content,
.service-catalog-extra,
.service-package-card,
.service-cart-card,
.service-side-info {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.09);
  box-shadow: none;
}

.service-journey-intro-card,
.service-journey-hero-card,
.service-cart-card--hero,
.service-side-promo-card,
.service-side-info--top {
  border-radius: 20px;
}

.service-journey-intro-card {
  padding: 24px 28px;
}

.service-catalog-breadcrumb--light {
  color: #7c8798;
  margin-bottom: 18px;
}

.service-catalog-breadcrumb--light a {
  color: #596579;
}

.service-journey-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.service-journey-location i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 4px;
}

.service-journey-location strong {
  display: block;
  font-size: 1rem;
  color: #1f2937;
}

.service-journey-location span {
  display: block;
  color: #6b7280;
  font-size: 0.92rem;
  margin-top: 3px;
}

.service-journey-intro-card h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.14;
  margin: 0 0 14px;
  color: #111827;
}

.service-journey-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 0.95rem;
}

.service-journey-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff4e8;
  color: var(--primary);
  font-weight: 700;
}

.service-journey-hero-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
}

.service-journey-hero-card img,
.service-journey-hero-card .service-catalog-hero-fallback {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.service-journey-hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.02) 0%,
    rgba(17, 17, 17, 0.82) 100%
  );
}

.service-journey-hero-overlay .service-catalog-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  margin-bottom: 12px;
}

.service-journey-hero-overlay h2 {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.2;
  margin: 0 0 10px;
}

.service-journey-hero-overlay p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 520px;
}

.service-cart-card--hero {
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.service-cart-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.service-cart-card-subtitle {
  margin: 0 0 4px;
  color: #6b7280;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-cart-card-header h4 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
  color: #111827;
}

.service-cart-item-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f8fafc;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-cart-empty-hero {
  min-height: 140px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #6b7280;
  gap: 12px;
}

.service-cart-empty-hero i {
  font-size: 2.3rem;
  color: #7c8798;
}

.service-cart-items--hero {
  margin-bottom: 16px;
}

.service-cart-row-copy strong {
  font-size: 0.98rem;
}

.service-cart-row-copy small {
  color: #6b7280;
  font-size: 0.85rem;
}

.service-cart-row-controls {
  gap: 10px;
  padding: 10px 12px;
  background: #f8fbff;
}

.service-cart-row-controls button {
  border: none;
  background: none;
  color: #2563eb;
  font-weight: 800;
  font-size: 1rem;
}

.service-cart-row-price {
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
}

.service-cart-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.service-cart-footer span {
  display: block;
  color: #6b7280;
  font-size: 0.82rem;
}

.service-cart-footer strong {
  display: block;
  font-size: 1.4rem;
  margin-top: 4px;
}

.service-cart-proceed {
  min-width: 140px;
  padding: 14px 22px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 26px rgba(37, 99, 235, 0.22);
}

.service-cart-proceed.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 170px;
  cursor: wait;
}

.service-cart-proceed:disabled {
  opacity: 0.6;
  box-shadow: none;
}

.service-side-promo-card,
.service-side-info--top {
  padding: 22px 24px;
}

.service-side-promo-card {
  display: grid;
  gap: 14px;
}

.service-side-promo-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.service-side-promo-item p {
  margin: 0;
  color: #374151;
  line-height: 1.65;
}

.service-side-promo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff1bf;
  color: #b77903;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.service-side-promo-icon--soft {
  background: #e8faec;
  color: #118a3c;
}

.service-side-info--top ul,
.service-side-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.service-side-info--top li,
.service-side-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #374151;
  line-height: 1.6;
}

.service-side-info--top li i,
.service-side-info li i {
  color: var(--primary);
  margin-top: 3px;
}

.service-catalog-title-row {
  margin-bottom: 18px;
}

.service-catalog-rating-badge--soft {
  background: #fff7ed;
  color: #9a5b10;
}

.service-catalog-list {
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: #fff;
}

.service-package-card {
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  padding: 28px 16px 28px 18px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
  background: #fff;
}

.service-package-card:last-child {
  border-bottom: none;
}

.service-package-head {
  margin-bottom: 10px;
}

.service-package-head h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.service-package-meta {
  gap: 10px;
  font-size: 0.92rem;
}

.service-package-meta span:first-child {
  color: #6f7785;
}

.service-package-price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.service-package-price-wrap {
  display: grid;
  gap: 4px;
}

.service-package-price-note {
  color: #9a5b10;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-package-price {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 0;
}

.service-package-duration-dot {
  color: #6b7280;
  font-size: 0.95rem;
}

.service-package-points {
  border-top: 1px dashed rgba(17, 17, 17, 0.12);
  margin-top: 4px;
  padding-top: 18px;
}

.service-package-points li {
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.8;
}

.service-package-links {
  margin-top: 14px;
}

.service-package-link {
  color: #2563eb;
  font-size: 1rem;
}

.service-package-side {
  justify-content: center;
  gap: 12px;
}

.service-package-image {
  border-radius: 16px;
  background: #f5f3ef;
}

.service-package-add-btn,
.service-modal-add-btn,
.service-cart-proceed {
  border-radius: 14px;
  font-weight: 700;
}

.service-package-add-btn,
.service-modal-add-btn {
  border: 1px solid rgba(232, 114, 12, 0.35);
  background: #fff;
  color: var(--primary);
}

.service-package-add-btn:hover,
.service-modal-add-btn:hover {
  background: #fff4e8;
}

.service-cart-card,
.service-side-info {
  border-radius: 20px;
}

.service-cart-head {
  margin-bottom: 18px;
}

.service-cart-icon {
  background: #fff4e8;
  color: var(--primary);
}

.service-cart-items {
  display: grid;
  gap: 14px;
}

.service-cart-row-copy strong {
  display: block;
  color: #111827;
  font-size: 0.95rem;
}

.service-cart-row-copy small {
  color: #6b7280;
}

.service-cart-row-controls,
.service-modal-qty-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(232, 114, 12, 0.18);
  border-radius: 12px;
  overflow: hidden;
}

.service-cart-row-controls button,
.service-modal-qty-box button {
  width: 34px;
  height: 34px;
  border: none;
  background: #fff9f2;
  color: var(--primary);
  font-weight: 700;
}

.service-cart-row-controls span,
.service-modal-qty-box span {
  min-width: 38px;
  text-align: center;
  font-weight: 700;
  color: #1f2937;
}

.service-cart-row-price {
  font-weight: 800;
  color: #1f2937;
}

.service-cart-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.service-cart-footer span {
  display: block;
  color: #6b7280;
  font-size: 0.9rem;
}

.service-cart-footer strong {
  font-size: 1.5rem;
  color: #111827;
}

.service-cart-proceed {
  background: linear-gradient(135deg, var(--primary) 0%, #f59a2f 100%);
  border: none;
  color: #fff;
  min-width: 160px;
  box-shadow: 0 14px 28px rgba(232, 114, 12, 0.24);
}

.service-modal-window {
  width: min(920px, 100%);
  max-height: min(88vh, 980px);
  overflow: hidden;
}

.service-modal-body {
  padding: 0;
  max-height: min(88vh, 980px);
  overflow: auto;
}

.service-modal-head,
.service-modal-intro,
.service-modal-section {
  padding-left: 28px;
  padding-right: 28px;
}

.service-modal-intro {
  padding-top: 18px;
  margin-bottom: 0;
}

.service-modal-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.service-modal-variant-card {
  padding: 14px;
  border-radius: 16px;
  background: #fff;
}

.service-modal-variant-card h6 {
  font-size: 1.06rem;
}

.service-modal-bottom-bar {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}

.service-modal-bottom-bar span {
  display: block;
  color: #6b7280;
}

.service-modal-bottom-bar strong {
  font-size: 1.4rem;
  color: #111827;
}

.service-page-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #112018;
  color: #fff;
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.18);
}

.service-page-toast.is-success {
  background: #173f23;
}

.service-page-toast.is-error {
  background: #6d1d1d;
}

.market-detect-status {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f7f8fa;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.6;
}

.market-detect-status.is-success {
  background: #edf9f0;
  color: #166534;
}

.market-detect-status.is-warning {
  background: #fff4e8;
  color: #9a5b10;
}

@media (max-width: 991px) {
  .service-journey-top {
    grid-template-columns: 1fr;
  }

  .service-journey-sidebar-top {
    position: static;
    top: auto;
  }

  .service-package-card {
    grid-template-columns: 1fr;
  }

  .service-package-side {
    align-items: flex-start;
  }

  .service-package-image {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .service-catalog-main .container,
  .section-pad .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .service-journey-intro-card,
  .service-journey-hero-overlay,
  .service-cart-card--hero,
  .service-side-promo-card,
  .service-side-info--top,
  .service-catalog-content,
  .service-catalog-extra,
  .service-cart-card,
  .service-side-info {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-catalog-content,
  .service-catalog-extra {
    padding: 20px 14px;
    border-radius: 22px;
    margin-left: -2px;
    margin-right: -2px;
  }

  .service-related-card,
  .testimonial-card {
    padding: 18px 16px;
  }

  .faq-question {
    padding: 14px 16px;
  }

  .service-package-card {
    padding: 20px 16px;
  }

  .service-package-price {
    font-size: 1.7rem;
  }

  .service-modal-head,
  .service-modal-intro,
  .service-modal-section,
  .service-modal-bottom-bar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-modal-bottom-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .service-page-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .service-package-image {
    height: auto;
  }
  .service-modal-variant-media {
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .service-package-head {
    flex-direction: column;
  }
    .market-why-reference-badge{
    width: 38px;
    height: 38px;
    left: -5px;
  }
}

@media (max-width: 414px){
  .service-journey-intro-card h1{
    font-size: 1.6rem;
  }
}



@media (max-width: 375px) {
  .route-card {
    padding: 15px 8px;
  }
  .route-card .route-arrow {
    margin: 2px 0px;
    font-size: 0.9rem;
  }
  
    .market-scroll-row {
    gap: 12px;
    scroll-snap-type: x mandatory;
  }

  .market-service-card-wide,
  .market-review-card,
  .market-story-card {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .market-service-thumb.large {
    height: 190px;
  }
}



/* ============================================================
   AUTH PAGE
   ============================================================ */
.auth-page {
  background:
    radial-gradient(circle at top left, rgba(232, 114, 12, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(26, 26, 46, 0.12), transparent 30%),
    linear-gradient(180deg, #f6f7f9 0%, #eef1f5 100%);
}

.auth-shell {
  min-height: calc(100vh - 40px);
  padding: 88px 0 56px;
  display: flex;
  align-items: center;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
  gap: 32px;
  align-items: center;
}

.auth-copy-panel {
  padding: 12px 10px 12px 0;
}

.auth-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 114, 12, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.auth-copy-panel h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.12;
  margin-bottom: 16px;
  color: #111827;
}

.auth-copy-text {
  max-width: 560px;
  font-size: 1rem;
  color: #5b6472;
  margin-bottom: 24px;
}

.auth-copy-points {
  display: grid;
  gap: 14px;
}

.auth-copy-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #243042;
  font-weight: 600;
}

.auth-copy-point i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 114, 12, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
}

.auth-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
}

.auth-switcher {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 6px;
  margin-bottom: 28px;
  background: #f3f4f6;
  border-radius: 16px;
}

.auth-switch {
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  color: #6b7280;
}

.auth-switch.is-active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.auth-head {
  margin-bottom: 22px;
}

.auth-head h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #111827;
}

.auth-head p {
  margin: 0;
  color: #6b7280;
}

.auth-alert {
  border-radius: 16px;
  font-size: 0.92rem;
}

.auth-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
}

.auth-row-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.auth-inline-link,
.auth-back-link,
.auth-foot-note a,
.auth-check a {
  color: var(--primary);
  font-weight: 600;
}

.auth-input {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #d6dbe3;
  padding: 12px 16px;
  font-size: 0.96rem;
  color: #111827;
  box-shadow: none;
}

.auth-input:focus {
  border-color: rgba(232, 114, 12, 0.5);
  box-shadow: 0 0 0 4px rgba(232, 114, 12, 0.12);
}

.auth-password-wrap {
  position: relative;
}

.auth-pass-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7b8492;
}

.auth-submit {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  font-size: 0.98rem;
  box-shadow: 0 14px 28px rgba(232, 114, 12, 0.22);
}

.auth-check label {
  font-size: 0.88rem;
  color: #5b6472;
}

.auth-foot-note {
  margin: 18px 0 0;
  text-align: center;
  color: #6b7280;
  font-size: 0.92rem;
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}

.auth-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  color: #6b7280;
  font-size: 0.84rem;
}

.auth-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auth-trust-row i {
  color: #198754;
}

@media (max-width: 991px) {
  .auth-shell {
    padding-top: 72px;
  }

  .auth-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .auth-copy-panel {
    grid-row: 2;
    padding-right: 0;
  }
}

@media (max-width: 575.98px) {
  .auth-shell {
    padding: 56px 0 40px;
  }

  .auth-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .auth-switch {
    padding-left: 10px;
    padding-right: 10px;
  }

  .auth-row-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-trust-row {
    flex-direction: column;
    gap: 10px;
  }
}
