/* ===================================================================
   GROWCYCLE — main.css
   New design styles (desktop-first)
   All responsive / media-query rules live in main-responsive.css
   =================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #F5B02C;
  --gold-hover: #e5a120;
  --gold-light: #FFF8E8;
  --nav-bg: #384454;
  --dark: #1a1a1a;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eee;
  --gray-300: #ddd;
  --gray-400: #bbb;
  --gray-500: #888;
  --gray-600: #767678;
  --gray-700: #555;
  --gray-800: #333;
  --gray-900: #1a1a1a;
  --green: #12B076;
  --green-light: #e6f9f1;
  --max-w: 1540px;
  --radius: 12px;
  --font-family: 'Open Sans', sans-serif;

  /* Legacy aliases (used by existing pages and shared components) */
  --gray-bg: #f5f5f5;
  --gray-border: #eee;
  --gray-text: #767678;
  --colorPrimary: #F5B02C;
  --colorBlack: #111111;
  --colorWhite: #ffffff;
  --colorGray: #384454;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
  outline: none;
}

/* ===== GLOBAL CONTAINER ===== */
.gc {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================================
   HEADER — ROW 1: WHITE TOP BAR (logo + search + icons)
   =================================================================== */
.header-area {
  background: #384454;
  padding: 14px 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 82px;
}

/* Logo */
.logo {
  flex-shrink: 0;
  margin-top: -15px;
}

.logo img {
  width: 160px;
  margin-left: 10px;
}

/* Desktop search bar */
.search-wrap {
  flex: 1;
  margin-left: 2.12%;
  min-width: 0;
}

.search-form {
  display: flex;
  background: var(--gray-bg);
  border: none;
  border-radius: 5px;
  overflow: hidden;
  height: 50px;
}

.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 21px;
  font-size: 15px;
  font-style: italic;
  color: #333;
  letter-spacing: .4px;
}

.search-form input::placeholder {
  color: var(--gray-text);
}

.search-form .search-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: background .2s;
}

.search-form .search-btn:hover {
  background: var(--gold-hover);
}

/* Header search dropdown */
.search-wrap {
  position: relative;
}

.header-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(150, 161, 181, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #bbb transparent;
}

.header-search-dropdown.active {
  display: block;
}

.header-search-list {
  list-style: none;
  margin: 0;
  padding: 0 4px 0 16px;
}

.header-search-list li {
  margin: 0;
}

.header-search-list .header-search-hint {
  padding: 12px 16px;
  color: #888;
  font-size: 14px;
}

.header-search-list .clsTitle {
  margin-top: 5px;
  padding: 10px 4px;
  clear: both;
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  color: #38495c;
  letter-spacing: 0;
}

.header-search-list .clsTitle:first-child {
  border-top: none;
}

.header-search-list .clsTree {
  padding: 5px 4px;
  display: flex;
  cursor: pointer;
}

.header-search-list .clsTree:before {
  content: '';
  display: block;
  margin: -10px 3px 8px 0;
  width: 24px;
  min-width: 24px;
  border-left: 1px dashed #38495c;
  border-bottom: 1px dashed #38495c;
  opacity: 0.5;
}

.header-search-list .clsTree a {
  display: block;
  padding: 2px 4px;
  color: #38495c;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s;
}

.header-search-list .clsTree:hover a,
.header-search-list .clsTree a:hover {
  text-decoration: underline;
}

.header-search-list .clsUserHistory {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
}

.header-search-list .clsUserHistory:hover {
  background: #f5f5f5;
}

.header-search-list .clsUserHistory .clsIcon {
  margin-right: 10px;
  color: #999;
}

.header-search-list .clsUserHistory .clsQuery {
  flex: 1;
  color: #333;
}

.header-search-list .clsUserHistory .clsDelete {
  color: #ccc;
  cursor: pointer;
  padding: 2px 4px;
}

.header-search-list .clsUserHistory .clsDelete:hover {
  color: #e74c3c;
}

.header-search-dropdown::-webkit-scrollbar {
  width: 6px;
}

.header-search-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.header-search-dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.header-search-dropdown::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Header icons (right side) */
.header-icons {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 2%;
  margin-top: 6px;
  flex-shrink: 0;
  margin-right: 12px;
}

.header-icons .icon-cart {
  order: 2;
}

.header-icons .user-area {
  order: 3;
}

.icon-link {
  position: relative;
  display: flex;
  align-items: center;
  /* margin-left: 2px; */
}

.icon-link .ic {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge {
  position: absolute;
  top: -6px;
  right: -12px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wishlist {
  margin-top: 1px;
}

.icon-cart {
  margin-top: 3px;
}

.icon-cart .icon-badge {
  top: -8px;
  height: 18px;
  min-width: 19px;
  right: -10px;
}

/* User dropdown */
.user-area {
  position: relative;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  border-radius: 8px;
  padding: 20px;
  min-width: 260px;
  z-index: 200;
}

.user-area.open .user-dropdown {
  display: block;
}

.user-dropdown ul li a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: #444;
}

.user-dropdown ul li a:hover {
  color: var(--gold);
}

.user-dropdown .track-title {
  font-weight: 700;
  font-size: 14px;
  margin: 12px 0 6px;
}

.user-dropdown .track-form {
  display: flex;
  gap: 6px;
}

.user-dropdown .track-form input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
}

.user-dropdown .track-form button {
  background: var(--gold);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
}

.user-dropdown .auth-btns {
  margin-top: 14px;
}

.user-dropdown .auth-btns a {
  display: block;
  text-align: center;
  padding: 9px 0;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 6px;
  display: block;
}

.user-dropdown .btn-signin {
  background: var(--gold);
  color: #fff;
}


/* ===================================================================
   HEADER — ROW 2: DARK NAV BAR
   =================================================================== */
.nav-bar {
  background: var(--nav-bg);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  height: 46px;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
}

.nav-menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 100%;
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.nav-menu > li > a:hover {
  color: var(--gold);
}

.nav-menu > li.all-cat > a {
  font-weight: 500;
}

.nav-menu > li.all-cat > a .fa-bars {
  font-size: 15px;
}

/* Animated dropdown arrows */
.nav-arrow {
  margin-left: 4px;
  vertical-align: middle;
  transition: transform .25s ease;
}

.nav-menu > li:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Nav tags */
.tag {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 3px;
}

.tag-green {
  background: #4caf50;
  color: #fff;
  margin-left: 5px;
  margin-bottom: 2px;
}

.tag-red {
  background: #e74c3c;
  color: #fff;
}

/* Right-aligned phone */
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  margin-right: 13px;
}

.nav-item-pro {
  margin-top: 2px;
  margin-left: -2px;
}

.nav-item-menu {
  margin-top: 2px;
  margin-left: 2px;
}

.nav-right a {
  color: rgba(255, 255, 255, .85);
  font-size: 15px !important;
  font-weight: 500;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  margin-top: 1px;
}

.nav-right a:hover {
  color: #fff;
}

/* ===================================================================
   ALL CATEGORIES — SIDEBAR + PANEL MEGA MENU
   =================================================================== */
.all-cat-mega {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: calc(100vw - 48px);
  max-width: 1400px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
  border-radius: 0 0 12px 12px;
  z-index: 999;
  overflow: hidden;
}

.nav-menu > li.all-cat:hover .all-cat-mega {
  display: block;
}

.acm-layout {
  display: flex;
}

/* Left sidebar */
.acm-sidebar {
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid #eee;
  padding: 14px 0;
}

.acm-section-title {
  padding: 0 20px 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #999;
}

.acm-divider {
  height: 1px;
  background: #eee;
  margin: 8px 20px;
}

.acm-sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.acm-sidebar-item:hover {
  color: var(--gold);
  background: #fafafa;
}

.acm-sidebar-item.active {
  color: var(--gold);
  background: #fff8e8;
  border-left: 3px solid var(--gold);
  padding-left: 17px;
}

.acm-sidebar-item::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  color: #ccc;
}

.acm-sidebar-item.active::after {
  color: var(--gold);
}

.acm-sidebar-item.active .chevron {
  color: var(--gold);
}

/* Right content panel */
.acm-content {
  flex: 1;
  padding: 24px 28px;
  min-height: 100%;
}

.acm-panel {
  display: none;
}

.acm-panel.active {
  display: block;
}

/* Shop panels: 3-column grid */
.acm-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
}

.acm-subcat h5,
.acm-subcat .acm-subcat-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
}

a.acm-subcat-title:hover {
  color: var(--gold);
}

.acm-subcat .links {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.acm-subcat .links a {
  color: #555;
}

.acm-subcat .links a:hover {
  color: var(--gold);
}

.acm-subcat .links .sep {
  color: #ccc;
  margin: 0 2px;
}

.acm-subcat .view-more {
  color: var(--gold);
  font-weight: 600;
}

.acm-subcat .view-more:hover {
  text-decoration: underline;
}

/* Find Pros panels */
.fap-content .acm-subcat .links a {
  display: block;
  margin-bottom: 2px;
}

.fap-content .acm-subcat .links .sep {
  display: none;
}

.acm-pros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 24px;
}

.acm-pros-grid a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
}

.acm-pros-grid a:hover {
  color: var(--gold);
}

/* ===================================================================
   FIND A PRO — SIDEBAR + PANEL MEGA DROPDOWN
   =================================================================== */
.fap-mega {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: calc(100vw - 48px);
  max-width: 1400px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
  border-radius: 0 0 12px 12px;
  z-index: 999;
  overflow: hidden;
}

.nav-menu > li.find-pro:hover > .fap-mega {
  display: block;
}

.fap-layout {
  display: flex;
}

.fap-sidebar {
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid #eee;
  padding: 14px 0;
}

.fap-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.fap-item:hover {
  background: #fafafa;
}

.fap-item::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  color: #ccc;
}

.fap-item.active {
  color: var(--gold);
  background: #fff8e8;
  border-left: 3px solid var(--gold);
  padding-left: 17px;
}

.fap-item.active::after {
  color: var(--gold);
}

.fap-divider {
  height: 1px;
  background: #eee;
  margin: 8px 20px;
}

.fap-section-title {
  padding: 0 20px 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #999;
  margin-top: 2px;
}

.fap-content {
  flex: 1;
  padding: 24px 28px;
}

.fap-panel {
  display: none;
}

.fap-panel.active {
  display: block;
}

.fap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 24px;
}

.fap-grid a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
}

.fap-grid a:hover {
  color: var(--gold);
}

/* ===================================================================
   MEGA DROPDOWN (Learning Center, etc.)
   =================================================================== */
.mega-dd {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 840px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  border-radius: 0 0 8px 8px;
  z-index: 999;
  overflow: hidden;
}

.nav-menu > li:hover > .mega-dd {
  display: block;
}

/* Tab pills */
.dd-tabs {
  display: flex;
  gap: 0;
  padding: 16px 24px 0;
  border-bottom: 2px solid #f0f0f0;
}

.dd-tab {
  padding: 10px 18px 12px;
  font-size: 15px;
  font-weight: 700;
  color: #aaa;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.dd-tab:hover {
  color: #555;
}

.dd-tab.active {
  color: var(--gold);
}

.dd-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}

/* Panel: image + links side by side */
.dd-panel {
  display: none;
  padding: 20px 24px 24px;
}

.dd-panel.active {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* Thumbnail image */
.dd-img {
  width: 200px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #e8f0e8;
}

.dd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-img .arrow {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  font-size: 10px;
  color: #333;
}

/* 2-column links */
.dd-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  flex: 1;
}

.dd-links li {
  width: 50%;
}

.dd-links li a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.dd-links li a:hover {
  color: var(--gold);
}

/* ===================================================================
   HERO BANNER
   =================================================================== */
.hero {
  position: relative;
  z-index: 10;
  min-height: 420px;
  margin-top: -1px;
  background: #1b4332;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(45, 149, 150, 0.6) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(72, 202, 174, 0.4) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(20, 60, 80, 0.8) 0%, transparent 70%), linear-gradient(160deg, #0f2027 0%, #203a43 40%, #2c5364 100%);
  opacity: 1;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px 80px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 16px;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, .6);
}

.hero-breadcrumb a:hover {
  color: #fff;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 580px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 560px;
}

/* Hero search bar */
.hero-search-wrap {
  position: relative;
  max-width: 600px;
}

.hero-search {
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.hero-search-wrap.open .hero-search {
  border-radius: 8px 8px 0 0;
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  background: #fff;
}

.hero-search input::placeholder {
  color: #999;
}

.hero-search .loc-sep {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 4px 0 0;
  color: #999;
  font-size: 14px;
  border-left: 1px solid #eee;
}

.hero-search .loc-sep i {
  padding-left: 12px;
  font-size: 14px;
  color: #999;
}

.hero-search .loc-input {
  width: 70px;
  border: none;
  text-align: center;
  font-size: 17px;
  color: #555;
  background: transparent;
  padding: 0;
  font-weight: 600;
}

.hero-search .hero-btn {
  background: var(--gold);
  color: #fff;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  border: none;
  outline: none;
  margin: -1px -1px -1px 0;
}

.hero-search .hero-btn span {
  display: inline;
}

.hero-search .hero-btn:hover {
  background: var(--gold-hover);
}

/* --- Hero search dropdown --- */
.hero-search-wrap .search_list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
}

.hero-search-wrap .search_list li {
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background .15s;
}

.hero-search-wrap .search_list li:hover,
.hero-search-wrap .search_list li.keyboard-active {
  background: #f5f5f5;
}

.hero-search-wrap .search_list li mark {
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  padding: 0;
}

.hero-search-wrap .search_list::-webkit-scrollbar {
  width: 6px;
}

.hero-search-wrap .search_list::-webkit-scrollbar-track {
  background: transparent;
}

.hero-search-wrap .search_list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.hero-search-wrap .error-text {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  color: #fff;
  background: rgba(220, 53, 69, .85);
  margin-top: 8px;
}

/* --- Hero search grouped dropdown --- */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
  padding: 12px 0;
}

.search-dropdown::-webkit-scrollbar { width: 6px; }
.search-dropdown::-webkit-scrollbar-track { background: transparent; }
.search-dropdown::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

.search-dropdown-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  padding: 8px 20px 4px;
  margin: 0;
}

.search-dropdown-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-dropdown-popular-list li {
  padding: 9px 20px;
  font-size: 14px;
  color: var(--gray-800);
  cursor: pointer;
  transition: background 0.15s;
}

.search-dropdown-popular-list li:hover {
  background: var(--gray-100);
}

.search-dropdown-group {
  border-top: 1px solid var(--gray-200);
}

.search-dropdown-group:first-of-type {
  border-top: none;
}

.search-dropdown-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  font-family: var(--font-family);
}

.search-dropdown-group-header:hover {
  color: var(--gold);
}

.search-dropdown-chevron {
  font-size: 11px;
  color: var(--gray-500);
  transition: transform 0.2s;
}

.search-dropdown-group.expanded .search-dropdown-chevron {
  transform: rotate(180deg);
}

.search-dropdown-group-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.search-dropdown-group.expanded .search-dropdown-group-body {
  max-height: 2000px;
}

.search-dropdown-item {
  padding: 9px 20px 9px 32px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.15s;
}

.search-dropdown-item:hover,
.search-dropdown-item.keyboard-active {
  background: var(--gray-100);
  color: var(--dark);
}

.search-dropdown-item mark {
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  padding: 0;
}

/* ===================================================================
   SECTION COMMONS
   =================================================================== */
.section {
  padding: 50px 0;
}

.section-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

/* ===================================================================
   POPULAR SERVICES GRID
   =================================================================== */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.srv-card {
  border-radius: 14px;
  padding: 22px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}

.srv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.srv-card.lg {
  grid-column: span 2;
  min-height: 200px;
}

.srv-card .srv-cat {
  font-size: 16px;
  color: rgba(0, 0, 0, .5);
  margin-bottom: 4px;
}

.srv-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

.srv-card .foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
}

.srv-card .more {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Service card image backgrounds with color overlays */
.srv-card[class*="srv-"] {
  position: relative;
  background-size: 135%;
  background-position: center;
}

.srv-card[class*="srv-"]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.srv-landscape::before,
.srv-roofing::before,
.srv-window::before,
.srv-kitchen::before,
.srv-hvac::before,
.srv-plumbing::before {
  /* Gradient replaces hard clip-path so the diagonal edge spreads/feathers softly.
     133deg is perpendicular to the (65%,0)→(0,70%) diagonal.
     The diagonal falls at ~33% along this axis; 24%→42% creates the spread. */
}

.srv-card[class*="srv-"] .srv-card-content,
.srv-card[class*="srv-"] .foot {
  position: relative;
  z-index: 1;
}

.srv-card[class*="srv-"] .srv-card-content {
  max-width: 70%;
}

.srv-card[class*="srv-"] .srv-cat {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.srv-card[class*="srv-"] h3 {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.srv-card[class*="srv-"] .more {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.srv-landscape {
  background-image: url("../images/popular-services/landscape.jpg");
}

.srv-landscape::before {
  background: linear-gradient(149deg, rgba(45, 86, 43, .80) 18%, rgba(45, 86, 43, 0) 32%);
}

.srv-roofing {
  background-image: url("../images/popular-services/roofing.jpg");
}

.srv-roofing::before {
  background: linear-gradient(149deg, rgba(63, 90, 131, .80) 18%, rgba(63, 90, 131, 0) 32%);
}

.srv-window {
  background-image: url("../images/popular-services/window.jpg");
}

.srv-window::before {
  background: linear-gradient(149deg, rgba(50, 83, 70, .65) 18%, rgba(50, 83, 70, 0) 32%);
}

.srv-kitchen {
  background-image: url("../images/popular-services/kitchen.jpg");
}

.srv-kitchen::before {
  background: linear-gradient(149deg, rgba(120, 88, 57, .80) 18%, rgba(120, 88, 57, 0) 32%);
}

.srv-hvac {
  background-image: url("../images/popular-services/hvac.jpg");
}

.srv-hvac::before {
  background: linear-gradient(149deg, rgba(72, 69, 63, .80) 18%, rgba(72, 69, 63, 0) 32%);
}

.srv-plumbing {
  background-image: url("../images/popular-services/plumbing.jpg");
}

.srv-plumbing::before {
  background: linear-gradient(149deg, rgba(71, 57, 48, .75) 18%, rgba(71, 57, 48, 0) 32%);
}

/* ===================================================================
   BROWSE POPULAR CATEGORIES — Icon Grid
   =================================================================== */
.pop-cats-grid-section {
  padding: 56px 0;
  background: #fff;
}

.pop-cats-grid-header {
  text-align: center;
  margin-bottom: 40px;
}

.pop-cats-grid-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.pop-cats-grid-header p {
  font-size: 14px;
  color: #888;
}

.pop-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pcg-card {
  background: #fff;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pcg-card:hover {
  border-color: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

.pcg-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: #FFF3E0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pcg-icon svg {
  width: 28px;
  height: 28px;
  stroke: #E8930C;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pcg-name {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A2E;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* ===================================================================
   POPULAR CATEGORIES — Infinite Carousel
   =================================================================== */
.pop-cats {
  padding: 56px 0;
  background: #fff;
  overflow: hidden;
}

.pop-cats-header {
  text-align: center;
  margin-bottom: 40px;
}

.pop-cats-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.pop-cats-header p {
  font-size: 14px;
  color: #888;
}

.pop-cats .gc {
  overflow: visible;
}

.pop-cats-carousel {
  position: relative;
  padding: 0 48px;
}

.pop-cats-track-wrap {
  overflow: hidden;
}

.pop-cats-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.pop-cat-slide {
  padding: 0 9px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.pop-cat-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pop-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

a.pop-cat-img,
.pop-cat-img {
  width: 100%;
  height: 160px;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.pop-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.pop-cat-card:hover .pop-cat-img img {
  transform: scale(1.05);
}

.pop-cat-body {
  padding: 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pop-cat-body h4,
.pop-cat-body .pop-cat-name {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.pop-cat-body h4 a,
.pop-cat-body .pop-cat-name a {
  color: inherit;
  text-decoration: none;
}

.pop-cat-body h4 a:hover,
.pop-cat-body .pop-cat-name a:hover {
  color: #27ae60;
}

.pop-cat-body p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.pop-cat-body p:empty {
  display: none;
}

.pop-cat-body .pc-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pop-cats-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  color: #555;
  transition: all .2s;
}

.pop-cats-arrow:hover {
  background: var(--nav-bg);
  color: #fff;
  border-color: var(--nav-bg);
}

.pop-cats-arrow.prev {
  left: 0;
}

.pop-cats-arrow.next {
  right: 0;
}

/* ===================================================================
   BROWSE ALL SERVICES — pill tag design
   =================================================================== */
.browse {
  padding: 60px 0;
  background: #fafafa;
}

.browse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.browse-head h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.browse-tabs {
  display: flex;
  gap: 6px;
}

.browse-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  background: #fff;
  cursor: pointer;
  border: 1.5px solid #e5e5e5;
  transition: all .2s;
}

.browse-tab:hover {
  color: #555;
  border-color: #ccc;
}

.browse-tab.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.browse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.browse-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid transparent;
  transition: all .2s;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.browse-grid a .b-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #FFF3E0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}

.browse-grid a .b-icon i {
  font-size: 14px;
  color: var(--gold);
}

.browse-grid a:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.browse-grid a:hover .b-icon {
  background: var(--gold);
}

.browse-grid a:hover .b-icon i {
  color: #fff;
}

.browse-more {
  text-align: center;
  margin-top: 28px;
}

.browse-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  padding: 10px 28px;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  transition: all .2s;
}

.browse-more a:hover {
  background: var(--gold);
  color: #fff;
}

/* ===================================================================
   TESTIMONIALS CAROUSEL
   =================================================================== */
.testimonials {
  padding: 64px 0;
  background: #f8f9fb;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 44px;
}

.testimonials-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.testimonials-header p {
  font-size: 14px;
  color: #888;
}

.test-track-wrap {
  overflow: hidden;
  position: relative;
}

.test-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.test-slide {
  padding: 0 12px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.test-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 36px 28px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.test-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .06);
}

.test-svc-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: #f0f2f5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-svc-icon i {
  font-size: 28px;
  color: var(--nav-bg);
}

.test-stars {
  margin-bottom: 16px;
  font-size: 14px;
  color: #718096;
}

.test-stars .stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 16px;
}

.test-quote {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.test-author {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.6;
}

.test-author strong {
  font-weight: 700;
}

.test-author .service {
  color: var(--nav-bg);
  font-weight: 600;
}

.test-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.test-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-size: 18px;
  color: #999;
}

.test-nav button:hover {
  border-color: var(--nav-bg);
  color: var(--nav-bg);
}

.test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.test-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all .2s;
}

.test-dots span.active {
  background: var(--nav-bg);
  width: 24px;
  border-radius: 4px;
}

/* ===================================================================
   ARTICLES / HOW-TO GUIDES
   =================================================================== */
.articles-section {
  padding: 50px 0;
  background: #fafafa;
}

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

.articles-header .section-heading {
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.articles-header .articles-subtitle {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 0;
}

.articles-header .see-all {
  font-size: 13px;
  color: #888;
  text-decoration: underline;
}

.articles-header .see-all:hover {
  color: var(--gold);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  cursor: pointer;
}

.article-card:hover .article-img img {
  transform: scale(1.05);
}

.article-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
  margin-bottom: 10px;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.article-author {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.article-category {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  font-weight: bold;
}

.article-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card:hover .article-title {
  color: var(--gold);
}

/* ===================================================================
   WHY CHOOSE GROWCYCLE
   =================================================================== */
.why {
  padding: 80px 0;
  background: #2b3440;
}

.why-h {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 52px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
}

.why-card {
  text-align: center;
  padding: 52px 32px;
  background: #2b3440;
}

.why-card .num {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 220px;
}

/* ===================================================================
   ALL SERVICES PAGE
   =================================================================== */
.services-page-header {
  padding: 48px 0 40px;
  background: #fafafa;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.services-page-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.services-page-header p {
  font-size: 15px;
  color: #888;
  margin: 0;
}

.services-page-browse {
  padding-top: 48px;
  padding-bottom: 56px;
}

.services-page-browse .browse-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Browse by State --- */
.services-states {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

.services-states h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-align: center;
}

.services-states p {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-bottom: 32px;
}

.states-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.state-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  border-radius: 10px;
  background: #fafafa;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all .2s;
}

.state-link i {
  font-size: 12px;
  color: var(--gold);
}

.state-link:hover {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
  color: var(--dark);
}

/* --- Popular Services --- */
.services-popular {
  padding: 56px 0;
  background: #fafafa;
  border-top: 1px solid #eee;
}

.services-popular h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  text-align: center;
}

.services-popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.services-popular .sp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.services-popular .sp-card:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.sp-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #FFF3E0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-icon i {
  font-size: 14px;
  color: var(--gold);
}

.services-popular .sp-card:hover .sp-icon {
  background: var(--gold);
}

.services-popular .sp-card:hover .sp-icon i {
  color: #fff;
}

.sp-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 991px) {
  .services-page-browse .browse-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .states-grid-v2 {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-popular-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-page-header h1 {
    font-size: 26px;
  }

  .services-page-browse .browse-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .states-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-popular-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-page-header h1 {
    font-size: 22px;
  }

  .services-page-browse .browse-grid {
    grid-template-columns: 1fr;
  }

  .states-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-popular-grid {
    grid-template-columns: 1fr;
  }

  .state-link {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.new-footer {
  background: var(--nav-bg);
  color: rgba(255, 255, 255, .7);
  padding: 50px 0 20px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1.5fr 1.5fr;
  gap: 40px 80px;
}

.foot-logo {
  margin-bottom: 16px;
}

.foot-logo img {
  height: 42px;
  width: auto;
}

.foot-about {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
}

.new-footer h4,
.new-footer .foot-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}

.new-footer ul li {
  margin-bottom: 7px;
}

.new-footer ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.new-footer ul li a:hover {
  color: #fff;
}

.new-footer .view-all {
  font-size: 13px;
  color: #fff;
  text-decoration: underline;
  margin-top: 4px;
  display: inline-block;
}

.new-footer .view-all:hover {
  color: rgba(255, 255, 255, .7);
}

.foot-contact {
  margin-top: 0;
}

.foot-contact .info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .5);
}

.foot-contact .info i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 13px;
}

.foot-contact .info a {
  color: rgba(255, 255, 255, .5);
}

.foot-contact .info a:hover {
  color: #fff;
}

.foot-socialize {
  margin-top: 20px;
}

.foot-socialize p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 10px;
}

.foot-social {
  display: flex;
  gap: 18px;
}

.foot-social a {
  color: rgba(255, 255, 255, .5);
  font-size: 20px;
}

.foot-social a:hover {
  color: #fff;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
}

.member-badge {
  max-width: 280px;
}

/* ===================================================================
   MOBILE SEARCH (inline, Houzz-style)
   =================================================================== */
.mob-search-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: 0;
  flex-shrink: 0;
}

.mob-search-bar {
  display: none;
  flex: 1;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mob-search-bar.open {
  display: flex;
}

.header-top.search-active .logo,
.header-top.search-active .mob-search-trigger,
.header-top.search-active .header-icons,
.header-top.search-active .mobile-toggle {
  display: none !important;
}

.mob-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0 12px;
  height: 38px;
}

.mob-search-icon {
  color: #999;
  font-size: 14px;
  margin-right: 8px;
}

.mob-search-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: #333;
  outline: none;
  font-family: inherit;
}

.mob-search-field input::placeholder {
  color: #aaa;
}

.mob-search-cancel {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  font-family: inherit;
  white-space: nowrap;
  padding: 4px;
}

.mob-search-cancel:hover {
  color: var(--gold);
}

/* ===================================================================
   MOBILE SEARCH MODAL (fullscreen overlay)
   =================================================================== */
.mob-search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 9999;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

.mob-search-modal.active {
  display: flex;
}

.mob-search-modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 14px 16px;
  background: #f5f6f8;
  min-height: 48px;
  flex-shrink: 0;
}

.mob-search-modal-cancel {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  font-family: inherit;
  white-space: nowrap;
  padding: 4px 0;
  flex-shrink: 0;
}

.mob-search-modal-cancel:hover {
  color: var(--gold);
}

.mob-search-modal-hint {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  text-align: center;
  line-height: 1.4;
  flex: 1;
}

.mob-search-modal-hint b {
  font-weight: 700;
  color: #333;
}

.mob-search-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: rgb(56, 73, 92);
  padding: 4px 0;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.mob-search-modal-close:hover {
  opacity: 1;
}

.mob-search-modal-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.mob-search-modal-bar .mob-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  height: 40px;
}

.mob-search-modal-bar .mob-search-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
  height: 100%;
  padding: 0 12px;
}

.mob-search-modal-bar .mob-search-field input::placeholder {
  color: #999;
  font-size: 14px;
}

.mob-search-modal-btn {
  background: var(--gold);
  border: none;
  padding: 0 14px;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  height: 100%;
  flex-shrink: 0;
  align-self: stretch;
  margin-right: -13px;
  border-radius: 0 4px 4px 0;
}

.mob-search-modal-btn:hover {
  background: var(--gold-hover);
}

.mob-search-modal-bar .mob-search-cancel {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  font-family: inherit;
  white-space: nowrap;
  padding: 4px;
}

.mob-search-modal-bar .mob-search-cancel:hover {
  color: var(--gold);
}

.mob-search-modal-results {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c0c0c0 #f5f6f8;
}

.mob-search-modal-results::-webkit-scrollbar {
  width: 4px;
}

.mob-search-modal-results::-webkit-scrollbar-track {
  background: #f5f6f8;
}

.mob-search-modal-results::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 4px;
}

.mob-search-modal-results::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.mob-search-modal-results .header-search-list {
  list-style: none;
  margin: 0;
  padding: 0 4px 0 16px;
}

.mob-search-modal-results .header-search-list li {
  padding: 0;
  margin: 0;
}

.mob-search-modal-results .header-search-hint {
  padding: 14px 16px;
  color: #888;
  font-size: 14px;
  font-style: italic;
}

.mob-search-modal-results .clsTitle {
  margin-top: 5px;
  padding: 10px 4px;
  clear: both;
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  color: #38495c;
  letter-spacing: 0;
}

.mob-search-modal-results .clsTitle:first-child {
  border-top: none;
}

.mob-search-modal-results .clsTree {
  padding: 5px 4px;
  display: flex;
  cursor: pointer;
}

.mob-search-modal-results .clsTree:before {
  content: '';
  display: block;
  margin: -10px 3px 8px 0;
  width: 24px;
  min-width: 24px;
  border-left: 1px dashed #38495c;
  border-bottom: 1px dashed #38495c;
  opacity: 0.5;
}

.mob-search-modal-results .clsTree a {
  display: block;
  padding: 2px 4px;
  color: #38495c;
  text-decoration: none;
  font-size: 15px;
}

.mob-search-modal-results .clsTree:hover a,
.mob-search-modal-results .clsTree a:hover {
  text-decoration: underline;
}

.mob-search-modal-results .clsUserHistory {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 15px;
}

.mob-search-modal-results .clsUserHistory:hover {
  background: #f6f6f6;
}

.mob-search-modal-results .clsUserHistory .clsIcon {
  margin-right: 10px;
  color: #999;
}

.mob-search-modal-results .clsUserHistory .clsQuery {
  flex: 1;
  color: #333;
}

.mob-search-modal-results .clsUserHistory .clsDelete {
  color: #ccc;
  cursor: pointer;
  padding: 4px 6px;
}

.mob-search-modal-results .clsUserHistory .clsDelete:hover {
  color: #e74c3c;
}

/* ===================================================================
   MOBILE HAMBURGER + DRAWER
   =================================================================== */
/* Mobile search bar */
.mobile-search {
  display: none;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 3px;
  flex-shrink: 0;
  padding-left: 0px;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s;
}

.mobile-overlay.show {
  display: block;
  opacity: 1;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 999;
  transition: left .35s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 4px 0 20px rgba(0, 0, 0, .15);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-drawer.open {
  left: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-drawer-header img {
  height: 28px;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* Mobile nav items */
.mob-nav {
  padding: 8px 0;
}

.mob-section-title {
  padding: 11px 20px 7px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #f5b02c;
}

.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.mob-link.active {
  color: var(--gold);
}

.mob-link .mob-chevron {
  font-size: 20px;
  color: #ccc;
  transition: transform .25s;
}

.mob-link.active .mob-chevron {
  transform: rotate(90deg);
  color: var(--gold);
}

/* Mobile sub-panel */
.mob-sub {
  display: none;
  background: #fafafa;
}

.mob-sub.open {
  display: block;
}

.mob-sub > a {
  display: block;
  padding: 10px 20px 10px 32px;
  font-size: 15px;
  color: #555;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.mob-sub > a:hover {
  color: var(--gold);
}

.mob-sub-group-title {
  padding: 10px 20px 4px 32px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Mobile sub-category accordion */
.mob-sub-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 16px 11px 28px;
  background: 0 0;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #384454;
  letter-spacing: .4px;
  cursor: pointer;
  transition: color .2s;
}

.mob-sub-cat.active {
  color: #384454;
}

.mob-sub-cat .mob-chevron {
  font-size: 20px;
  color: #ccc;
  transition: transform .2s;
}

.mob-sub-cat.active .mob-chevron {
  transform: rotate(90deg);
  color: var(--gold);
}

.mob-sub-services {
  display: none;
  background: #f3f3f3;
}

.mob-sub-services.open {
  display: block;
}

.mob-sub-services a {
  display: block;
  padding: 9px 20px 9px 42px;
  color: #555;
  font-size: 15px;
  text-decoration: none;
}

.mob-divider {
  display: none;
}

.mob-call {
  color: var(--gold);
}

.mob-call i {
  margin-right: 8px;
}

/* ===================================================================
   LISTING / SEARCH PAGE
   =================================================================== */

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-border);
}

.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  /* Strip default <ol> styling so the flex row renders identically to the
     prior <div>-based markup — numbers/indent/block margins are gone. */
  list-style: none;
}

.breadcrumb-inner li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.breadcrumb-inner a {
  color: #767678;
}

.breadcrumb-inner a:hover {
  color: var(--gold);
}

.breadcrumb-inner .sep {
  color: #bbb;
  font-size: 10px;
}

.breadcrumb-inner .current {
  color: #333;
  font-weight: 600;
}

/* Hero banner (listing page) */
.hero-banner {
  background: radial-gradient(ellipse at 20% 80%, rgba(45, 149, 150, 0.6) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(72, 202, 174, 0.4) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(20, 60, 80, 0.8) 0%, transparent 70%), linear-gradient(160deg, #0f2027 0%, #203a43 40%, #2c5364 100%);
  padding: 48px 0;
  margin-top: -1px;
  position: relative;
}

.hero-banner .hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.hero-banner h1 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 28px;
}

.hero-banner .hero-search-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.hero-banner .hero-search {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  height: 56px;
}

.hero-banner .hero-search-wrap.open .hero-search {
  border-radius: 10px 10px 0 0;
}

.hero-banner .hero-search input {
  flex: 1;
  border: none;
  padding: 0 20px;
  font-size: 15px;
  background: transparent;
  color: #333;
  min-width: 0;
}

.hero-banner .hero-search input::placeholder {
  color: var(--gray-400);
}

.hero-banner .hero-search .loc-sep {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 4px 0 0;
  color: #999;
  font-size: 14px;
  border-left: 1px solid #eee;
}

.hero-banner .hero-search .loc-sep i {
  padding-left: 12px;
  font-size: 14px;
  color: #999;
}

.hero-banner .hero-search .loc-input {
  width: 70px;
  border: none;
  text-align: center;
  font-size: 17px;
  color: #555;
  background: transparent;
  padding: 0;
  font-weight: 600;
}

.hero-banner .hero-search .hero-btn {
  background: var(--gold);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 0 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.hero-banner .hero-search .hero-btn:hover {
  background: var(--gold-hover);
}

.hero-banner .hero-error-text {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  color: #fff;
  background: rgba(220, 53, 69, .85);
  margin-top: 8px;
}

/* Related services horizontal scroller */
.related-services {
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
  padding: 28px 0;
}

.related-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.related-inner h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.related-scroll-wrap {
  position: relative;
}

.related-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  justify-content: center;
}

.related-grid--looping {
  justify-content: flex-start;
}

.related-grid::-webkit-scrollbar {
  display: none;
}

.related-item {
  flex-shrink: 0;
  width: calc((100% - 80px) / 6);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-border);
  transition: box-shadow .2s, transform .2s;
}

.related-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.related-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: var(--gray-bg);
}

.related-item img.cc-no-image {
  object-fit: contain !important;
  height: 120px !important;
  padding: 15px;
  background: #e8e8e8 !important;
}

.related-item .related-title {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.related-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  z-index: 5;
  transition: all .2s;
}

.related-arrow:hover {
  background: var(--nav-bg);
  color: #fff;
  border-color: var(--nav-bg);
}

.related-arrow.left {
  left: 0;
}

.related-arrow.right {
  right: 0;
}

/* Verified Reviews Banner */
.vr-banner {
  background: linear-gradient(135deg, #384454 0%, #2a3340 50%, #1e2830 100%);
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
}

.vr-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 15% 80%, rgba(56, 68, 84, .3) 0%, transparent 100%),
    radial-gradient(ellipse 600px 400px at 85% 20%, rgba(42, 51, 64, .25) 0%, transparent 100%),
    radial-gradient(ellipse 900px 600px at 50% 50%, rgba(30, 40, 48, .3) 0%, transparent 70%);
  pointer-events: none;
}

.vr-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.vr-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 8px;
}

.vr-title span {
  color: var(--gold);
  text-transform: capitalize;
}

.vr-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 10px;
  line-height: 1.5;
}

.vr-updated {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  text-align: center;
  margin-bottom: 28px;
}

.vr-track {
  display: flex;
  gap: 16px;
}

.vr-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

.vr-reviewer {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 4px;
  text-transform: capitalize;
}

.vr-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.vr-date {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.vr-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-600);
  flex: 1;
  margin: 0 0 16px;
}

.vr-company {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.vr-company:hover span {
  color: var(--gold);
}

.vr-company img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
}

.vr-company span {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-transform: capitalize;
}

.vr-cta {
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}

.vr-cta:hover {
  background: #0e9a66;
  color: #fff;
}

.vr-scroll-wrap {
  position: relative;
}

.vr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  z-index: 5;
  transition: all .2s;
}

.vr-arrow.left {
  left: 12px;
}

.vr-arrow.right {
  right: 12px;
}

.vr-arrow:hover {
  background: var(--nav-bg);
  color: #fff;
  border-color: var(--nav-bg);
}

.vr-nav-row {
  display: none;
}

/* Two-column page layout */
.page-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 24px 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

/* Sidebar filters */
.filter-sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

.mobile-filter-btn {
  display: none;
}

.mobile-location-btn {
  display: none;
}

/* ===== LOCATION BOTTOM SHEET ===== */
.location-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 1050;
}

.location-sheet-overlay.active {
  display: block;
}

.location-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  z-index: 1051;
  max-height: 60vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .3s ease;
  pointer-events: none;
}

.location-sheet.open {
  transform: translateY(0);
  pointer-events: auto;
}

.location-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
}

.location-sheet-header h3,
.location-sheet-header .filter-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.location-sheet-header button {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--nav-bg);
  cursor: pointer;
  padding: 4px 8px;
}

.location-sheet-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.location-sheet-search {
  position: relative;
  margin-bottom: 16px;
}

.location-sheet-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 14px;
}

.location-sheet-search input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}

.location-sheet-search input:focus {
  border-color: var(--gray-500);
}

.location-sheet-search input::placeholder {
  color: var(--gray-400);
}

.location-sheet-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--nav-bg);
  cursor: pointer;
}

.location-sheet-action i {
  font-size: 16px;
}

.location-sheet-results {
  margin-top: 8px;
}

.location-sheet-results a,
.location-sheet-results .location-sheet-result-item {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
}

.location-sheet-results a:hover {
  color: var(--gold-hover);
}

.location-sheet-results .location-loading {
  padding: 12px 0;
  font-size: 14px;
  color: var(--gray-500);
}

.location-sheet-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 12px 0;
}

.location-sheet-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.location-sheet-city {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
}

.location-sheet-city:hover {
  color: var(--gold-hover);
}

.filter-drawer-header {
  display: none;
}

.filter-overlay {
  display: none;
}

.filter-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.filter-card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-card-header h3,
.filter-card-header .filter-title,
.filter-drawer-header .filter-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.filter-card-header a {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.filter-card-header a:hover {
  text-decoration: underline;
}

.filter-card-body {
  padding: 14px 18px;
}

.filter-card-body.filter-scroll {
  max-height: 250px;
  overflow-y: auto;
}

.filter-card-body.filter-scroll::-webkit-scrollbar {
  width: 5px;
}

.filter-card-body.filter-scroll::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 4px;
}

.filter-card-body.filter-scroll::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #FFF8E8;
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.filter-pill i {
  cursor: pointer;
  color: #888;
  font-size: 10px;
}

.filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.filter-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  color: #333;
  background: #fff;
  cursor: pointer;
  appearance: auto;
  font-family: inherit;
  outline: none;
}

.filter-group {
  margin-bottom: 16px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: #555;
  cursor: pointer;
}

.filter-check input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.filter-check input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s;
}

.filter-check input[type="radio"]:checked {
  border-color: var(--gold);
}

.filter-check input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Location search dropdown */
.location-search-wrap {
  position: relative;
}

.location-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.location-input-icon {
  position: absolute;
  left: 12px;
  color: var(--gray-500);
  font-size: 14px;
  pointer-events: none;
}

.location-input-caret {
  position: absolute;
  right: 12px;
  color: var(--gray-500);
  font-size: 12px;
  pointer-events: none;
}

.location-input-wrap input {
  width: 100%;
  padding: 10px 32px 10px 34px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 13px;
  color: #333;
  background: #fff;
  outline: none;
  cursor: pointer;
}

.location-input-wrap input:focus {
  border-color: var(--gray-500);
  cursor: text;
}

.location-input-wrap input::placeholder {
  color: #333;
}

/* Allow dropdown to overflow the filter card */
.filter-card:has(.location-search-wrap) {
  overflow: visible;
}

.location-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
}

.location-dropdown.open {
  display: block;
}

.location-dropdown::-webkit-scrollbar {
  width: 5px;
}

.location-dropdown::-webkit-scrollbar-track {
  background: var(--gray-100);
}

.location-dropdown::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

.location-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--gray-700);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}

.location-dropdown-item:hover {
  background: var(--gray-100);
  color: var(--gray-800);
}

.location-dropdown-item.location-action {
  color: var(--green);
  font-weight: 600;
}

.location-dropdown-item.location-action:hover {
  background: var(--green-light);
  color: var(--green);
}

.location-dropdown-item.location-loading {
  color: var(--gray-500);
  cursor: default;
}

.location-dropdown-item.location-loading:hover {
  background: transparent;
}

.location-dropdown-item .spinner-border-sm {
  width: 14px;
  height: 14px;
  border-width: 2px;
}

.location-dropdown-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 4px 0;
}

.location-dropdown-header {
  padding: 8px 18px 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Service search input in filter */
.filter-search-wrap {
  margin-bottom: 10px;
  position: sticky;
  top: -14px;
  background: #fff;
  z-index: 1;
  padding-top: 14px;
  padding-bottom: 6px;
}

.filter-search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 12px;
  font-family: inherit;
  color: var(--gray-800);
  outline: none;
  transition: border-color .2s;
}

.filter-search-input:focus {
  border-color: var(--gold);
}

.filter-search-input::placeholder {
  color: var(--gray-400);
}

.filter-no-results {
  padding: 8px 0;
  font-size: 12px;
  color: var(--gray-500);
}

/* Listings area */
.listings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.listings-header h2 {
  font-size: 14px;
  font-weight: 600;
  color: #767678;
}

.listings-header select {
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  background: #fff;
  font-family: inherit;
  outline: none;
}

/* Company card (listing) */
.company-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  transition: box-shadow .2s;
}

.company-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
}

.cc-gallery {
  position: relative;
  overflow: hidden;
  background: var(--gray-bg);
  min-height: 260px;
}

.cc-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gray-bg);
}

.cc-gallery .cc-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gray-bg);
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.cc-gallery .cc-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-no-image {
  background: none;
  aspect-ratio: auto;
}

.cc-no-image {
  object-fit: contain !important;
  background: #e8e8e8 !important;
  padding: 0;
  width: 100% !important;
  height: 100% !important;
}

.cc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray-800);
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, background .2s;
}

@media (hover: hover) {
  .cc-gallery:hover .cc-arrow {
    opacity: 1;
    pointer-events: auto;
  }

  .cc-arrow:hover {
    background: #fff;
  }
}

@media (hover: none) {
  .cc-arrow {
    opacity: 1;
    pointer-events: auto;
  }
}

.cc-prev { left: 10px; }
.cc-next { right: 10px; }

.cc-img-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cc-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.cc-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.cc-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gray-border);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-bg);
}

.cc-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 4px;
}

.cc-name a {
  color: var(--dark);
}

.cc-name a:hover {
  color: var(--gold);
}

.cc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #767678;
}

.cc-stars {
  color: var(--gold);
  font-size: 13px;
}

.cc-location {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cc-location i {
  font-size: 12px;
  color: #bbb;
}

.cc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.cc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #fafafa;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #767678;
}

.cc-badge i {
  font-size: 10px;
}

.cc-badge.green {
  background: #e6f9f1;
  border-color: #b8edd8;
  color: #0a7a50;
}

.cc-desc {
  font-size: 13px;
  color: #767678;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  flex: 1;
}

.cc-actions {
  display: flex;
  gap: 10px;
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
  text-decoration: none;
}

.cc-btn-green {
  background: #12B076;
  color: #fff;
  border: 2px solid #12B076;
}

.cc-btn-green:hover {
  background: #0e9a66;
  border-color: #0e9a66;
}

.cc-btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid #ddd;
}

.cc-btn-outline:hover {
  border-color: var(--nav-bg);
  color: var(--nav-bg);
}

/* Disclaimer */
.disclaimer-bar {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
}

.disclaimer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
}

.disclaimer-inner p {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

.disclaimer-inner strong {
  color: #767678;
}

/* Listing pagination */
.listings-area .pagination {
  gap: 6px;
  padding: 30px 0 0;
  margin: 0;
  list-style: none;
}

.listings-area .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  background: #fff;
  text-decoration: none;
  transition: all .2s;
}

.listings-area .page-item .page-link:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--dark);
}

.listings-area .page-item .page-link:focus {
  box-shadow: 0 0 0 3px rgba(232, 178, 55, .3);
  border-color: var(--gold);
  outline: none;
}

.listings-area .page-item.active .page-link {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.listings-area .page-item.disabled .page-link {
  color: var(--gray-400);
  background: var(--gray-50);
  border-color: var(--gray-200);
  cursor: not-allowed;
}

/* Empty state */
.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results p {
  font-size: 16px;
  color: var(--gray-500);
}

/* ===================================================================
   PROJECT PAGE
   =================================================================== */

/* Two-column layout */
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

/* Gallery */
.gallery {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--gray-bg);
  aspect-ratio: 16 / 9.5;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--nav-bg);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  transition: all .2s;
  z-index: 5;
  border: none;
}

.gallery-nav:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.gallery-nav.prev {
  left: 14px;
}

.gallery-nav.next {
  right: 14px;
}

.gallery-dots {
  display: none;
}

.gallery-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all .2s;
  border: none;
}

.gallery-dots .dot.active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}

/* Project header */
.project-header {
  margin-top: 28px;
  margin-bottom: 28px;
}

.project-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 10px;
}

.project-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 6px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #555;
}

/* When a .meta-item is rendered as <address> (e.g. .meta-location), the
   browser default font-style:italic would italicize the text. Reset to
   normal so the <address> tag swap is purely semantic. */
address.meta-item {
  font-style: normal;
  display: flex;
  margin: 0;
}

.meta-item i {
  font-size: 13px;
  color: #888;
}

.meta-item a {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

.meta-item a:hover {
  text-decoration: underline;
}

.meta-label {
  white-space: nowrap;
}

.meta-item-by {
  flex-wrap: wrap;
}

/* CTA strip */
.cta-strip {
  background: var(--nav-bg);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-strip-text {
  flex: 1;
}

.cta-strip-text h4,
.cta-strip-text h2.cta-strip-title,
.cta-strip-text .cta-heading {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px 0;
  line-height: 1.3;
}

.cta-strip-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 0;
}

.cta-strip-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cta-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}

.cta-btn-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}

.cta-btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.cta-btn-green {
  background: #12B076;
  color: #fff;
  border: 2px solid #12B076;
}

.cta-btn-green:hover {
  background: #0e9a66;
  border-color: #0e9a66;
}

.cta-btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .3);
}

.cta-btn-outline-white:hover {
  border-color: #fff;
}

/* Section label */
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #888;
  /* margin:0 0 12px 0 so promoting <div class="section-label"> -> <h3 class=
     "section-label"> doesn't inherit the browser-default <h3> top/bottom margin
     (~17px each). Visual stays pixel-identical to the prior <div> rendering. */
  margin: 0 0 12px 0;
}

/* About text */
.about-location-context {
  font-size: 14px;
  color: var(--gray-600, #6c757d);
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}
.about-text {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 24px;
}

/* Service pills */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.service-pill {
  padding: 8px 16px;
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  transition: all .15s;
}

.service-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Inline disclaimer */
.inline-disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-border);
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

.inline-disclaimer strong {
  color: #767678;
}

/* Popular projects grid */
.popular-projects {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-border);
}

.popular-projects-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.more-projects-link {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.more-projects-link:hover {
  color: var(--primary);
}

.projects-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proj-card {
  cursor: pointer;
  transition: transform .2s;
  text-decoration: none;
}

/* <article class="proj-card-wrap"> wraps each project <a class="proj-card"> for
   semantic SEO (each project is a self-contained article). display:contents
   makes the article "invisible" to the parent .projects-grid-4 CSS grid — the
   inner <a> remains the grid item, preserving the 4-column layout exactly. */
.proj-card-wrap {
  display: contents;
}

.proj-card:hover {
  transform: translateY(-3px);
}

.proj-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-bg);
}

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.proj-card:hover .proj-img img {
  transform: scale(1.04);
}

.proj-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.proj-count i {
  font-size: 11px;
}

.proj-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin: 8px 0 0 0;
  line-height: 1.3;
}

.proj-location {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

/* Right sidebar */
.sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
}

/* Lead card */
.lead-card {
  background: #fff;
  border: 2px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.lead-card-header {
  background: var(--nav-bg);
  padding: 22px 24px;
  text-align: center;
}

.lead-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.lead-card-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.lead-card-body {
  padding: 24px;
}

/* Mini company in lead card */
.lead-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gray-border);
}

.lead-mini-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-bg);
  border: 2px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.lead-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.lead-mini-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.lead-mini-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #888;
  margin-top: 2px;
}

.star-rating {
  color: var(--gold);
  letter-spacing: -1px;
  font-size: 15px;
}

/* Trust row */
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.trust-item {
  text-align: center;
  padding: 10px 4px;
  background: #fafafa;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
}

.trust-item i {
  font-size: 16px;
  color: var(--nav-bg);
  margin-bottom: 3px;
  display: block;
}

.trust-item span {
  font-size: 10px;
  font-weight: 700;
  color: #555;
  line-height: 1.3;
  display: block;
}

/* Social proof */
.social-proof {
  text-align: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-border);
  font-size: 12px;
  color: #888;
}

.social-proof strong {
  color: var(--dark);
}

/* Lead form card */
.lead-form-card {
  margin-top: 16px;
  background: #fff;
  border: 2px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.lead-form-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-border);
  background: #fafafa;
}

.lead-form-card-header h4,
.lead-form-card-header .cta-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.lead-form-card-header p {
  font-size: 13px;
  color: #888;
}

.lead-form-card-body {
  padding: 24px;
}

.lead-form-card-body .field {
  margin-bottom: 12px;
}

/* Form fields */
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #767678;
  margin-bottom: 5px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s;
  font-family: inherit;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #bbb;
}

.field .select2-container--default .select2-selection--single {
  height: auto;
  padding: 8px 14px;
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  background: #fff;
}

.field .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: normal;
  font-size: 14px;
  color: var(--dark);
}

.field .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #bbb;
}

.field .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 10px;
}

.field .select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid .full {
  grid-column: span 2;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 15px 24px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: var(--gold);
  color: #fff;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.btn-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 176, 44, .3);
}

.btn-submit.btn-green {
  background: #12B076;
}

.btn-submit.btn-green:hover {
  background: #0e9a66;
  box-shadow: 0 6px 20px rgba(18, 176, 118, .3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-submit .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .15);
  animation: shine 3.5s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  40% { left: 100%; }
  100% { left: 100%; }
}

.consent-text {
  font-size: 11px;
  color: #bbb;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.consent-text a {
  color: var(--gold);
}

/* Sidebar secondary card */
.sidebar-secondary {
  margin-top: 16px;
  padding: 20px;
  background: #fafafa;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
}

.sidebar-secondary h4,
.sidebar-secondary .sidebar-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  display: block;
}

.sidebar-secondary .ss-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 13px;
  color: #555;
}

.sidebar-secondary .ss-row:last-child {
  border-bottom: none;
}

.sidebar-secondary .ss-row i {
  width: 18px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

.sidebar-secondary .ss-row span {
  font-weight: 600;
}

/* Mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .12);
  border-top: 1px solid var(--gray-border);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-strip {
  background: var(--nav-bg);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.mobile-cta-text h4,
.mobile-cta-text .mobile-cta-title,
.mobile-cta-text .cta-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.mobile-cta-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 12px;
}

.mobile-cta-actions {
  display: flex;
  gap: 8px;
}

.mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.mobile-cta-btn-call {
  background: var(--green);
  color: #fff;
}

.mobile-cta-btn-msg {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
}

.mobile-cta-bar .btn-submit {
  padding: 14px;
}

/* Success modal */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-bg.show {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  animation: modalPop .3s ease;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e6f9f1;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon i {
  font-size: 28px;
  color: #12B076;
}

.modal-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.modal-box p {
  font-size: 14px;
  color: #767678;
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal-box .btn-submit {
  max-width: 200px;
  margin: 0 auto;
}

/* ZIP Error Modal */
.lp-zipmodal-box { position: relative; padding: 48px 36px 40px; }
.lp-zipmodal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px; color: var(--gray-500);
}
.lp-zipmodal-close:hover { background: var(--gray-200); color: var(--dark); }
.lp-zipmodal-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(245, 176, 44, .12);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.lp-zipmodal-icon i { font-size: 30px; color: var(--gold); }
.lp-zipmodal-heading { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.lp-zipmodal-sub {
  font-size: 14px; color: var(--gray-600);
  line-height: 1.6; margin-bottom: 20px;
  max-width: 300px; margin-left: auto; margin-right: auto;
}
.lp-zipmodal-input-wrap { max-width: 260px; margin: 0 auto 20px; }
.lp-zipmodal-input {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--gray-200); border-radius: 10px;
  font-size: 16px; text-align: center; letter-spacing: 4px;
  font-weight: 600; color: var(--dark); outline: none;
}
.lp-zipmodal-input:focus { border-color: var(--green); }
.lp-zipmodal-input.is-invalid { border-color: #e74c3c; }
.lp-zipmodal-btns .lp-btn {
  max-width: 260px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}

/* ZIP input validation states */
.zip-input.is-invalid,
.loc-sep .zip-input.is-invalid,
.nearme-hero-zip-wrap .zip-input.is-invalid {
  border-color: #e74c3c;
  color: #e74c3c;
}
.zip-input.zip-valid {
  border-color: var(--green);
}
/* Parent wrapper border turns red when zip input inside is invalid */
.search-modal-zip:has(.zip-input.is-invalid) {
  border-color: #e74c3c;
}
.search-modal-zip .zip-input.is-invalid {
  color: #e74c3c;
}
.loc-sep:has(.zip-input.is-invalid) {
  border-color: #e74c3c;
}
.nearme-hero-zip-wrap:has(.zip-input.is-invalid) {
  border-color: #e74c3c;
}
.fa-map-marker-alt.text-danger {
  color: #e74c3c !important;
}

/* Utility */
.text-green {
  color: var(--green);
}

.lead-mini-initials {
  font-weight: 700;
  color: var(--nav-bg);
  font-size: 16px;
}

.field-service {
  margin-top: 8px;
}

/* ===================================================================
   UTILITY: hide reCAPTCHA badge
   =================================================================== */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* ===================================================================
   LEAD GEN POPUP (.lp-*)
   =================================================================== */
.lp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lp-overlay.open { opacity: 1; visibility: visible; }
.lp-overlay .lp-popup {
  transform: translateY(20px) scale(.97);
  transition: transform .3s ease;
}
.lp-overlay.open .lp-popup {
  transform: translateY(0) scale(1);
}

/* In-popup loading animation */
.lp-pre-step {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #fff;
}
.lp-pre-step.active { display: flex; }
.lp-pre-wrap { position: relative; width: 100px; height: 100px; }
.lp-pre-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--gray-200);
  border-top-color: var(--green);
  animation: lpRingSpin .8s linear infinite;
}
.lp-pre-ring2 {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-bottom-color: rgba(18,176,118,.3);
  animation: lpRingSpin 1.28s linear infinite reverse;
}
.lp-pre-house {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lpHousePulse 1.6s ease-in-out infinite;
}
.lp-pre-house i { font-size: 30px; color: var(--green); }
@keyframes lpRingSpin { to { transform: rotate(360deg); } }
@keyframes lpHousePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* Popup container */
.lp-popup {
  background: #fff;
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  overflow: hidden;
  overscroll-behavior: contain;
}
.lp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--gray-600);
  z-index: 10;
}
.lp-close:hover { background: var(--gray-200); }
.lp-progress {
  height: 6px;
  background: var(--gray-100);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.lp-bar {
  height: 100%;
  background: var(--green);
  transition: width .4s;
  width: 0%;
}
.lp-inner {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}
.lp-inner::-webkit-scrollbar { display: none; }
.lp-form-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* Steps */
.lp-step { display: none; opacity: 1; min-width: 0; }
.lp-step.active {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 48px 44px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: none;
}
.lp-step.active::-webkit-scrollbar { display: none; }
.lp-step.active > *:not(.lp-btn-row):not(.lp-calling):not(.lp-load):not(.lp-confirm-scroll):not(.lp-confirm-footer):not(.sp-wrap) {
  animation: lpFadeIn .45s cubic-bezier(.25,.1,.25,1) both;
}
.lp-step.active > *:nth-child(2):not(.lp-btn-row) { animation-delay: .06s; }
.lp-step.active > *:nth-child(3):not(.lp-btn-row) { animation-delay: .12s; }
.lp-step.active > *:nth-child(4):not(.lp-btn-row) { animation-delay: .18s; }
.lp-step.active > *:nth-child(5):not(.lp-btn-row) { animation-delay: .24s; }
.lp-step.active > *:nth-child(6):not(.lp-btn-row) { animation-delay: .30s; }
.lp-btn-row { opacity: 1 !important; animation: none !important; }
@keyframes lpFadeIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Typography */
.lp-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
  padding-right: 40px;
  word-wrap: break-word;
  text-align: center;
}
.lp-sub {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.5;
  text-align: center;
}

/* Options (card style) */
.lp-options { display: flex; flex-direction: column; gap: 10px; }
.lp-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: all .2s;
}
.lp-opt:hover { border-color: var(--green); background: var(--green-light); }
.lp-opt.sel { border-color: var(--green); background: var(--green-light); }
.lp-opt input { display: none; }
.lp-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-opt.sel .lp-dot { border-color: var(--green); background: var(--green); }
.lp-opt.sel .lp-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }

/* Question list (flat radio) */
.lp-qlist {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
}
.lp-qi {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-200);
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
}
.lp-qi:last-child { border-bottom: none; }
/* Persistent backgrounds removed per UX request (no hover/selected
   highlight). Brief :active flash kept so mobile users get feedback
   that a tap registered — without it, a touch on a row that doesn't
   visibly change feels broken on touch devices. */
.lp-qi:hover,
.lp-qi.sel { background: transparent; }
.lp-qi:active { background: var(--gray-50); }
.lp-qi:focus { outline: none; }
.lp-qi input { display: none; }
.lp-qi::selection, .lp-qi *::selection { background: transparent; }
.lp-qi:focus-within { background: transparent; }
.lp-qi-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.lp-qi.sel .lp-qi-dot { border-color: var(--green); background: var(--green); }
.lp-qi.sel .lp-qi-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }

/* Checkbox-style multi-select */
.lp-qi-check {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.lp-qi.chk-sel .lp-qi-check { border-color: var(--green); background: var(--green); }
.lp-qi.chk-sel .lp-qi-check::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: #fff;
}
.lp-qi.chk-sel,
.lp-qi.chk-sel:hover { background: transparent !important; }

/* Radio dot + checkbox indicators are visible — selection feedback
   relies on these (the .lp-qi row itself stays transparent on hover
   /selected to keep the list clean). */

/* Buttons */
.lp-btn {
  width: 100%;
  padding: 0 16px;
  height: 52px;
  border: 1.5px solid transparent; /* explicit so border-color hover transitions look right on filled variants */
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.lp-btn-g {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 2px 6px rgba(18, 176, 118, .18);
}
.lp-btn-g:hover {
  background: #0e9a66;
  border-color: #0e9a66;
  box-shadow: 0 4px 10px rgba(14, 154, 102, .25);
}
.lp-btn-gold {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 2px 6px rgba(18, 176, 118, .18);
}
.lp-btn-gold:hover {
  background: #0e9a66;
  border-color: #0e9a66;
  box-shadow: 0 4px 10px rgba(14, 154, 102, .25);
}
.lp-btn-g.disabled, .lp-btn-gold.disabled {
  background: var(--gray-200);
  border-color: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.lp-btn-o {
  background: #fff;
  color: #4A5B74;
  /* Hardcoded color: --gray-300 in this theme is #ddd (too light on white).
     Using #c5cdd9 directly so the outlined button is clearly visible. */
  border: 1.5px solid #c5cdd9;
}
.lp-btn-o:hover {
  background: #fafafa;
  color: #0D1B2A;
  border-color: #9aa5b6;
}
.lp-btn-o:active {
  background: #fafafa !important;
  color: #4A5B74 !important;
  border-color: #9aa5b6 !important;
}
.lp-btn-o:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 176, 118, .15);
}
.lp-btn-outline {
  background: #fff;
  color: var(--dark);
  border: 1.5px solid #c5cdd9;
}
.lp-btn-outline:hover {
  background: #fafafa;
  border-color: #9aa5b6;
}
.lp-btn-outline:hover { background: var(--gray-50); }
.lp-btn-outline:active { background: var(--gray-50) !important; }
.lp-btn-outline:focus { outline: none; }
.lp-btn-row {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding: 20px 0 28px;
  background: #fff;
  z-index: 5;
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  border-top: 1px solid var(--gray-100);
}
.lp-btn-row .lp-btn { flex: 1; }
.lp-btn-row-contact { flex-direction: column; gap: 16px; }
.lp-contact-btn-row { display: flex; gap: 12px; width: 100%; }
.lp-contact-btn-row .lp-btn { flex: 1; }

/* Form fields */
.lp-fd { position: relative; margin-bottom: 14px; }
.lp-fd label {
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .3px;
  opacity: 0;
  transition: opacity .2s;
}
.lp-fd.hv label { opacity: 1; }
.lp-fd input {
  width: 100%;
  padding: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  color: var(--dark);
}
.lp-fd.hv input { padding: 26px 18px 10px; }
.lp-fd input:focus { outline: none; border-color: var(--green); }
.lp-fd input::placeholder { color: var(--gray-400); font-size: 14px; }
.lp-fd-row { display: flex; gap: 12px; }
.lp-fd-row .lp-fd { flex: 1; }
.lp-fd .lp-chk {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 18px;
  opacity: 0;
}
.lp-fd.valid .lp-chk { opacity: 1; }
.lp-fd.valid input { border-color: var(--green); }

/* Textarea */
.lp-ta {
  width: 100%;
  min-height: 180px;
  padding: 16px 18px;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  resize: vertical;
  max-width: 100%;
}
.lp-ta:focus { outline: none; border-color: var(--green); }
.lp-ta::placeholder { color: var(--gray-400); }
.lp-cc { text-align: right; font-size: 12px; color: var(--gray-400); margin-top: 6px; }
.lp-optional { font-size: 14px; color: var(--gray-400); text-align: center; margin-bottom: 24px; }

/* Photos upload */
.lp-photo-preview { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; }
.lp-photo-preview:has(.lp-photo-add-card:only-child) { grid-template-columns: 1fr; }
.lp-photo-thumb-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gray-200);
}
.lp-photo-thumb { width: 100%; height: 160px; object-fit: cover; display: block; }
.lp-photo-loading {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.lp-photo-loading-dots { display: flex; gap: 6px; }
.lp-photo-loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  opacity: .3;
  animation: lpPhotoDot 1.2s ease-in-out infinite;
}
.lp-photo-loading-dots span:nth-child(2) { animation-delay: .2s; }
.lp-photo-loading-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes lpPhotoDot { 0%,80%,100% { opacity: .3; transform: scale(.8); } 40% { opacity: 1; transform: scale(1.1); } }
.lp-photo-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 3;
}
.lp-photo-remove:hover { background: rgba(0,0,0,.8); }
.lp-photo-desc {
  width: 100%;
  border: none;
  border-top: 1px solid var(--gray-200);
  padding: 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  outline: none;
}
.lp-photo-desc::placeholder { color: var(--gray-400); }
.lp-photo-add-card {
  border: 2px dashed var(--gray-300);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  aspect-ratio: 1;
  transition: all .2s;
  background: var(--gray-50);
}
.lp-photo-add-card:hover { border-color: var(--green); background: rgba(18,176,118,.04); }
.lp-photo-add-card:only-child { aspect-ratio: auto; height: 64px; grid-column: 1 / -1; flex-direction: row; }
.lp-photo-add-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lp-photo-add-card:only-child .lp-photo-add-inner { flex-direction: row; gap: 8px; }
.lp-photo-add-inner i { font-size: 24px; color: var(--green); }
.lp-photo-add-card:only-child .lp-photo-add-inner i { font-size: 18px; }
.lp-photo-add-inner span { font-size: 12px; font-weight: 600; color: var(--green); }
.lp-photo-add-card:only-child .lp-photo-add-inner span { font-size: 14px; }
.lp-photo-count { font-size: 13px; color: var(--gray-500); margin-top: 8px; text-align: center; }

/* Checkbox */
.lp-chkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; cursor: pointer; }
.lp-chkbox input { display: none; }
.lp-chk-sq {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.lp-chkbox input:checked + .lp-chk-sq { background: var(--green); border-color: var(--green); }
.lp-chkbox input:checked + .lp-chk-sq::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 11px;
  color: #fff;
}

/* Disclaimer */
.lp-disc {
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
  padding-bottom: 4px;
  flex-shrink: 0;
}
.lp-disc a { color: var(--green); font-weight: 600; }

/* Phone Verification */
.lp-verify-phone { font-weight: 700; color: var(--dark); }
.lp-verify-link { text-align: center; margin-bottom: 24px; }
.lp-verify-link a { color: var(--gold); font-weight: 600; font-size: 14px; }
.lp-code-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.lp-code-input {
  width: 48px;
  height: 56px;
  border: 2px solid #9ca3af;
  border-radius: 10px;
  text-align: center;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}
.lp-code-input::placeholder { color: #bbb; font-size: 18px; }
.lp-code-input:focus { border-color: var(--green); outline: none; }
.lp-otp-wrap {
  position: relative;
  margin: 0 auto;
}
.lp-otp-single {
  display: block;
  height: 48px;
  border: none;
  border-radius: 0;
  background: transparent;
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 26px;
  padding: 0;
  padding-left: 13px;
  text-align: left;
  color: var(--dark);
  outline: none;
  caret-color: #333;
  position: relative;
  z-index: 2;
  width: 270px;
}
.lp-otp-single::placeholder { color: transparent; }
.lp-otp-single:focus { outline: none; }
.lp-otp-dashes {
  display: flex;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 270px;
}
.lp-otp-dash {
  width: 40px;
  height: 2px;
  flex-shrink: 0;
  position: relative;
}
.lp-otp-dash::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #ccc;
  transition: background .15s;
}
.lp-otp-dash.filled::after {
  background: #333;
}
.lp-popup *:focus { outline: none; }
.lp-popup *:focus-visible { outline: none; }

/* Calling animation */
.lp-calling {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 16px;
  text-align: center;
  animation: lpCallingFade .6s ease both;
  padding-bottom: 60px;
}
@keyframes lpCallingFade { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
.lp-call-icon-wrap { position: relative; width: 120px; height: 120px; margin-bottom: 24px; }
.lp-call-circle { position: absolute; inset: 0; border-radius: 50%; background: var(--gray-100); }
.lp-call-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 3px solid var(--green);
  opacity: 0;
  animation: lpCallRing 2s ease-out infinite;
}
.lp-call-ring2 { animation-delay: .6s; }
.lp-call-ring3 { animation-delay: 1.2s; }
.lp-call-phone { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.lp-call-phone i { font-size: 42px; color: var(--green); animation: lpCallShake 1.5s ease-in-out infinite; }
.lp-call-h { font-size: 22px; font-weight: 700; color: var(--dark); }
.lp-call-sub { font-size: 15px; color: var(--gray-500); line-height: 1.5; }
@keyframes lpCallRing { 0% { transform: scale(.8); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes lpCallShake {
  0%,100% { transform: rotate(0); }
  10% { transform: rotate(-8deg); }
  20% { transform: rotate(8deg); }
  30% { transform: rotate(-6deg); }
  40% { transform: rotate(4deg); }
  50%,100% { transform: rotate(0); }
}

/* Loading bar */
.lp-load {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  animation: lpCallingFade .6s ease both;
}
.lp-load-bar {
  height: 6px;
  background: var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  max-width: 340px;
  width: 100%;
  margin: 0 auto 20px;
}
.lp-load-fill { height: 100%; background: var(--green); border-radius: 6px; width: 0%; }
.lp-load-txt { font-size: 15px; font-weight: 600; color: var(--gray-500); }

/* Confirm step */
.lp-confirm { text-align: center; padding: 12px 0 8px; }
/* Visually matches the prior browser-default <h3> styling that was
   inside .lp-confirm. Swapped to <p class="lp-confirm-heading"> to
   stop polluting the rendered DOM heading hierarchy with hidden-modal
   H3 tags that Googlebot was picking up. Visual unchanged. */
.lp-confirm-heading {
  font-size: 1.17em;
  font-weight: 700;
  margin: 1em 0;
  line-height: 1.3;
}
.lp-confirm-ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.lp-confirm-ic i { font-size: 24px; color: var(--green); }
.lp-confirm .lp-confirm-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.lp-confirm p:not(.lp-confirm-title) { font-size: 13px; color: var(--gray-500); line-height: 1.5; margin-bottom: 0; }

/* Multi-quote items */
.lp-mq { text-align: left; margin-top: 12px; border-top: 1px solid var(--gray-200); padding-top: 12px; }
.lp-mq-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.lp-mq-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .2s;
}
.lp-mq-item.sel { border-color: var(--green); background: var(--green-light); }
.lp-mq-inf { flex: 1; }
.lp-mq-n { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.lp-mq-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.lp-mq-meta .lp-mq-star { color: var(--gold); }
.lp-mq-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}
.lp-mq-badge i { font-size: 11px; }
.lp-mq-c {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}
.lp-mq-item.sel .lp-mq-c { background: var(--green); border-color: var(--green); }
.lp-mq-item.sel .lp-mq-c::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 11px;
  color: #fff;
}
.lp-mq-counter { text-align: center; font-size: 14px; font-weight: 700; color: var(--dark); margin-top: 4px; }

/* Scrollable confirm/success */
.lp-confirm-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lp-confirm-scroll::-webkit-scrollbar { display: none; }
.lp-confirm-footer { flex-shrink: 0; background: #fff; padding-top: 8px; margin-top: auto; }
.lp-confirm-footer .lp-btn-row { margin-top: 0; padding: 12px 0 28px; }
.lp-confirm-footer .lp-btn-row { flex-direction: row !important; }
#ls-confirm.active { overflow: hidden !important; padding: 24px 44px 0; }
#ls-confirm .lp-confirm-scroll { padding-right: 2px; }
#ls-success.active { overflow: hidden !important; padding: 48px 44px 0; }
#ls-success .lp-confirm-scroll { padding-right: 2px; }

/* Call Intro Step */
.lp-intro-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 32px;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.lp-intro-logo-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  font-size: 36px;
  font-weight: 700;
  color: var(--nav-bg);
}
.lp-intro-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.35;
  margin-bottom: 12px;
}
.lp-intro-sub {
  font-size: 15px;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 44px;
  line-height: 1.5;
}

/* Cancel Confirmation Overlay */
.lp-cancel-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100%;
  background: #fff;
  z-index: 20;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 44px;
  border-radius: var(--radius);
  text-align: center;
}
.lp-cancel-overlay.open { display: flex; }
.lp-cancel-heading { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 36px; line-height: 1.35; }
.lp-cancel-btn {
  width: 100%;
  max-width: 400px;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lp-cancel-btn-gold { background: var(--green); color: #fff; }
.lp-cancel-btn-gold:hover { background: #0e9a66; }
.lp-cancel-btn-dark { background: #384454; color: #fff; }
.lp-cancel-btn-dark:hover { background: #2c3744; }
.lp-cancel-divider { font-size: 13px; color: var(--gray-500); margin: 8px 0 20px; }

/* Request a Call step */
.lp-rc-terms, .lp-rc-sms { margin-bottom: 8px; }
.lp-rc-terms a { color: var(--green); text-decoration: underline; }
.lp-rc-error { display: none; color: #dc3545; font-size: 13px; margin-top: 8px; margin-bottom: 4px; }

/* Company context in popup */
.lp-company {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: 10px;
  margin-bottom: 20px;
}
.lp-company img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.lp-co-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.lp-co-loc { font-size: 11px; color: var(--gray-500); }

/* Owner checkbox */
.lp-owner { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; cursor: pointer; }
.lp-owner input { display: none; }
.lp-owner-sq {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.lp-owner input:checked + .lp-owner-sq { background: var(--green); border-color: var(--green); }
.lp-owner input:checked + .lp-owner-sq::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 11px;
  color: #fff;
}
.lp-owner span:last-child { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.lp-owner-br { display: none; }
.lp-address-spacer { flex: 1; min-height: 16px; }

/* Secure badge */
.lp-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  margin-bottom: 6px;
  position: relative;
  cursor: default;
  justify-content: center;
}
.lp-secure i { font-size: 14px; color: var(--green); }
.lp-secure span { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.lp-secure-tip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-50);
  color: var(--gray-600);
  font-size: 12px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  z-index: 5;
  font-weight: 400;
  border: 1px solid var(--gray-200);
}
.lp-secure-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--gray-50);
}
.lp-secure:hover .lp-secure-tip { display: block; }

/* Service-wise question cards inside popup */
.svcq-card { margin-bottom: 8px; }
.svcq-image {
  text-align: center;
  margin-bottom: 16px;
}
.svcq-image img {
  max-height: 200px;
  border-radius: 8px;
  display: inline-block;
}

/* Payment option details */
.lp-pay-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.lp-pay-details {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  background: var(--gray-50);
  padding: 12px;
  border-radius: 8px;
  margin-top: 6px;
}

/* Select inside popup */
.lp-select {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.lp-select:focus { outline: none; border-color: var(--green); }

/* Income note */
.lp-income-note { font-size: 13px; text-align: left; margin-top: 12px; }

/* Step error message */
.lp-step-error {
  text-align: center;
  color: #e53935;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
}

/* Email validation states */
.lp-fd-valid input { border-color: var(--green) !important; }
.lp-fd-invalid input { border-color: #e53935 !important; }
.lp-fd-checking input { border-color: var(--gold) !important; }

/* Inline field error — shown below phone/email when validation fails on
   blur. Hidden by default (no text in the span). The wizard JS sets the
   error text on blur and clears it on input. */
.lp-fd-err {
  display: block;
  color: #d32f2f;
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 6px;
  min-height: 0;
  line-height: 1.35;
}
.lp-fd-err:empty { display: none; }
.lp-fd.lp-fd-invalid input { border-color: #e53935; }

/* OTP-specific inline error — sits below the dash grid (since OTP doesn't
   use .lp-fd as a wrapper). Centered and width-locked so a longer error
   message doesn't break out of the OTP grid's visual lane. */
.lp-fd-err-otp {
  display: block;
  text-align: center;
  margin: 10px auto 0;
  max-width: 320px;
}
.lp-otp-wrap.lp-otp-wrap-invalid .lp-otp-dash::after {
  background: #e53935;
}
.lp-otp-wrap.lp-otp-wrap-invalid .lp-otp-single {
  color: #b71c1c;
}

/* 6-cell OTP — popup wizard's verification step. Each digit lives in
   its own bordered cell so there's no letter-spacing alignment math
   that can drift across browser font rendering. Replaces the older
   .lp-otp-single + .lp-otp-dashes overlay pattern that was producing
   visible-but-off alignment. JS in wizard-manager.js handles auto-
   advance, backspace navigation, paste-fill, and a hidden #wizardOtpField
   mirror so existing verify-code logic keeps working unchanged. */
.lp-otp-cells {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 4px;
}
.lp-otp-cell {
  width: 40px;
  height: 48px;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Courier New', Courier, monospace;
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--gray-300);
  border-radius: 0;
  color: var(--dark);
  outline: none;
  caret-color: var(--green);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.lp-otp-cell::-webkit-outer-spin-button,
.lp-otp-cell::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.lp-otp-cell:focus {
  border-bottom-color: var(--green);
  outline: none;
  box-shadow: none;
}
.lp-otp-cell.filled {
  border-bottom-color: var(--dark);
}
.lp-otp-cells.lp-otp-cells-invalid .lp-otp-cell {
  border-bottom-color: #e53935;
  color: #b71c1c;
}
.lp-email-error {
  font-size: 12px;
  color: #e53935;
  margin-top: 4px;
  line-height: 1.4;
}

/* ===================================================================
   SUCCESS PAGE (inside popup)
   =================================================================== */
.sp-wrap { text-align: center; }
.sp-heading { font-size: 28px; font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 28px; }
.sp-section-title { font-size: 16px; font-weight: 700; color: var(--dark); text-align: left; margin-bottom: 16px; }
.sp-search {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 6px 6px 6px 18px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.sp-search > input {
  flex: 1;
  border: none;
  padding: 10px 0;
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  background: transparent;
  min-width: 0;
}
.sp-search > input::placeholder { color: var(--gray-400); }
.sp-search .sp-zip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-left: 1.5px solid var(--gray-200);
  color: var(--gray-500);
  font-size: 13px;
  flex-shrink: 0;
  white-space: nowrap;
}
.sp-search .sp-zip i { font-size: 12px; color: var(--gray-400); }
.sp-search .sp-zip input {
  padding: 10px 0;
  width: 54px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  background: transparent;
}
.sp-search-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.sp-search-btn:hover { background: var(--gold-hover); }
.sp-search-wrap { position: relative; }
.sp-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 20;
  max-height: 410px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 0;
}
.sp-dropdown::-webkit-scrollbar { width: 6px; }
.sp-dropdown::-webkit-scrollbar-track { background: transparent; }
.sp-dropdown::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.sp-dropdown-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-500);
  padding: 8px 20px 4px;
  margin: 0;
  text-align: left;
}
.sp-dropdown-group {
  border-top: 1px solid var(--gray-200);
}
.sp-dropdown-group:first-of-type {
  border-top: none;
}
.sp-dropdown-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.sp-dropdown-group-header:hover { color: var(--gold); }
.sp-dropdown-chevron {
  font-size: 11px;
  color: var(--gray-500);
  transition: transform .2s;
}
.sp-dropdown-group.expanded .sp-dropdown-chevron {
  transform: rotate(180deg);
}
.sp-dropdown-group-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.sp-dropdown-group.expanded .sp-dropdown-group-body {
  max-height: 2000px;
}
.sp-dropdown-item {
  padding: 9px 20px 9px 32px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
  transition: background .15s;
  text-align: left;
}
.sp-dropdown-item:hover {
  background: var(--gray-100);
  color: var(--dark);
}
.sp-dropdown-item.d-none { display: none; }
.sp-dropdown-popular { border-top: 1px solid var(--gray-200); padding-bottom: 8px; }
.sp-dropdown-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.sp-dropdown-popular-list li {
  padding: 9px 20px;
  font-size: 14px;
  color: var(--gray-800);
  cursor: pointer;
  transition: background .15s;
}
.sp-dropdown-popular-list li:hover {
  background: var(--gray-100);
}
.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.sp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  cursor: pointer;
  transition: background .15s;
  text-align: left;
  text-decoration: none;
}
.sp-card:nth-child(even) { border-right: none; }
.sp-card:nth-last-child(-n+2) { border-bottom: none; }
.sp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-card-icon i { font-size: 20px; color: var(--gold); }
.sp-card-info { flex: 1; }
.sp-card-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.sp-card-meta { font-size: 12px; color: var(--gray-500); }
.sp-card-meta .sp-star { color: var(--gold); }

/* ===================================================================
   NEAR ME PAGE
   =================================================================== */

/* Hero banner */
.nearme-hero {
  background-color: rgba(30, 40, 55, 1);
  background-size: cover;
  background-position: center;
  padding: 80px 0 90px;
  position: relative;
}

.nearme-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 55, .72);
  z-index: 1;
}

.nearme-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.nearme-hero-content {
  max-width: 640px;
}

.nearme-hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.nearme-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Hero search form */
.nearme-hero-form {
  position: relative;
}

.nearme-hero-form-row {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  height: 56px;
  position: relative;
}

.nearme-hero-search-wrap {
  flex: 1;
  position: relative;
  min-width: 0;
}

.nearme-hero-service {
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 20px;
  font-size: 15px;
  background: transparent;
  color: #333;
  font-family: var(--font-family);
  border-radius: 10px 0 0 10px;
}

.nearme-hero-service::placeholder {
  color: #888;
}

.nearme-hero-zip-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-left: 1px solid #eee;
  background: #fff;
}

.nearme-hero-zip-wrap i {
  padding-left: 12px;
  color: #999;
  font-size: 14px;
}

.nearme-hero-zip {
  border: none;
  width: 70px;
  font-size: 15px;
  text-align: center;
  background: transparent;
  color: #333;
  font-family: var(--font-family);
  font-weight: 600;
}

.nearme-hero-zip::placeholder {
  color: #bbb;
}

.nearme-hero-go {
  background: var(--gold);
  color: #fff;
  padding: 0 24px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font-family);
  border-radius: 0 10px 10px 0;
}

.nearme-hero-go span {
  display: inline;
}

.nearme-hero-go:hover {
  background: var(--gold-hover);
}

/* Remove bottom radius when dropdown is open */
.nearme-hero-form-row.search-open {
  border-radius: 10px 10px 0 0;
}

.nearme-hero-form-row.search-open .nearme-hero-service {
  border-radius: 10px 0 0 0;
}

.nearme-hero-form-row.search-open .nearme-hero-go {
  border-radius: 0 10px 0 0;
}

/* Search dropdown inside nearme hero — reuses .search-dropdown styles */
.nearme-hero-form-row .search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-radius: 0 0 10px 10px;
}

.nearme-hero-form .error-text {
  font-size: 13px;
  color: #fff;
  background: rgba(220, 53, 69, .85);
  padding: 6px 14px;
  border-radius: 6px;
  margin-top: 10px;
}

/* Trending suggestions */
.nearme-hero-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  align-items: center;
}

.nearme-hero-suggestions a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  transition: all .2s;
}

.nearme-hero-suggestions a:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.nearme-hero-suggestions-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  margin-right: 4px;
  white-space: nowrap;
}

/* Categories section */
.nearme-categories {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.nearme-cat-panel {
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.nearme-cat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: #fff;
  transition: background .2s;
  user-select: none;
}

.nearme-cat-panel-header:hover {
  background: #fafafa;
}

.nearme-cat-panel-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.nearme-cat-panel-header i {
  font-size: 14px;
  color: #888;
  transition: transform .3s;
}

.nearme-cat-panel.open .nearme-cat-panel-header i {
  transform: rotate(180deg);
}

.nearme-cat-panel-body {
  padding: 0 24px 24px;
  display: none;
}

.nearme-cat-panel.open .nearme-cat-panel-body {
  display: block;
}

.nearme-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
}

.nearme-cat-grid ul li {
  padding: 7px 0;
}

.nearme-cat-grid ul li a {
  font-size: 15px;
  color: #555;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nearme-cat-grid ul li a:hover {
  color: var(--gold);
}

.nearme-cat-grid ul li a i {
  font-size: 10px;
  color: #ddd;
  transition: color .15s;
}

.nearme-cat-grid ul li a:hover i {
  color: var(--gold);
}

/* Three-column list (mobile search modal) */
.three-column-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.three-column-list li {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background .15s;
}

.three-column-list li:hover {
  background: var(--gray-bg);
}

/* ===================================================================
   STATE CITIES PAGE
   =================================================================== */
.state-cities-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.state-cities-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.state-cities-box {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 28px 32px;
}

.state-cities-subheading {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.state-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.state-cities-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.state-cities-column li {
  margin-bottom: 6px;
}

.state-cities-column li a {
  display: block;
  padding: 7px 12px;
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s, color .2s, transform .2s;
}

.state-cities-column li a:hover {
  background: var(--gray-bg);
  color: var(--gold);
  transform: translateX(4px);
}

/* ===================================================================
   NEAR ME — PROS SECTION
   =================================================================== */
.pros-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 20px;
}

.pros-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}

.pros-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.pros-count {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

/* Pro Card */
.pro-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: box-shadow .2s;
}

.pro-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.pro-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.pro-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gray-border);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-bg);
}

.pro-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro-info {
  flex: 1;
  min-width: 0;
}

.pro-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.pro-name a {
  color: var(--dark);
}

.pro-name a:hover {
  color: var(--gold);
}

.pro-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #767678;
}

.pro-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: -1px;
}

.pro-quote-btn {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  font-family: var(--font-family);
}

.pro-quote-btn:hover {
  background: #0e9a66;
}

.pro-quote-btn i {
  font-size: 11px;
}

.pro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #fafafa;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #767678;
}

.pro-badge i {
  font-size: 10px;
}

.pro-badge.green {
  background: #e6f9f1;
  border-color: #b8edd8;
  color: #0a7a50;
}

.pro-desc {
  font-size: 13px;
  color: #767678;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pro-quote-mobile {
  display: none;
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background .2s;
  font-family: var(--font-family);
}

.pro-quote-mobile:hover {
  background: #0e9a66;
}

/* ===================================================================
   NEAR ME — PAGINATION
   =================================================================== */
.pagination-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0 40px;
  gap: 6px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  background: #fff;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.page-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-btn:focus {
  box-shadow: 0 0 0 3px rgba(232, 178, 55, .3);
  border-color: var(--gold);
  outline: none;
}

.page-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.page-btn.disabled {
  opacity: .4;
  cursor: default;
  pointer-events: none;
}

.page-btn.ellipsis {
  border: none;
  background: none;
  cursor: default;
}

/* ===================================================================
   NEAR ME — STATES ACCORDION
   =================================================================== */
.states-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 40px;
}

.cat-panel {
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: #fff;
  transition: background .2s;
  user-select: none;
}

.cat-panel-header:hover {
  background: #fafafa;
}

.cat-panel-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.cat-panel-header i {
  font-size: 14px;
  color: #888;
  transition: transform .3s;
}

.cat-panel.open .cat-panel-header i {
  transform: rotate(180deg);
}

.cat-panel-body {
  padding: 0 24px 24px;
  display: none;
}

.cat-panel.open .cat-panel-body {
  display: block;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
}

.cat-grid ul li {
  padding: 7px 0;
}

.cat-grid ul li a {
  font-size: 13.5px;
  color: #555;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-grid ul li a:hover {
  color: var(--gold);
}

.cat-grid ul li a i {
  font-size: 10px;
  color: #ddd;
  transition: color .15s;
}

.cat-grid ul li a:hover i {
  color: var(--gold);
}

/* ===================================================================
   NEAR ME — TOP CITIES BAR
   =================================================================== */
.top-cities-bar {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.top-cities-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.top-cities-inner::-webkit-scrollbar {
  display: none;
}

.top-cities-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.top-cities-inner a {
  font-size: 12px;
  color: #767678;
  white-space: nowrap;
  padding: 5px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: all .2s;
  flex-shrink: 0;
}

.top-cities-inner a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===================================================================
   STEP REQUEST MODAL (shared component from old design)
   =================================================================== */

/* Common button (used across modals) */
.common_btn {
  background: var(--colorPrimary);
  color: var(--colorWhite);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 40px;
  border-radius: 8px;
  text-align: center;
  transition: all linear .3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.common_btn:hover {
  background: #e29d18;
}

/* Modal header */
.get_quote_modal .modal-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: rgb(149 157 165 / 12%) 0 8px 24px;
  border: none;
  padding: 25px;
}

.get_quote_modal .modal-header .header_logo {
  width: 140px;
}

.get_quote_modal .modal-header p {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.get_quote_modal .modal-content {
  min-height: 100%;
  background: #fff;
}

/* Modal body */
.get_quote_modal .modal-body {
  padding: 0 40px 40px 40px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}


.get_quote_modal .modal-body p {
  font-size: 12px;
  color: #777777;
}

.get_quote_modal .modal-body p a {
  color: var(--colorPrimary);
}

/* Form labels & inputs */
.get_quote_modal form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 5px;
}

.get_quote_modal form .get_quote_input {
  position: relative;
}

.get_quote_modal form .get_quote_input input {
  border-radius: 10px;
  border-color: #b2bcca85;
}

.get_quote_modal form .get_quote_input span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.get_quote_modal form .get_quote_input button {
  width: 100%;
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 20px;
}

.get_quote_modal form .get_quote_input button i {
  margin-left: 5px;
}

/* Form submit area */
.gate_quote_submit_form .common_btn {
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 10px;
}

.gate_quote_submit_form a.common_btn {
  background: none;
  color: var(--colorBlack);
  font-weight: 600;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gate_quote_submit_form a.common_btn:hover {
  color: var(--colorPrimary);
}

.gate_quote_submit_form .common_btn i {
  margin-right: 5px;
}

/* Top section */
.gate_quote_submit_form .top {
  margin-top: 40px;
}

.gate_quote_submit_form .top .get_quote_title {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin-bottom: 5px;
}

.gate_quote_submit_form .top p {
  font-weight: 400;
  font-size: 22px;
  text-align: center;
}

/* Section titles */
.gate_quote_submit_form .interest .interest_title,
.gate_quote_submit_form .additional .additional_title,
.gate_quote_submit_form .location .location_title,
.gate_quote_submit_form .budget .budget_title,
.gate_quote_submit_form .stage .stage_title,
.gate_quote_submit_form .get_in_touch .get_in_touch_title,
.gate_quote_submit_form .get_in_touch_title {
  font-weight: 500;
  font-size: 20px;
  padding-bottom: 10px;
}

.gate_quote_submit_form .get_in_touch_title {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgb(239, 239, 239);
}

/* Form content / form actions */
.gate_quote_submit_form .form_content {
  min-height: 500px;
  position: relative;
}

.gate_quote_submit_form .form_content .form_actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 24px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.gate_quote_submit_form .form_content .form_actions .get_quote_input textarea {
  border-radius: 8px;
}

.form_actions .common_btn {
  min-width: 140px;
}

/* Close / confirm modal */
#closeModal .form_content,
#serviceCloseModal .form_content {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
}

#closeModal .form_content .form_actions,
#closeModal .form_content .text-center,
#serviceCloseModal .form_content .form_actions,
#serviceCloseModal .form_content .text-center {
  width: 100% !important;
}

/* Previous button — wizard Back. Earlier had border:none which made
   the button look like plain text on white. Match the lp-btn-o styling
   so it reads as an outlined button consistent with the rest of the
   wizard chrome. */
.gate_quote_submit_form .btn_prev {
  color: #4A5B74;
  background: #fff;
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid #c5cdd9;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.gate_quote_submit_form .btn_prev:hover {
  background: #fafafa;
  border-color: #9aa5b6;
  color: #0D1B2A;
}

/* Next button & action buttons */
.gate_quote_submit_form .form_content .form_actions .btn_next,
.gate_quote_submit_form .form_actions .common_btn,
#closeModal .btn_next,
#closeModal .btn_prev,
#serviceCloseModal .btn_next,
#serviceCloseModal .btn_prev {
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  gap: 8px;
  width: 350px;
  height: 56px;
  font-size: 18px;
  font-weight: 600;
  margin: auto;
}

#closeModal .btn_next,
#closeModal .btn_prev,
#serviceCloseModal .btn_next,
#serviceCloseModal .btn_prev {
  width: 100%;
  margin-bottom: 10px;
}

#closeModal .btn_prev,
#serviceCloseModal .btn_prev {
  background: none;
  color: var(--colorGray);
}

#closeModal .btn_prev:hover,
#serviceCloseModal .btn_prev:hover {
  background: var(--colorGray);
  color: var(--colorWhite);
}

.financing-disclaimer {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
  margin-top: 4px;
  margin-bottom: 0;
  text-align: center;
}

#step7a .form_actions,
#servicePaymentMethod .form_actions {
  position: static;
  transform: none;
  margin-top: 24px;
}

#serviceCloseModal .form_content .form_actions {
  width: 60%;
}

#serviceCloseModal .common_btn {
  transition: none;
  pointer-events: auto;
  width: 100%;
  height: 56px;
  padding: 10px 24px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#serviceCloseModal .common_btn:hover {
  background: unset;
  color: unset;
  border: unset;
}

#serviceCloseModal .common_btn.continue_service_request,
#serviceCloseModal .common_btn.continue_service_request:hover {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

#serviceCloseModal .common_btn.common_btn_2.cancel_service_request,
#serviceCloseModal .common_btn.common_btn_2.cancel_service_request:hover {
  background: var(--colorGray);
  color: var(--colorWhite);
  border: none;
}

/* Progress bar */
#stepJobModal .progress-bar {
  background-color: var(--colorPrimary);
  height: 7px;
  width: 0%;
}

/* Brand logo */
.gate_quote_submit_form .modal_brand_logo {
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  border: 3px solid #f5f5f5;
}

.gate_quote_submit_form .modal_brand_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform: translateZ(0);
}

.modal_brand_logo {
  max-width: 200px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.modal_brand_logo:hover {
  transform: scale(1.05);
}

/* Sections with borders */
.gate_quote_submit_form .interest,
.gate_quote_submit_form .additional,
.gate_quote_submit_form .budget,
.gate_quote_submit_form .get_in_touch {
  border-top: 1px solid #EFEFEF;
  padding-top: 25px;
  margin-top: 25px;
}

.gate_quote_submit_form .interest {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gate_quote_submit_form .interest input {
  border-radius: 10px;
  text-align: center;
  width: 48.5%;
  transition: all linear .3s;
}

.gate_quote_submit_form .interest input:hover,
.gate_quote_submit_form .interest input.active {
  background: var(--colorPrimary);
  color: var(--colorWhite);
}

.gate_quote_submit_form .additional p {
  margin-bottom: 15px;
  margin-top: 5px;
}

.gate_quote_submit_form .location {
  margin-top: 20px;
}

.gate_quote_submit_form .additional textarea {
  border-radius: 10px;
}

/* Global input/textarea styles inside modal (exclude radio/checkbox/hidden/code-input) */
.get_quote_modal input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not(.code-input),
.get_quote_modal textarea,
.gate_quote_submit_form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):not(.code-input),
.gate_quote_submit_form textarea {
  width: 100%;
  padding: 12px 20px;
  outline: none;
  resize: none;
  border: 1px solid #E4E7E9;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
}

.get_quote_modal input::placeholder,
.get_quote_modal textarea::placeholder,
.gate_quote_submit_form input::placeholder,
.gate_quote_submit_form textarea::placeholder {
  color: #a6a6ac;
}

/* Interest input area */
.gate_quote_submit_form .interest_input_area,
.gate_quote_submit_form .location_check_area,
.gate_quote_submit_form .radio_check_area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.gate_quote_submit_form .location_check_area,
.gate_quote_submit_form .radio_check_area {
  display: block;
}

.gate_quote_submit_form .interest_input_area {
  width: 100%;
}

.gate_quote_submit_form .interest_input_area input {
  cursor: pointer;
}

/* Checkbox / radio form checks */
.gate_quote_submit_form .location_check_area .form-check,
.gate_quote_submit_form .radio_check_area .form-check {
  margin: 0;
  margin-left: 15px !important;
  padding: 5px 20px;
  border: 1px solid #E4E7E9;
  border-top: none;
}

.gate_quote_submit_form .location_check_area .form-check:first-child,
.gate_quote_submit_form .radio_check_area .form-check:first-child {
  border-top: 1px solid #E4E7E9;
}

.gate_quote_submit_form .location_check_area .form-check label,
.gate_quote_submit_form .radio_check_area .form-check label {
  padding: 10px 20px;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gate_quote_submit_form .location_check_area .form-check input {
  padding: 0;
  border-radius: 4px;
  box-shadow: none !important;
}

.gate_quote_submit_form .location_check_area .form-check input:checked[type=checkbox] {
  background-color: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

.gate_quote_submit_form .radio_check_area .form-check-input[type="radio"] {
  border-radius: 50%;
}

/* Budget section */
.gate_quote_submit_form .budget {
  padding-bottom: 67px;
}

.gate_quote_submit_form .budget h4 {
  margin-bottom: 13px;
}

.gate_quote_submit_form .budget .nice-select {
  border-radius: 10px;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
}

.gate_quote_submit_form .budget .nice-select:after {
  border-bottom: 2px solid var(--colorBlack);
  border-right: 2px solid var(--colorBlack);
  height: 7px;
  right: 25px;
  width: 7px;
}

/* Stage radios */
.gate_quote_submit_form .stage input:checked {
  border-color: var(--colorPrimary);
}

.gate_quote_submit_form .stage input:checked[type=radio] {
  background-color: var(--colorPrimary);
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  background-size: initial;
}

.gate_quote_submit_form .stage input:checked[type=radio]:focus {
  border-color: var(--colorPrimary);
  box-shadow: 0 0 0 0.25rem rgba(248, 176, 44, 0.25);
}

.gate_quote_submit_form .get_quote_input .common_btn {
  margin-bottom: 0;
}

.form-check-input:checked {
  background-color: var(--colorPrimary) !important;
  border-color: var(--colorPrimary) !important;
}

.form-check-input:focus {
  border-color: var(--colorPrimary) !important;
  box-shadow: 0 0 0 0.25rem rgba(245, 176, 44, 0.25) !important;
}

/* Selectgroup items (service selection) */
.interest_input_area .selectgroup-item {
  margin: 0;
  display: inline-block;
  position: relative;
  width: 48.5%;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all linear .3s;
}

.interest_input_area .selectgroup-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.gate_quote_submit_form .interest .selectgroup-button {
  width: 100%;
  padding: 12px 20px;
  outline: none;
  resize: none;
  border: 1px solid #E4E7E9;
  font-size: 16px;
  font-weight: 400;
  display: block;
  border-radius: 10px;
}

.gate_quote_submit_form .interest .selectgroup-button:hover,
.gate_quote_submit_form .interest .selectgroup-input:checked+.selectgroup-button {
  background: var(--colorPrimary);
  color: var(--colorWhite);
  z-index: 1;
}

/* Fade animations */
.fade-in {
  animation: stepFadeIn 0.4s ease-in forwards;
}

.fade-out {
  animation: stepFadeOut 0.4s ease-out forwards;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes stepFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(10px); }
}

/* Btn close */
.btn-close {
  box-shadow: none !important;
}

.btn-close:focus {
  box-shadow: none !important;
}

/* ===================================================================
   STEP MODAL — VERIFICATION & CODE INPUT
   =================================================================== */
.verification_card .form_content {
  text-align: center;
}

.verification_card .form_heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222222 !important;
}

.verification-subtext {
  color: #777;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.verification-subtext span.line_break {
  display: block;
}

.phone-number {
  font-weight: 600;
  color: #222222;
  font-size: 16px;
}

.change-link {
  color: #999999;
  text-decoration: underline;
  font-size: 16px;
  margin-left: 0.5rem;
}

.resend-text {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  color: #555;
  font-size: 15px;
}

.resend-link {
  color: var(--colorPrimary);
  text-decoration: underline;
  font-size: 15px;
}

.code-inputs-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.code-input {
  width: 100%;
  max-width: 280px;
  height: 64px;
  padding: 0 0 0 16px !important;
  text-align: center;
  font-size: 1.75rem !important;
  font-weight: 700;
  letter-spacing: 16px;
  color: #343a40;
  border: 2px solid #9ca3af;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
  box-shadow: none;
}

.code-input::placeholder { color: #9ca3af; font-size: 1.75rem; letter-spacing: 16px; }

.code-input:focus {
  border-color: var(--colorPrimary);
}

.verify-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--colorPrimary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
  cursor: pointer;
}

.verify-btn:hover {
  background-color: #e29d18;
}

/* Floating labels for modal inputs */
.light-input {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding-top: 1.125rem !important;
  padding-bottom: 0.75rem !important;
  height: auto !important;
  line-height: 1.25;
  box-shadow: none !important;
  transition: border-color 0.2s ease-in-out;
}

.light-input:focus {
  border-color: #adb5bd !important;
}

.light-label {
  color: #999999 !important;
  transition: all 0.2s ease-in-out;
  background-color: transparent !important;
  padding-left: 0.75rem !important;
}

.light-input:focus~.light-label,
.light-input:not(:placeholder-shown)~.light-label {
  transform: scale(0.9) translateY(-1.75rem) translateX(-0.5rem) !important;
  background-color: white !important;
  padding: 0 0.5rem !important;
  color: #495057 !important;
}

/* Required field indicator */
.required-field::after {
  content: " *";
  color: #dc3545;
  font-weight: bold;
}

/* Asking info text */
.asking_info_text {
  margin-top: 30px;
  width: 100%;
  max-width: 75%;
  background: #FDFBF8;
  padding: 25px;
  border-radius: 16px;
  margin-left: auto;
  display: none;
}

.asking_info_text p {
  font-size: 18px;
  margin: 0;
}

/* Scrollable service list in step modal */
.form_card #step3 .col-12 {
  scrollbar-width: thin;
  scrollbar-color: var(--colorPrimary) #f1f1f1;
}

.form_card #step3 .col-12::-webkit-scrollbar {
  width: 8px;
}

.form_card #step3 .col-12::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.form_card #step3 .col-12::-webkit-scrollbar-thumb {
  background: var(--colorPrimary);
  border-radius: 4px;
}

.form_card #step3 .col-12::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Step indicator */
.step-indicator {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.step-indicator .current-step {
  color: var(--colorPrimary);
  font-weight: 700;
}

/* Close modal heading */
#closeModal .progress-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

/* Other input field */
.other-input {
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.other-input:focus {
  outline: none;
  border-color: var(--colorPrimary);
}

/* Focus states for modal inputs */
.get_quote_input input:focus,
.get_quote_input select:focus,
.get_quote_input textarea:focus {
  outline: none;
  border-color: var(--colorPrimary);
  box-shadow: none;
  transition: all 0.3s ease;
}

/* Validation states */
.get_quote_input input.is-invalid,
.get_quote_input select.is-invalid,
.get_quote_input textarea.is-invalid {
  border-color: #dc3545 !important;
  background-color: #fff5f5;
}

.get_quote_input input.is-valid,
.get_quote_input select.is-valid,
.get_quote_input textarea.is-valid {
  border-color: #28a745 !important;
}

/* Checkbox/radio validation */
.location_check_area.has-error .form-check-label,
.radio_check_area.has-error .form-check-label {
  color: #dc3545;
}

/* Google Places autocomplete dropdown */
.pac-container {
  z-index: 99999 !important;
  background-color: #fff !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.pac-item {
  padding: 10px 12px;
  cursor: pointer;
  border-top: 1px solid #e6e6e6;
  transition: background-color 0.2s ease;
}

.pac-item:hover {
  background-color: #f5f5f5;
}

.pac-item:first-child {
  border-top: none;
}

.pac-icon {
  margin-right: 10px;
}

/* ==================================================================
   COMPANY PAGE
   ================================================================== */

/* Page Layout */
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

/* Gallery */
.gallery {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
  aspect-ratio: 16/9.5;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--nav-bg);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Gallery Thumbnails */
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.page-wrap > * {
  min-width: 0;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--gray-100);
  opacity: .6;
  transition: all .2s;
}

.gallery-thumb:hover {
  opacity: .9;
}

.gallery-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Company Header */
.company-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.company-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-initials {
  font-size: 24px;
  font-weight: 700;
  color: var(--nav-bg);
  letter-spacing: 1px;
}

.company-info {
  flex: 1;
}

.company-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 4px;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 176, 118, .2);
  display: inline-block;
}

.company-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 6px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: var(--gray-700);
}

.meta-item i {
  font-size: 14px;
  color: var(--gray-500);
}

.meta-service {
  margin-top: 4px;
}

.star-rating {
  color: var(--gold);
  letter-spacing: -1px;
  font-size: 16px;
}

.rating-num {
  font-weight: 700;
  color: var(--dark);
}

.rating-count {
  color: var(--gray-500);
}

.dot-sep {
  width: 4px;
  height: 4px;
  background: var(--gray-400);
  border-radius: 50%;
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-light);
  color: var(--green);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.verified-tag i {
  font-size: 12px;
}

/* Tabs */
.tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
}

.tab-btn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}

.tab-btn:hover {
  color: var(--gray-800);
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel {
  display: block;
}

.section-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 18px;
  padding-top: 12px;
}

.tab-panel:first-of-type .section-heading {
  margin-top: 0;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 36px 0 0;
}

/* CTA Strip */
.cta-strip {
  background: var(--nav-bg);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-strip-text {
  flex: 1;
}

.cta-strip-text h4,
.cta-strip-text h2.cta-strip-title,
.cta-strip-text .cta-heading {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px 0;
  line-height: 1.3;
}

.cta-strip-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 0;
}

.cta-strip-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cta-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.cta-btn-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}

.cta-btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.cta-btn-green {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}

.cta-btn-green:hover {
  background: #0e9a66;
  border-color: #0e9a66;
}

.cta-btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .3);
}

.cta-btn-outline-white:hover {
  border-color: #fff;
}

/* About */
.about-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.service-pill {
  padding: 8px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  transition: all .15s;
}

.service-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.areas-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}

.areas-text a {
  color: var(--gold);
  font-weight: 600;
}

.areas-text a:hover {
  text-decoration: underline;
}

/* When .areas-text is a <ul>, strip browser defaults so it renders as a
   plain inline comma-separated list (visually identical to the prior
   <div>-based markup). Commas are added via ::after pseudo-element so
   they're invisible to screen readers (which see a clean list). */
ul.areas-text {
  list-style: none;
  padding: 0;
  margin-top: 0;
}

ul.areas-text li {
  display: inline;
}

ul.areas-text li:not(:last-child)::after {
  content: ", ";
}

.company-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  transition: all .15s;
}

.social-link i {
  font-size: 15px;
}

.social-link:hover {
  border-color: var(--nav-bg);
  color: var(--nav-bg);
  background: var(--gray-50);
}

.inline-disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.7;
}

.inline-disclaimer strong {
  color: var(--gray-600);
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.projects-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proj-card {
  cursor: pointer;
  transition: transform .2s;
}

.proj-card:hover {
  transform: translateY(-3px);
}

.proj-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.proj-card:hover .proj-img img {
  transform: scale(1.04);
}

.proj-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.proj-count i {
  font-size: 11px;
}

.proj-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin: 8px 0 0 0;
  line-height: 1.3;
}

.proj-location {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.load-more-wrap {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 8px;
}

.btn-load-more {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}

.btn-load-more:hover {
  background: var(--gold-hover);
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all .25s;
  background: #fff;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.project-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.project-card:hover .project-card-img img {
  transform: scale(1.04);
}

.project-card-body {
  padding: 14px 16px;
}

.project-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

/* Reviews */
.review-overview {
  padding: 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.review-subtitle {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.5;
}

.review-subtitle strong {
  color: var(--dark);
}

.review-top-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 16px;
}

.review-score-block {
  min-width: 140px;
}

.review-score-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2px;
}

.review-big-stars {
  color: var(--gold);
  font-size: 18px;
  margin-top: 4px;
}

.review-big-count {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

.review-bars {
  flex: 1;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  font-size: 13px;
  color: var(--gray-600);
}

.bar-row span:first-child {
  min-width: 12px;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
}

.bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}

.bar-row span:last-child {
  min-width: 12px;
}

.review-guidelines {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

.review-guidelines a {
  color: var(--green);
  font-weight: 600;
}

.review-guidelines a:hover {
  text-decoration: underline;
}

/* Review cards */
.review-card {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

.review-card:last-child {
  border-bottom: none;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-card-meta {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}

.review-date {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
  display: inline-block;
}

.review-hidden {
  display: none;
}

/* Review image thumbnails — replaces previous inline styles */
.review-images {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.review-image-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

/* Review Pager */
.review-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
}

.review-pager-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: var(--gray-700);
  cursor: pointer;
  transition: all .2s;
}

.review-pager-btn:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.review-pager-btn.disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-author-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: -1px;
}

.review-author-badge {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

.review-card-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 10px;
}

.review-details {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
}

.review-details strong {
  color: var(--gray-700);
}

.review-service-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
}

/* Review Guidelines Modal */
.review-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.review-modal-overlay.open {
  display: flex;
}

.review-modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 540px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
  animation: modalIn .25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: 50%;
  transition: all .2s;
  background: none;
  border: none;
}

.review-modal-close:hover {
  background: var(--gray-100);
  color: var(--dark);
}

.review-modal-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  position: relative;
}

.review-modal-icon .rm-card {
  width: 64px;
  height: 48px;
  background: #E8F4FD;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-modal-icon .rm-card span {
  display: block;
  width: 32px;
  height: 4px;
  background: #90CAF9;
  border-radius: 2px;
  margin: 3px 0;
}

.review-modal-icon .rm-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  bottom: 4px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-modal-icon .rm-badge i {
  color: #fff;
  font-size: 14px;
}

.review-modal-icon .rm-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  bottom: 0;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-modal-icon .rm-check i {
  color: #fff;
  font-size: 14px;
}

.review-modal h3,
.review-modal .cta-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.review-modal p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 18px;
}

.review-modal ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.review-modal ul li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
}

.review-modal .rm-footer {
  font-size: 13px;
  color: var(--gray-500);
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  line-height: 1.6;
}

/* Contact section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 28px;
}

/* When .contact-grid is a <dl>, neutralize browser defaults so the visual
   stays pixel-identical to the prior <div>-based markup:
   - <dl> default has 1em margin-block; we already set margin-bottom but
     need to zero margin-top.
   - <dt> default is fine (display:block, no margin) — .contact-label CSS
     already sets the visual look.
   - <dd> default has margin-inline-start: 40px which would visibly indent
     every value — MUST override to 0. */
dl.contact-grid {
  margin-top: 0;
}

dl.contact-grid dd {
  margin: 0;
}

.contact-full {
  grid-column: span 2;
}

.contact-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-value a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-value a:hover {
  color: var(--gold);
}

.contact-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.contact-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: 15px;
  transition: all .15s;
}

.contact-social-icons a:hover {
  border-color: var(--nav-bg);
  color: var(--nav-bg);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.faq-q i {
  font-size: 12px;
  color: var(--gray-400);
  transition: transform .2s;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  padding: 0 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-a > div {
  overflow: hidden;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  padding-bottom: 16px;
}

/* ==================================================================
   SIDEBAR
   ================================================================== */
.sidebar {
  position: sticky;
  top: 58px;
  align-self: start;
  z-index: 10;
}

.lead-card {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  isolation: isolate;
}

.lead-card-header {
  background: var(--nav-bg);
  padding: 22px 24px;
  text-align: center;
}

.lead-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.lead-card-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.lead-card-body {
  padding: 24px;
}

.lead-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}

.lead-mini-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.lead-mini-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.lead-mini-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 2px;
}

.lead-mini-rating .star-rating {
  font-size: 17px;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.trust-item {
  text-align: center;
  padding: 10px 4px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.trust-item i {
  font-size: 16px;
  color: var(--nav-bg);
  margin-bottom: 3px;
  display: block;
}

.trust-item span {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.3;
  display: block;
}

/* Form fields */
.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 5px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray-400);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 15px 24px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: var(--gold);
  color: #fff;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 176, 44, .3);
}

.btn-submit.btn-green {
  background: var(--green);
}

.btn-submit.btn-green:hover {
  background: #0e9a66;
  box-shadow: 0 6px 20px rgba(18, 176, 118, .3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-submit.btn-hidden,
.consent-text.btn-hidden {
  display: none;
}

.btn-submit.btn-visible {
  display: flex;
  animation: fadeSlideUp .3s ease;
}

.consent-text.btn-visible {
  display: block;
  animation: fadeSlideUp .3s ease;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-submit .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  animation: shine 3.5s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  40% { left: 100%; }
  100% { left: 100%; }
}

.consent-text {
  font-size: 11px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.consent-text a {
  color: var(--gold);
}

.social-proof {
  text-align: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 12px;
  color: var(--gray-500);
}

.social-proof strong {
  color: var(--dark);
}

/* Lead form card */
.lead-form-card {
  margin-top: 16px;
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.lead-form-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.lead-form-card-header h4,
.lead-form-card-header .cta-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.lead-form-card-header p {
  font-size: 13px;
  color: var(--gray-500);
}

.lead-form-card-body {
  padding: 24px;
}

/* Sidebar secondary */
.sidebar-secondary {
  margin-top: 16px;
  padding: 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.sidebar-secondary h4,
.sidebar-secondary .sidebar-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  display: block;
}

.sidebar-secondary .ss-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-700);
}

.sidebar-secondary .ss-row:last-child {
  border-bottom: none;
}

.sidebar-secondary .ss-row i {
  width: 18px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

.sidebar-secondary .ss-row span {
  font-weight: 600;
}

/* Mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
  border-top: 1px solid var(--gray-200);
}

.mobile-cta-bar .btn-submit {
  padding: 14px;
}

/* Success Modal */
.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-bg.show {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  animation: modalPop .3s ease;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon i {
  font-size: 28px;
  color: var(--green);
}

.modal-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.modal-box p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Related Services */
/* ── FAQ Section ── */
.faq-section {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 48px 0;
}

.faq-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.faq-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 18px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.faq-chevron {
  font-size: 14px;
  color: var(--gray-500);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 4px;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 16px 18px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

.related-services-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 40px 0;
}

.related-services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.related-services-inner h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 40px;
}

.related-services-grid a {
  font-size: 14px;
  color: var(--gray-700);
  padding: 5px 0;
  transition: color .15s;
}

.related-services-grid a:hover {
  color: var(--gold);
}

/* Stories */
.story-card {
  display: flex;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}

.story-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.story-img {
  width: 240px;
  flex-shrink: 0;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-body {
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 10px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.story-heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 6px;
}

.story-excerpt {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.story-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.story-link:hover {
  color: var(--gold);
}

.story-link i {
  font-size: 10px;
}

/* ============================================================
   Confirmation Modal (shared success/error modal)
   ============================================================ */
.confirmation_modal .modal-dialog {
  max-width: 650px;
}

.confirmation_modal .modal-content {
  border-radius: 8px;
}

.confirmation_modal .modal-body {
  position: relative;
  text-align: center;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.confirmation_modal .modal-body .btn-close {
  position: absolute;
  top: 15px;
  right: 21px;
  background: none;
  opacity: 1;
  padding: 0;
  font-size: 20px;
  box-shadow: none !important;
  transition: all linear .3s;
}

.confirmation_modal .modal-body .btn-close:hover {
  color: red;
}

.confirmation_modal .modal-body .icon {
  width: 100px;
  height: 100px;
  margin: 15px auto 20px auto;
}

.confirmation_modal .modal-body .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.confirmation_modal .modal-body .h3 {
  color: #222;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.confirmation_modal .modal-body .message-text {
  color: #333;
  text-align: center;
  font-size: 16px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 35px;
}

.confirmation_modal .modal-body .common_btn {
  background: var(--gold);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding: 13px 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all linear .3s;
}

.confirmation_modal .modal-body .common_btn:hover {
  background: #e29d18;
}

/* ===== SIDEBAR QUOTE MODAL ===== */
#sidebarQuoteModal .progress-bar {
  background-color: var(--colorPrimary);
  height: 7px;
  width: 0%;
  transition: width 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}


/* ===== SEARCH MODAL ===== */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding-top: 80px;
}

.search-modal.active {
  display: flex;
}

.search-modal-dialog {
  background: #fff;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
  overflow: hidden;
}

.search-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
}

.search-modal-cancel {
  background: none;
  border: none;
  font-size: 15px;
  color: var(--gray-600);
  cursor: pointer;
  font-family: var(--font-family);
  padding: 0;
}

.search-modal-cancel:hover {
  color: var(--dark);
}

.search-modal-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-family);
  transition: background 0.2s;
}

.search-modal-submit:hover {
  background: var(--gold-hover);
}

.search-modal-fields {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.search-modal-input,
.search-modal-zip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0 14px;
  height: 46px;
  transition: border-color 0.2s;
}

.search-modal-input:focus-within,
.search-modal-zip:focus-within {
  border-color: var(--gold);
}

.search-modal-input-icon,
.search-modal-zip-icon {
  color: var(--gray-500);
  font-size: 14px;
  flex-shrink: 0;
}

.search-modal-input input,
.search-modal-zip input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  font-family: var(--font-family);
  color: var(--dark);
  width: 100%;
  height: 100%;
  font-weight: 600;
}

.search-modal-input input::placeholder,
.search-modal-zip input::placeholder {
  color: var(--gray-500);
}

.search-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.search-modal-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.search-modal-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-modal-popular-list li {
  padding: 10px 12px;
  font-size: 14px;
  color: var(--gray-800);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
}

.search-modal-popular-list li:hover {
  background: var(--gray-100);
}

/* Results accordion */
.search-modal-group {
  border-bottom: 1px solid var(--gray-200);
}

.search-modal-group:last-child {
  border-bottom: none;
}

.search-modal-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  font-family: var(--font-family);
}

.search-modal-group-header:hover {
  color: var(--gold);
}

.search-modal-chevron {
  font-size: 11px;
  color: var(--gray-500);
  transition: transform 0.2s;
}

.search-modal-group.expanded .search-modal-chevron {
  transform: rotate(180deg);
}

.search-modal-group-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.search-modal-group.expanded .search-modal-group-body {
  max-height: 3000px;
  padding: 0 0 8px 0;
}

.search-modal-item {
  padding: 9px 12px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
}

.search-modal-item:hover,
.search-modal-item.keyboard-active {
  background: var(--gold-light);
  color: var(--dark);
}

.search-modal-item mark {
  background: var(--gold-light);
  color: var(--gold-hover);
  font-weight: 600;
  padding: 0;
}

/* ===== MATCHING VERTICAL TIMELINE ===== */
.matching-container {
  text-align: center;
  padding: 50px 20px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.matching-heading {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin-bottom: 44px;
  line-height: 1.5;
}

.matching-heading span {
  font-weight: 700;
  color: var(--gold);
}

.matching-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 320px;
  margin: 0 auto;
}

.matching-row {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 16px 0;
}

.matching-row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: calc(100% - 28px);
  background: #e8e8e8;
  transition: background 0.5s ease;
}

.matching-row.completed:not(:last-child)::after {
  background: var(--gold);
}

.matching-row-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  border: 2px solid #e5e5e5;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.matching-row-icon i {
  font-size: 18px;
  color: var(--gray-400);
  transition: all 0.4s ease;
}

.matching-row-text {
  text-align: left;
}

.matching-row-title {
  font-size: 15px;
  font-weight: 600;
  color: #999;
  transition: color 0.4s ease;
}

.matching-row-desc {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 3px;
  transition: color 0.4s ease;
}

/* Spinner ring for active row */
@keyframes matching-spin-ring {
  to { transform: rotate(360deg); }
}

.matching-row.active .matching-row-icon {
  background: #fff;
  border-color: transparent;
  position: relative;
}

.matching-row.active .matching-row-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #eee;
  border-top-color: var(--gold);
  animation: matching-spin-ring 0.9s linear infinite;
}

.matching-row.active .matching-row-icon i {
  color: var(--gold);
}

.matching-row.active .matching-row-title {
  color: #222;
}

.matching-row.active .matching-row-desc {
  color: var(--gray-500);
}

/* Completed state */
.matching-row.completed .matching-row-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.matching-row.completed .matching-row-icon::before {
  display: none;
}

.matching-row.completed .matching-row-icon i {
  color: #fff;
}

.matching-row.completed .matching-row-icon i::before {
  content: '\f00c';
}

.matching-row.completed .matching-row-title {
  color: #333;
}

.matching-row.completed .matching-row-desc {
  color: var(--gray-500);
}

/* Hide old matching layout if present */
#serviceLocation .img {
  display: none;
}

/* ── Search dot loader animation ── */
.header-search-loader {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  list-style: none;
}

.search-dot-loader {
  display: inline-block;
}

.search-dot-loader .clsd {
  display: inline-block;
  position: relative;
  top: -5px;
}

.search-dot-loader .clsd:not(:last-child) {
  margin-right: 4px;
}

.search-dot-loader .clsd::before,
.search-dot-loader .clsd::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  position: absolute;
  border-radius: 50%;
}

.search-dot-loader .clsd::before {
  transform: translateY(-200%);
  background-color: rgb(255, 0, 0);
  animation: cssload-animBefore 1.15s linear infinite;
}

.search-dot-loader .clsd::after {
  transform: translateY(200%);
  background-color: rgb(119, 119, 119);
  animation: cssload-animAfter 1.15s linear infinite;
}

.search-dot-loader .clsd:nth-child(1)::before { animation-delay: -1.04s; }
.search-dot-loader .clsd:nth-child(2)::before { animation-delay: -0.92s; }
.search-dot-loader .clsd:nth-child(3)::before { animation-delay: -0.81s; }
.search-dot-loader .clsd:nth-child(4)::before { animation-delay: -0.69s; }
.search-dot-loader .clsd:nth-child(5)::before { animation-delay: -0.58s; }
.search-dot-loader .clsd:nth-child(6)::before { animation-delay: -0.46s; }
.search-dot-loader .clsd:nth-child(7)::before { animation-delay: -0.35s; }
.search-dot-loader .clsd:nth-child(8)::before { animation-delay: -0.23s; }
.search-dot-loader .clsd:nth-child(9)::before { animation-delay: -0.12s; }
.search-dot-loader .clsd:nth-child(10)::before { animation-delay: 0s; }

.search-dot-loader .clsd:nth-child(1)::after { animation-delay: -1.04s; }
.search-dot-loader .clsd:nth-child(2)::after { animation-delay: -0.92s; }
.search-dot-loader .clsd:nth-child(3)::after { animation-delay: -0.81s; }
.search-dot-loader .clsd:nth-child(4)::after { animation-delay: -0.69s; }
.search-dot-loader .clsd:nth-child(5)::after { animation-delay: -0.58s; }
.search-dot-loader .clsd:nth-child(6)::after { animation-delay: -0.46s; }
.search-dot-loader .clsd:nth-child(7)::after { animation-delay: -0.35s; }
.search-dot-loader .clsd:nth-child(8)::after { animation-delay: -0.23s; }
.search-dot-loader .clsd:nth-child(9)::after { animation-delay: -0.12s; }
.search-dot-loader .clsd:nth-child(10)::after { animation-delay: 0s; }

@keyframes cssload-animBefore {
  0% { transform: translateY(0); z-index: 1; }
  25% { transform: scale(1.2) translateY(-200%); z-index: 1; }
  50% { transform: translateY(0); z-index: 1; }
  75% { transform: scale(0.8) translateY(200%); z-index: -1; }
  100% { transform: translateY(0); z-index: 1; }
}

@keyframes cssload-animAfter {
  0% { transform: translateY(0); z-index: -1; }
  25% { transform: scale(1.2) translateY(200%); z-index: -1; }
  50% { transform: translateY(0); z-index: -1; }
  75% { transform: scale(0.8) translateY(-200%); z-index: 1; }
  100% { transform: translateY(0); z-index: -1; }
}

.clsSmL:not(.hidden) {
  display: inline-block;
  padding: 7px 0;
}

/* ===================================================================
   SERVICE CATEGORY PAGE
   =================================================================== */

/* --- How It Works --- */
.sc-how-it-works {
  padding: 60px 0;
}

.sc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.sc-step {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow .2s;
}

.sc-step:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.sc-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.sc-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.sc-step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* --- Services Grid --- */
.sc-services-section {
  padding: 0 0 60px;
}

.sc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.sc-service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}

.sc-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.sc-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.sc-service-card:hover .sc-service-icon {
  background: var(--gold);
  color: #fff;
}

.sc-service-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.sc-service-arrow {
  font-size: 12px;
  color: #ccc;
  transition: color .2s, transform .2s;
}

.sc-service-card:hover .sc-service-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* --- About Section --- */
.sc-about {
  padding: 0 0 60px;
}

.sc-about-image {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 420px;
}

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

.sc-about-content {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}

.sc-about-content h2,
.sc-about-content h3,
.sc-about-content h4 {
  color: var(--dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.sc-about-content p {
  margin-bottom: 16px;
}

.sc-about-content ul,
.sc-about-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.sc-about-content li {
  margin-bottom: 8px;
}

/* ===================================================================
   JOIN US INDEX PAGE (jp-)
   =================================================================== */

/* --- Hero --- */
.jp-hero {
  background-color: rgba(30, 40, 55, 1);
  background-size: cover;
  background-position: center;
  padding: 80px 0 90px;
  position: relative;
}

.jp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 55, .72);
  z-index: 1;
}

.jp-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.jp-hero-content {
  max-width: 640px;
}

.jp-hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.jp-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.jp-hero-video-mobile {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

.jp-hero-video-mobile video {
  width: 100%;
  display: block;
  cursor: pointer;
  border-radius: var(--radius);
}

/* Hero search */
.jp-search-wrap {
  position: relative;
  margin-bottom: 20px;
}

.jp-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 0 20px;
  height: 52px;
}

.jp-search-box i {
  color: #aaa;
  font-size: 15px;
}

.jp-search-box input {
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--dark);
  width: 100%;
  background: transparent;
}

.jp-search-box input::placeholder {
  color: #aaa;
}

.jp-search-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  max-height: 260px;
  overflow-y: auto;
}

.jp-search-item {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .15s;
}

.jp-search-item:hover {
  background: var(--gold-light);
}

.jp-search-item i {
  color: #ccc;
  font-size: 13px;
}

.jp-search-view-all {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  border-top: 1px solid var(--gray-border);
}

.jp-search-view-all:hover {
  background: var(--gold-light);
}

/* Popular tags */
.jp-popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}

.jp-popular-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
}

.jp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
}

.jp-tag i {
  font-size: 11px;
}

/* CTA button */
.jp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.jp-cta-btn:hover {
  background: var(--gold-hover);
  color: #fff;
  text-decoration: none;
}

/* --- Benefits --- */
.jp-benefits {
  padding: 60px 0;
}

.jp-benefits-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 28px;
}

.jp-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}

.jp-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--gold);
  flex-shrink: 0;
  font-size: 14px;
}

.jp-video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}

.jp-video-wrap video {
  width: 100%;
  height: 500px;
  display: block;
  cursor: pointer;
  border-radius: var(--radius);
  object-fit: cover;
}

.jp-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.jp-benefit-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .2s;
}

.jp-benefit-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.jp-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 18px;
}

.jp-benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.jp-benefit-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* --- Leads --- */
.jp-leads {
  padding: 0 0 60px;
  background: var(--gray-bg);
  padding-top: 60px;
}

.jp-leads-subtitle {
  font-size: 15px;
  color: var(--gray-600);
  margin-top: 8px;
  margin-bottom: 32px;
  max-width: 600px;
}

.jp-leads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jp-lead-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.jp-lead-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.jp-lead-time {
  font-size: 12px;
  color: #999;
}

.jp-lead-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.jp-lead-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.jp-lead-customer {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

.jp-lead-details {
  flex: 1;
}

.jp-lead-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.jp-lead-value {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.5;
}

.jp-lead-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-border);
  margin-top: 8px;
}

.jp-lead-footer a {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.jp-lead-btn {
  padding: 8px 18px;
  background: var(--gray-bg);
  color: #999;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  font-size: 13px;
  cursor: not-allowed;
}

/* --- Pricing --- */
.jp-pricing {
  padding: 0 0 60px;
}

.jp-pricing-banner {
  background-size: cover;
  background-position: center;
  position: relative;
}

.jp-pricing-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 55, .8);
}

.jp-pricing-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.jp-pricing-banner-inner span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.jp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.jp-pricing-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.jp-pricing-featured {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245, 176, 44, .15);
}

.jp-pricing-header {
  padding: 28px 28px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-border);
}

.jp-pricing-header h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.jp-pricing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.jp-pricing-note {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.jp-pricing-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jp-pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}

.jp-pricing-body ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.jp-pricing-body ul li i {
  color: var(--green);
  font-size: 13px;
}

.jp-pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background .2s;
  margin-top: 24px;
}

.jp-pricing-btn:hover {
  background: var(--gold-hover);
}

.jp-pricing-btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-border);
}

.jp-pricing-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* --- Statistics --- */
.jp-stats {
  padding: 60px 0;
  background: var(--nav-bg);
}

.jp-stats .section-heading {
  color: #fff;
}

.jp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.jp-stat {
  text-align: center;
  padding: 24px;
}

.jp-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.jp-stat-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .6);
  margin: 0;
}

/* --- Testimonials --- */
.jp-testimonials {
  padding: 60px 0;
}

.jp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.jp-testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 32px;
}

.jp-testimonial-quote {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.jp-testimonial-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
}

.jp-testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.jp-testimonial-title {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* --- FAQ --- */
.jp-faq {
  padding: 0 0 60px;
}

.jp-faq .accordion-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.jp-faq .accordion-button {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  padding: 18px 24px;
}

.jp-faq .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--dark);
  box-shadow: none;
}

.jp-faq .accordion-button::after {
  color: var(--gold);
}

.jp-faq .accordion-body {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

.jp-faq .accordion-body ul {
  padding-left: 20px;
}

.jp-faq .accordion-body li {
  margin-bottom: 6px;
}

/* --- Contact Sales Modal --- */

.jp-contact-modal {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.jp-contact-modal .modal-header,
.jp-contact-modal .modal-body {
  display: none;
}

.jp-contact-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  transition: all 0.2s;
}

.jp-contact-close:hover {
  background: #f5f5f5;
  color: #222;
}

.jp-contact-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #f9f7f2 0%, #fdf9f0 100%);
  border-bottom: 1px solid var(--gray-border);
}

.jp-contact-banner-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.jp-contact-banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jp-contact-banner-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.jp-contact-banner-text p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.jp-contact-body {
  padding: 28px 32px 32px;
}

.jp-contact-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.jp-contact-label span {
  color: #e74c3c;
}

.jp-contact-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.jp-contact-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 164, 75, 0.12);
}

.jp-contact-input::placeholder {
  color: #aaa;
}

.jp-contact-textarea {
  resize: vertical;
  min-height: 100px;
}

.jp-contact-submit {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.jp-contact-submit:hover {
  background: #b8993a;
}

.jp-contact-submit:active {
  transform: scale(0.99);
}

.jp-contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===================================================================
   JOIN PRO FORM PAGE (jpf-)
   =================================================================== */

.jpf-section {
  background-color: rgba(30, 40, 55, 1);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  padding: 60px 0;
}

.jpf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 55, .8);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.jpf-container {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Card */
.jpf-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: opacity, transform;
}

.jpf-card.jpf-fade-out-forward {
  opacity: 0;
  transform: translateX(-50px) scale(0.95);
  pointer-events: none;
}

.jpf-card.jpf-fade-out-backward {
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  pointer-events: none;
}

.jpf-card.jpf-fade-in {
  animation: jpfSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes jpfSlideIn {
  0% { opacity: 0; transform: translateX(50px) scale(0.95); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

.jpf-card.jpf-fade-in-back {
  animation: jpfSlideInBack 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes jpfSlideInBack {
  0% { opacity: 0; transform: translateX(-50px) scale(0.95); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* Back / Close nav */
.jpf-back,
.jpf-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--dark);
  cursor: pointer;
  margin-bottom: 20px;
  transition: background .2s;
}

.jpf-back:hover,
.jpf-close:hover {
  background: var(--gray-border);
}

/* Progress */
.jpf-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.jpf-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  background: var(--gray-bg);
  color: #999;
  border: 2px solid var(--gray-border);
}

.jpf-step.current {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.jpf-step.completed {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.jpf-line {
  width: 40px;
  height: 2px;
  background: var(--gray-border);
}

/* Body */
.jpf-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.jpf-subheading {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 24px;
}

.jpf-hint {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
  margin-bottom: 0;
}

/* Fields */
.jpf-field-wrap {
  position: relative;
}

.jpf-field-wrap label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.jpf-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}

.jpf-input:focus {
  border-color: var(--gold);
}

.jpf-input::placeholder {
  color: #bbb;
}

/* Service list */
.jpf-service-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 0 0 10px 10px;
  z-index: 10;
  margin-top: -1px;
}

.jpf-service-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark);
  border-bottom: 1px solid #f5f5f5;
  transition: background .15s;
}

.jpf-service-item:last-child {
  border-bottom: none;
}

.jpf-service-item:hover {
  background: var(--gold-light);
}

.jpf-service-item.selected {
  background: var(--gold-light);
  color: var(--gold);
  font-weight: 600;
}

/* Tags */
.jpf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.jpf-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.jpf-tag i {
  cursor: pointer;
  font-size: 11px;
  transition: color .15s;
}

.jpf-tag i:hover {
  color: #d32f2f;
}

/* Actions */
.jpf-actions {
  margin-top: 28px;
}

.jpf-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, opacity .2s;
}

.jpf-btn:hover {
  background: var(--gold-hover);
}

.jpf-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.jpf-support {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 20px;
  margin-bottom: 0;
}

.jpf-support a {
  color: var(--gold);
  font-weight: 600;
}

.jpf-countdown {
  color: #d32f2f;
  font-size: 14px;
  margin-top: 8px;
}

/* Verification */
.jpf-verify-text {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.jpf-phone-display {
  font-weight: 700;
  color: var(--dark);
}

.jpf-change-link {
  color: var(--gold);
  font-weight: 600;
  margin-left: 4px;
}

.jpf-resend-text {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}

.jpf-resend-link {
  color: var(--gold);
  font-weight: 600;
}

/* Code inputs */
.jpf-code-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

.jpf-code-input {
  width: 100%;
  max-width: 280px;
  height: 64px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 16px;
  padding-left: 16px;
  border: 2px solid #9ca3af;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s;
}

.jpf-code-input::placeholder { color: #9ca3af; font-size: 28px; letter-spacing: 16px; }

.jpf-code-input:focus {
  border-color: var(--gold);
}

/* Success */
.jpf-success-icon {
  margin-bottom: 20px;
}

.jpf-success-icon i {
  font-size: 64px;
  color: var(--green);
}

.jpf-success-card .jpf-heading {
  color: var(--green);
}

/* Success Modal */
.get_quote_modal .onboarding_page {
  min-height: auto;
  padding: 20px 0;
  margin-top: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.get_quote_modal .onboarding_page .page_wrapper {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.get_quote_modal .onboarding_page .image {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.get_quote_modal .onboarding_page .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.get_quote_modal .onboarding_page h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.get_quote_modal .onboarding_page p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

.get_quote_modal .onboarding_page .common_btn {
  margin-top: 24px;
}

/* ===================================================================
   CITY FAQ SECTION
   =================================================================== */
.city-faq-section {
  padding: 40px 0 25px;
  background: #fff;
}

.city-faq-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.city-faq-title {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin: 0 0 20px;
}

.city-faq-accordion .accordion-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.city-faq-accordion .accordion-button {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  padding: 18px 24px;
}

.city-faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--dark);
  box-shadow: none;
}

.city-faq-accordion .accordion-button:focus,
.city-faq-accordion .accordion-button:focus-visible,
.city-faq-accordion .accordion-button:active {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.city-faq-accordion .accordion-button::after {
  color: var(--gold);
}

.city-faq-accordion .accordion-body {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ===================================================================
   RELATED SERVICES SECTION
   =================================================================== */
.related-services-section {
  padding: 40px 0 25px;
  background: #fff;
}

.related-services-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.related-services-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px 32px;
}

.related-services-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.related-services-title {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin: 0 0 4px;
}

.related-services-subtitle {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.related-services-chevron {
  font-size: 18px;
  color: #555;
  transition: transform 0.3s ease;
  margin-top: 4px;
  flex-shrink: 0;
}

.related-services-toggle[aria-expanded="false"] .related-services-chevron {
  transform: rotate(180deg);
}

.related-services-body.collapsed {
  display: none;
}

.related-services-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0 24px;
}

.related-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-services-list li {
  margin-bottom: 12px;
}

.related-services-list a {
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.related-services-list a:hover {
  color: #F5B02C;
  text-decoration: none;
}

/* ===================================================================
   OTHER JOBS SECTION
   =================================================================== */
.other-jobs-section {
  padding: 40px 0;
  background: #fff;
}

.other-jobs-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.other-jobs-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px 32px;
}

.other-jobs-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.other-jobs-title {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin: 0 0 4px;
}

.other-jobs-subtitle {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.other-jobs-chevron {
  font-size: 18px;
  color: #555;
  transition: transform 0.3s ease;
  margin-top: 4px;
  flex-shrink: 0;
}

.other-jobs-toggle[aria-expanded="false"] .other-jobs-chevron {
  transform: rotate(180deg);
}

.other-jobs-body.collapsed {
  display: none;
}

.other-jobs-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0 24px;
}

.other-jobs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.other-jobs-list li {
  margin-bottom: 12px;
}

.other-jobs-list a {
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.other-jobs-list a:hover {
  color: #F5B02C;
  text-decoration: none;
}

/* ===== NEARBY CITIES SECTION ===== */
.nearby-cities-section {
  padding: 40px 0;
  background: #fff;
}

.nearby-cities-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nearby-cities-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px 32px;
}

.nearby-cities-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.nearby-cities-title {
  font-size: 22px;
  font-weight: 500;
  color: #222;
  margin: 0 0 4px;
}

.nearby-cities-subtitle {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.nearby-cities-chevron {
  font-size: 18px;
  color: #555;
  transition: transform 0.3s ease;
  margin-top: 4px;
  flex-shrink: 0;
}

.nearby-cities-toggle[aria-expanded="false"] .nearby-cities-chevron {
  transform: rotate(180deg);
}

.nearby-cities-body.collapsed {
  display: none;
}

.nearby-cities-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0 24px;
}

.nearby-cities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-cities-list li {
  margin-bottom: 14px;
}

.nearby-cities-list a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
}

.nearby-cities-list a:hover {
  color: #F5B02C;
  text-decoration: none;
}

/* ===== COST GUIDE SECTION ===== */
.cg-section {
  background: #f6f8fb;
  border-top: 1px solid #e4e9f0;
  padding: 56px 0 64px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cg-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.cg-hero { text-align: center; margin-bottom: 48px; }
.cg-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #12B076; margin-bottom: 12px;
}
.cg-hero-title {
  font-size: 32px; font-weight: 700; color: #384454;
  margin: 0 0 8px; line-height: 1.2;
}
.cg-hero-sub {
  font-size: 14px; color: #6b7990; margin: 0 0 32px;
}

/* Hero range bar */
.cg-hero-bar-wrap {
  max-width: 680px; margin: 0 auto; position: relative; padding: 0 20px;
}
.cg-hero-labels {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 12px; padding: 0 4px;
}
.cg-hero-low, .cg-hero-high {
  font-size: 18px; font-weight: 700; color: #384454;
}
.cg-hero-avg-wrap { text-align: center; }
.cg-hero-avg {
  font-size: 36px; font-weight: 700; color: #12B076; line-height: 1;
}
.cg-hero-avg-label {
  display: block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: #8a96a8; margin-top: 4px;
}
.cg-hero-track {
  position: relative; height: 10px; background: #dde3ed;
  border-radius: 99px; overflow: visible;
}
.cg-hero-fill {
  position: absolute; top: 0; bottom: 0;
  background: #12B076;
  border-radius: 99px;
}
.cg-hero-dot {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 16px; height: 16px; background: #fff;
  border: 3px solid #12B076; border-radius: 50%; z-index: 2;
}
.cg-hero-avg-dot {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 22px; height: 22px; background: #12B076;
  border: 3px solid #fff; border-radius: 50%;
  box-shadow: 0 0 0 2.5px #12B076; z-index: 3;
}
.cg-hero-ends {
  display: flex; justify-content: space-between; padding: 6px 4px 0;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #a0aab8;
}
.cg-hero-disc {
  font-size: 11px; color: #a0aab8; margin: 14px 0 0; line-height: 1.5;
}
.cg-hero-updated {
  font-size: 12px; color: #a0aab8; margin-top: 16px;
}

/* Price chips */
.cg-pts { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.cg-pt {
  display: flex; flex-direction: column; gap: 3px;
  background: #fff; border: 1px solid #dde3ed; border-radius: 10px;
  padding: 10px 18px; min-width: 130px; text-align: center;
}
.cg-pt-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #8a96a8; }
.cg-pt-val { font-size: 15px; font-weight: 700; color: #384454; }

/* Prose */
.cg-prose {
  max-width: 820px; margin: 0 auto 48px;
  font-size: 15px; color: #5a6880; line-height: 1.75;
}
.cg-prose p { margin: 0 0 16px; }
.cg-prose strong { color: #384454; }

/* Callout */
.cg-callout {
  max-width: 820px; margin: 0 auto 48px;
  border-left: 4px solid #12B076;
  background: #f0faf5;
  padding: 18px 24px;
  border-radius: 0 10px 10px 0;
  font-size: 14px; color: #384454; line-height: 1.65;
}

/* Factors + FAQ grid */
.cg-bottom-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.cg-bottom-grid--single { grid-template-columns: 1fr; }
.cg-section-title {
  font-size: 18px; font-weight: 700; color: #384454; margin: 0 0 22px;
}
.cg-factor-item { margin-bottom: 22px; }
.cg-factor-item strong { display: block; font-size: 14px; font-weight: 700; color: #384454; margin-bottom: 4px; }
.cg-factor-item p { font-size: 13px; color: #6b7990; margin: 0; line-height: 1.6; }

.cg-faq-item { border-bottom: 1px solid #e4e9f0; }
.cg-faq-q {
  width: 100%; background: none; border: none; padding: 15px 4px;
  text-align: left; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600; color: #384454; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: color 0.15s;
}
.cg-faq-q:hover { color: var(--gold); }
.cg-faq-q i { flex-shrink: 0; font-size: 12px; color: #9aadc2; transition: transform 0.25s, color 0.15s; }
.cg-faq-q[aria-expanded="true"] { color: var(--gold); }
.cg-faq-q[aria-expanded="true"] i { transform: rotate(180deg); color: var(--gold); }
.cg-faq-a { display: none; padding: 0 4px 14px; }
.cg-faq-a.open { display: block; }
.cg-faq-a p { font-size: 13px; color: #6b7990; margin: 0; line-height: 1.65; }

/* Method tables */
.cg-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.cg-method-block-title {
  font-size: 16px; font-weight: 700; color: #384454; margin: 0 0 4px;
  display: flex; align-items: center; gap: 8px;
}
.cg-method-block-title .fas { color: #12B076; font-size: 14px; }
.cg-method-block-sub {
  font-size: 13px; color: #8a96a8; margin: 0 0 16px;
}
.cg-method-table thead th:nth-child(2) { text-align: right; }
.cg-method-title {
  font-size: 18px; font-weight: 700; color: #384454; margin: 0 0 8px;
}
.cg-method-sub {
  font-size: 14px; color: #6b7990; margin: 0 0 24px; line-height: 1.6;
}
.cg-method-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.cg-method-table thead th {
  text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: #384454; padding: 12px 16px;
  border-bottom: 3px solid #12B076;
}
.cg-method-table thead th:last-child { text-align: right; }
.cg-method-table tbody tr { border-bottom: 1px solid #e4e9f0; }
.cg-method-table tbody tr:nth-child(odd) { background: #eef8f3; }
.cg-method-table tbody tr:nth-child(even) { background: #fff; }
.cg-method-table tbody tr:hover { background: #e4f4ec; }
.cg-method-table td {
  padding: 14px 16px; font-size: 14px; color: #384454; vertical-align: top;
}
.cg-method-table td:last-child { text-align: right; font-weight: 700; white-space: nowrap; }
.cg-method-name { font-weight: 700; }
.cg-method-desc { font-size: 12px; color: #6b7990; line-height: 1.55; margin-top: 4px; }
.cg-method-badge {
  display: inline-block; font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: #12B076; color: #fff; padding: 2px 7px;
  border-radius: 99px; margin-left: 8px; vertical-align: middle;
}

/* CTA bar */
.cg-cta {
  background: #384454;
  border-radius: 12px; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cg-cta-text { display: flex; flex-direction: column; gap: 4px; }
.cg-cta-text strong { font-size: 15px; color: #fff; font-weight: 700; }
.cg-cta-text span { font-size: 13px; color: #9aadc2; }
.cg-cta-btn {
  background: #12B076; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700; padding: 12px 24px;
  border-radius: 8px; text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, transform 0.1s; flex-shrink: 0;
}
.cg-cta-btn:hover { background: #0fa068; color: #fff; text-decoration: none; }

/* Disclaimer */
.cg-disclaimer {
  font-size: 12px; color: #8a96a8; margin-top: 24px;
  display: flex; align-items: flex-start; gap: 6px; line-height: 1.5;
}
.cg-disclaimer i { flex-shrink: 0; margin-top: 2px; }
/* ===== END COST GUIDE SECTION ===== */

/* ===================================================================
   LEARNING CENTER MEGA-DROPDOWN (redesign)
   Promo image card + eyebrow/view-all header + 3-column hover-chip
   links. Categories come from the Growcycle module DB
   (App\Traits\HeaderMenuList), overriding the .dd-* base rules above.
   =================================================================== */
.mega-dd {
  min-width: 960px;
}

.dd-panel.active {
  gap: 28px;
  padding: 22px 28px 26px;
}

.dd-promo {
  position: relative;
  width: 230px;
  height: 210px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background: #e8f0e8;
}

.dd-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.dd-promo:hover img {
  transform: scale(1.05);
}

.dd-promo-shade {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 38, .28);
}

.dd-promo-text {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dd-promo-text strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .45);
}

.dd-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  border-radius: 6px;
  padding: 5px 11px;
  width: max-content;
  transition: background .2s;
}

.dd-promo:hover .dd-promo-cta {
  background: var(--gold-hover);
}

.dd-promo-cta i {
  font-size: 10px;
}

.dd-browse {
  flex: 1;
  min-width: 0;
}

.dd-browse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.dd-browse-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #9aa1ab;
}

.dd-view-all {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.dd-view-all:hover {
  color: var(--gold-hover);
}

.dd-view-all i {
  font-size: 10px;
}

.dd-browse .dd-links li {
  width: 33.333%;
  padding-right: 8px;
}

.dd-browse .dd-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13.5px;
  color: #333;
  font-weight: 500;
  transition: background .15s, color .15s;
}

.dd-browse .dd-links li a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: #c8cdd4;
  transition: color .15s;
}

.dd-browse .dd-links li a:hover {
  background: #f7f8f9;
  color: var(--gold);
}

.dd-browse .dd-links li a:hover::before {
  color: var(--gold);
}

/* ===================== Review form page ===================== */
.review-eyebrow {
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.review-panel {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.05);
}

.review-alert {
  border: 1px solid #f0c2c2;
  background: #fdecec;
  color: #a12a2a;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.review-alert-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.review-alert ul {
  margin: 0;
  padding-left: 18px;
}

.review-rating {
  margin-bottom: 22px;
}

.review-rating-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 10px;
}

/* Star rating: reversed row so CSS fills stars left-to-right without JS. */
.rating-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
}

.rating-input input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.rating-input label {
  font-size: 2rem;
  line-height: 1;
  color: var(--gray-300);
  cursor: pointer;
  transition: color 0.12s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
  color: var(--gold);
}

.rating-input input:focus-visible + label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.review-field-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-hint {
  font-weight: 400;
  color: var(--gray-500);
}

.review-file {
  width: 100%;
  border: 1px dashed var(--gray-300);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--gray-50);
  cursor: pointer;
}

.review-legal {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 4px 0 20px;
}

.review-photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.review-photo-preview:empty {
  margin-top: 0;
}

.review-photo-thumb {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.review-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.65);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.review-photo-remove:hover {
  background: rgba(26, 26, 26, 0.9);
}

.lead-mini-loc {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.lead-mini-link {
  text-decoration: none;
  color: inherit;
}

.lead-mini-link:hover .lead-mini-name {
  color: var(--gold);
}

@media (max-width: 991.98px) {
  .review-field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .review-panel {
    padding: 20px;
  }
}
