.movepro-plugin {
  --ink: #ffffff;
  --ink2: #f8fafc;
  --ink3: #f1f5f9;
  --surface: #e2e8f0;
  --border: rgba(15,23,42,0.08);
  --border2: rgba(15,23,42,0.14);
  --text: #0f172a;
  --muted: #64748b;
  --muted2: #334155;
  --primary: #2563eb;
  --primary2: #3b82f6;
  --primary3: #1d4ed8;
  --emerald: #059669;
  --amber: #d97706;
  --rose: #e11d48;
  --cyan: #0891b2;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 60px rgba(15,23,42,0.12);
}

.movepro-plugin, .movepro-plugin *, .movepro-plugin *::before, .movepro-plugin *::after { margin:0; padding:0; box-sizing:border-box; }


.movepro-plugin {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,.brand-name { font-family: 'Clash Display', sans-serif; }
a { text-decoration: none; color: inherit; }

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar { width: 6px; }
.movepro-plugin ::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 68px;
  display: flex; align-items: center;
  padding: 0 5%;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  border-color: var(--border);
}

.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.brand-name { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.3px; }
.brand-name em { font-style: normal; color: var(--primary3); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item {
  position: relative;
  padding: 8px 14px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted2); border-radius: 8px;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 5px;
}
.nav-item:hover { color: var(--text); background: rgba(15,23,42,0.05); }

.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--ink2); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 8px;
  min-width: 200px; display: none;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-item:hover .nav-dropdown { display: block; animation: dropIn 0.15s ease; }
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.nav-dd-item {
  padding: 9px 12px; border-radius: 8px; font-size: 0.84rem;
  color: var(--muted2); cursor: pointer; transition: all 0.15s;
  display: flex; align-items: center; gap: 10px;
}
.nav-dd-item i { color: var(--primary3); width: 16px; }
.nav-dd-item:hover { background: rgba(15,23,42,0.06); color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-ghost {
  padding: 8px 16px; border-radius: 8px; font-size: 0.84rem; font-weight: 500;
  border: 1px solid var(--border2); background: transparent; color: var(--muted2);
  cursor: pointer; transition: all 0.2s;
}
.btn-nav-ghost:hover { color: var(--text); border-color: rgba(15,23,42,0.2); }
.btn-nav-primary {
  padding: 9px 20px; border-radius: 8px; font-size: 0.84rem; font-weight: 600;
  background: var(--primary); color: white; border: none; cursor: pointer;
  transition: all 0.2s; font-family: 'Clash Display', sans-serif; letter-spacing: 0.2px;
}
.btn-nav-primary:hover { background: #1d4ed8; transform: translateY(-1px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh; padding: 100px 5% 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}

.hero-orb-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.hero-orb-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px; pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }

.hero-trust-bar {
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25);
  color: var(--emerald); font-size: 0.78rem; font-weight: 600;
  padding: 5px 13px; border-radius: 50px; letter-spacing: 0.3px;
}
.trust-dot { width: 6px; height: 6px; background: var(--emerald); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.trust-feature { font-size: 0.78rem; color: var(--muted); }
.trust-sep { color: var(--border2); }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero h1 .hl {
  background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 50%, #34d399 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 1.05rem; color: var(--muted2); line-height: 1.75;
  max-width: 560px; margin-bottom: 40px;
}

/* SEARCH BAR */
.hero-search {
  background: var(--ink2); border: 1px solid var(--border2);
  border-radius: 18px; padding: 6px 6px 6px 20px;
  display: flex; align-items: center; gap: 12px;
  max-width: 720px; box-shadow: var(--shadow-lg);
  position: relative; margin-bottom: 20px;
}
.hero-search-field {
  flex: 1; display: flex; align-items: center; gap: 10px;
}
.search-divider {
  width: 1px; height: 36px; background: var(--border2); flex-shrink: 0;
}
.search-icon { color: var(--primary3); font-size: 0.9rem; flex-shrink: 0; }
.search-input-wrap { flex: 1; position: relative; }
.search-input-wrap label {
  display: block; font-size: 0.68rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.8px; font-weight: 600; margin-bottom: 1px;
}
.search-input-wrap input {
  background: transparent; border: none; outline: none;
  color: var(--text); font-size: 0.95rem; font-family: 'Bricolage Grotesque', sans-serif;
  width: 100%;
}
.search-input-wrap input::placeholder { color: var(--muted); }
.search-suggestions {
  position: absolute; top: calc(100% + 8px); left: -44px; right: 0;
  background: var(--ink2); border: 1px solid var(--border2);
  border-radius: 12px; overflow: hidden; display: none;
  box-shadow: var(--shadow-lg); z-index: 200; min-width: 260px;
}
.search-suggestions.show { display: block; }
.suggestion-item {
  padding: 11px 16px; cursor: pointer; font-size: 0.875rem;
  transition: background 0.15s; display: flex; align-items: center; gap: 10px;
}
.suggestion-item:hover { background: rgba(15,23,42,0.05); }
.suggestion-item i { color: var(--primary3); font-size: 0.8rem; width: 16px; }
.btn-search-main {
  background: var(--primary); color: white; border: none;
  padding: 14px 28px; border-radius: 13px; font-size: 0.92rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
  font-family: 'Clash Display', sans-serif; letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 8px;
}
.btn-search-main:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }

.hero-quick-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-quick-label { font-size: 0.78rem; color: var(--muted); }
.quick-link {
  font-size: 0.78rem; padding: 4px 12px; border-radius: 50px;
  background: rgba(15,23,42,0.05); border: 1px solid var(--border);
  color: var(--muted2); cursor: pointer; transition: all 0.2s;
}
.quick-link:hover { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.4); color: var(--primary3); }

.hero-stats-row {
  display: flex; gap: 40px; margin-top: 52px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hero-stat { }
.hero-stat-num {
  font-family: 'Clash Display', sans-serif; font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, #f0f2f7, #a0aab8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

.press-bar {
  display: flex; align-items: center; gap: 24px; margin-top: 40px; flex-wrap: wrap;
}
.press-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.press-logos { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.press-logo {
  font-size: 0.78rem; color: rgba(15,23,42,0.25); font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; font-family: 'Clash Display', sans-serif;
  transition: color 0.2s;
}
.press-logo:hover { color: rgba(15,23,42,0.5); }

/* =========================================
   SECTION COMMONS
   ========================================= */
.section { padding: 96px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px;
  font-weight: 700; color: var(--primary3); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--primary3); border-radius: 1px;
}
.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700;
  letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 12px;
}
.section-body { font-size: 0.96rem; color: var(--muted2); line-height: 1.7; max-width: 540px; }

/* =========================================
   HOW IT WORKS
   ========================================= */
.hiw-section { background: var(--ink2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.hiw-card {
  padding: 36px 28px; position: relative;
  border-right: 1px solid var(--border);
}
.hiw-card:last-child { border-right: none; }
.hiw-num {
  font-family: 'Clash Display', sans-serif; font-size: 4rem; font-weight: 700;
  color: rgba(15,23,42,0.04); line-height: 1; margin-bottom: 24px;
}
.hiw-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 20px;
  transition: transform 0.3s;
}
.hiw-card:hover .hiw-icon { transform: scale(1.1); }
.hiw-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.hiw-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.hiw-arrow {
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%); z-index: 1;
  color: var(--primary2); font-size: 0.8rem; opacity: 0.4;
}

/* =========================================
   SEARCH & DIRECTORY
   ========================================= */
.search-bar-section {
  background: var(--ink); padding: 40px 5%; border-bottom: 1px solid var(--border);
  position: sticky; top: 68px; z-index: 50;
}
.search-bar-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.live-search-wrap { flex: 1; position: relative; }
.live-search-wrap i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 0.9rem; }
#live-search {
  width: 100%; padding: 13px 16px 13px 44px;
  background: var(--ink2); border: 1px solid var(--border2);
  border-radius: 10px; color: var(--text); font-size: 0.92rem;
  font-family: 'Bricolage Grotesque', sans-serif; outline: none;
  transition: border-color 0.2s;
}
#live-search:focus { border-color: var(--primary2); }
#live-search::placeholder { color: var(--muted); }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 500;
  border: 1px solid var(--border2); background: transparent; color: var(--muted2);
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.chip.active { background: rgba(37,99,235,0.18); border-color: rgba(37,99,235,0.5); color: var(--primary3); }
.chip:hover:not(.active) { border-color: rgba(15,23,42,0.2); color: var(--text); }

/* =========================================
   MOVERS DIRECTORY
   ========================================= */
.directory { padding: 48px 5%; }
.directory-inner { max-width: 1280px; margin: 0 auto; }
.directory-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
}
.dir-count { font-size: 0.85rem; color: var(--muted); }
.dir-sort { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--muted2); }
.sort-select {
  background: var(--ink2); border: 1px solid var(--border2);
  color: var(--text); padding: 6px 12px; border-radius: 8px;
  font-size: 0.82rem; font-family: 'Bricolage Grotesque', sans-serif; outline: none;
}

.movers-list { display: flex; flex-direction: column; gap: 16px; }

.mover-listing {
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.mover-listing:hover { border-color: rgba(37,99,235,0.4); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.mover-listing.expanded { border-color: rgba(37,99,235,0.5); }

.mover-listing-main {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 20px; padding: 24px; align-items: start;
}

.mover-logo-box {
  width: 80px; height: 80px; border-radius: 14px;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Clash Display', sans-serif; font-size: 1.3rem; font-weight: 700;
  flex-shrink: 0; overflow: hidden;
}
.mover-logo-box img { width: 100%; height: 100%; object-fit: cover; }

.mover-listing-body { }
.mover-listing-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.mover-listing-name { font-size: 1.1rem; font-weight: 700; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  color: var(--emerald); font-size: 0.68rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px; letter-spacing: 0.3px;
}
.featured-badge {
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber); font-size: 0.68rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
}

.mover-rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.stars-display { color: var(--amber); font-size: 0.85rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; font-size: 0.9rem; }
.review-count { font-size: 0.82rem; color: var(--muted); }
.rating-bar {
  height: 4px; border-radius: 2px; background: rgba(15,23,42,0.08); flex: 1; max-width: 80px;
}
.rating-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--amber), #fbbf24); }

.mover-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--muted2); }
.meta-item i { color: var(--primary3); font-size: 0.75rem; }

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.stag {
  font-size: 0.72rem; padding: 4px 10px; border-radius: 5px;
  background: rgba(15,23,42,0.05); border: 1px solid var(--border);
  color: var(--muted2);
}

.mover-listing-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; min-width: 180px; }
.mover-price-block { text-align: right; }
.price-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.price-range { font-family: 'Clash Display', sans-serif; font-size: 1.3rem; font-weight: 700; }
.price-range span { font-size: 0.7rem; color: var(--muted); font-family: 'Bricolage Grotesque', sans-serif; }

.btn-get-quotes {
  background: var(--primary); color: white; border: none;
  padding: 11px 22px; border-radius: 10px;
  font-size: 0.84rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
  font-family: 'Clash Display', sans-serif; width: 100%;
}
.btn-get-quotes:hover { background: #1d4ed8; }
.btn-view-profile {
  background: rgba(15,23,42,0.05); border: 1px solid var(--border2);
  color: var(--muted2); padding: 9px 22px; border-radius: 10px;
  font-size: 0.82rem; cursor: pointer; transition: all 0.2s; width: 100%;
}
.btn-view-profile:hover { background: rgba(15,23,42,0.1); color: var(--text); }
.btn-expand {
  background: transparent; border: none; color: var(--muted);
  font-size: 0.78rem; cursor: pointer; display: flex; align-items: center; gap: 4px; padding: 4px 0;
}

/* EXPANDED COMPANY PROFILE */
.mover-expanded {
  display: none; border-top: 1px solid var(--border);
}
.mover-expanded.open { display: block; }
.expanded-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.etab {
  padding: 14px 18px; font-size: 0.84rem; font-weight: 600;
  color: var(--muted2); cursor: pointer; border-bottom: 2px solid transparent;
  transition: all 0.2s; margin-bottom: -1px;
}
.etab.active { color: var(--primary3); border-color: var(--primary3); }
.etab-content { display: none; padding: 28px 24px; }
.etab-content.active { display: block; }

/* About Tab */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-left h5, .about-right h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.about-left p { font-size: 0.875rem; color: var(--muted2); line-height: 1.7; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.info-list li { display: flex; align-items: center; gap: 12px; font-size: 0.84rem; }
.info-list li i { color: var(--primary3); width: 16px; font-size: 0.8rem; }

/* Reviews Tab */
.reviews-summary { display: grid; grid-template-columns: 200px 1fr; gap: 32px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.overall-score { text-align: center; }
.big-score { font-family: 'Clash Display', sans-serif; font-size: 4rem; font-weight: 700; line-height: 1; }
.big-stars { font-size: 1.1rem; color: var(--amber); margin: 8px 0; }
.total-reviews { font-size: 0.8rem; color: var(--muted); }
.rating-breakdown { display: flex; flex-direction: column; gap: 8px; }
.rb-row { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; }
.rb-label { color: var(--muted2); width: 40px; text-align: right; }
.rb-bar { flex: 1; height: 6px; background: rgba(15,23,42,0.07); border-radius: 3px; }
.rb-fill { height: 100%; background: linear-gradient(90deg, var(--amber), #fbbf24); border-radius: 3px; }
.rb-count { color: var(--muted); width: 24px; }

.review-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.review-item {
  padding: 20px; background: rgba(15,23,42,0.025);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-ava {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; font-family: 'Clash Display', sans-serif;
}
.reviewer-details { }
.reviewer-name-r { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.reviewer-move { font-size: 0.75rem; color: var(--muted); }
.review-meta { text-align: right; }
.review-stars { color: var(--amber); font-size: 0.8rem; }
.review-date-r { font-size: 0.72rem; color: var(--muted); margin-top: 3px; }
.review-body { font-size: 0.875rem; color: var(--muted2); line-height: 1.7; margin-bottom: 10px; }
.review-cost { display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; padding: 4px 10px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); border-radius: 5px; color: var(--emerald); }

/* Submit Review */
.submit-review-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.submit-review-section h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; }
.star-picker { display: flex; gap: 8px; margin-bottom: 20px; }
.star-btn { font-size: 1.5rem; cursor: pointer; color: var(--border2); transition: all 0.15s; }
.star-btn.lit { color: var(--amber); }
.star-btn:hover { transform: scale(1.2); }
.review-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.rf-group { display: flex; flex-direction: column; gap: 6px; }
.rf-group label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.rf-group input, .rf-group textarea, .rf-group select {
  background: rgba(15,23,42,0.04); border: 1px solid var(--border2);
  border-radius: 8px; padding: 11px 14px; color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.875rem;
  outline: none; transition: border-color 0.2s; resize: vertical;
}
.rf-group input:focus, .rf-group textarea:focus { border-color: var(--primary2); }
.rf-group input::placeholder, .rf-group textarea::placeholder { color: var(--muted); }
.btn-submit-review {
  background: var(--primary); color: white; border: none;
  padding: 12px 28px; border-radius: 10px; font-size: 0.875rem;
  font-weight: 700; cursor: pointer; transition: all 0.2s;
  font-family: 'Clash Display', sans-serif;
}
.btn-submit-review:hover { background: #1d4ed8; }

/* Gallery Tab */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  background: var(--ink3); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; cursor: pointer; transition: all 0.3s;
  border: 1px solid var(--border);
}
.gallery-item:hover { transform: scale(1.03); border-color: var(--primary2); }

/* =========================================
   COST CALCULATOR SECTION
   ========================================= */
.calc-section { background: var(--ink2); border-top: 1px solid var(--border); }
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 56px; }

.calc-panel {
  background: var(--ink3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); overflow: hidden;
}
.calc-panel-header {
  padding: 20px 24px; background: rgba(37,99,235,0.08);
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px;
}
.calc-panel-header i { color: var(--primary3); }
.calc-panel-header h4 { font-size: 0.95rem; font-weight: 600; }
.calc-panel-body { padding: 28px; }

.form-field { margin-bottom: 22px; }
.field-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; margin-bottom: 8px; }
.field-input {
  width: 100%; padding: 12px 16px;
  background: rgba(15,23,42,0.04); border: 1px solid var(--border2);
  border-radius: 10px; color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.9rem; outline: none;
  transition: border-color 0.2s;
}
.field-input:focus { border-color: var(--primary2); }
.field-input option { background: var(--ink2); }

.range-slider-group { margin-bottom: 22px; }
.rs-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.rs-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; }
.rs-value { font-family: 'Clash Display', sans-serif; font-weight: 700; color: var(--primary3); font-size: 0.95rem; }
input[type=range] {
  width: 100%; -webkit-appearance: none; height: 4px;
  background: rgba(15,23,42,0.08); border-radius: 2px; outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  cursor: pointer; box-shadow: 0 0 0 4px rgba(37,99,235,0.2);
  transition: transform 0.15s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }

.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 22px; }
.size-tile {
  padding: 14px 8px; border-radius: 10px; text-align: center; cursor: pointer;
  background: rgba(15,23,42,0.03); border: 1px solid var(--border);
  transition: all 0.2s;
}
.size-tile:hover { border-color: rgba(37,99,235,0.4); }
.size-tile.sel { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.5); }
.size-tile-icon { font-size: 1.5rem; margin-bottom: 5px; }
.size-tile-lbl { font-size: 0.7rem; color: var(--muted2); font-weight: 500; }

.calc-result {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(37,99,235,0.25); border-radius: var(--radius-lg); padding: 28px;
  text-align: center;
}
.calc-result-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.calc-result-price {
  font-family: 'Clash Display', sans-serif; font-size: 2.8rem; font-weight: 700;
  background: linear-gradient(135deg, #f0f2f7, var(--primary3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.calc-result-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 24px; }
.cost-breakdown { margin-bottom: 24px; }
.cb-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 0.84rem;
}
.cb-row:last-child { border-bottom: none; }
.cb-row span:last-child { color: var(--primary3); font-weight: 600; font-family: 'Clash Display', sans-serif; }
.btn-get-estimates {
  width: 100%; background: var(--primary); color: white; border: none;
  padding: 14px; border-radius: 10px; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: 'Clash Display', sans-serif;
}
.btn-get-estimates:hover { background: #1d4ed8; }

.calc-text h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.4px; }
.calc-text p { font-size: 0.9rem; color: var(--muted2); line-height: 1.75; margin-bottom: 28px; }
.factors-list { display: flex; flex-direction: column; gap: 16px; }
.factor-item { display: flex; gap: 16px; align-items: flex-start; }
.factor-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.factor-text h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.factor-text p { font-size: 0.81rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews-showcase { padding: 96px 5%; }
.reviews-showcase-inner { max-width: 1280px; margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.review-card-g {
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px; transition: all 0.3s;
}
.review-card-g:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-3px); }
.rcg-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.rcg-reviewer { display: flex; align-items: center; gap: 12px; }
.rcg-ava {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; font-family: 'Clash Display', sans-serif;
}
.rcg-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.rcg-route { font-size: 0.75rem; color: var(--muted); }
.rcg-score { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--amber); }
.rcg-stars { font-size: 0.75rem; color: var(--amber); margin-bottom: 12px; }
.rcg-text { font-size: 0.86rem; color: var(--muted2); line-height: 1.7; margin-bottom: 14px; }
.rcg-mover { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: rgba(15,23,42,0.03); border: 1px solid var(--border); border-radius: 8px; }
.rcg-mover-logo {
  width: 26px; height: 26px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; font-family: 'Clash Display', sans-serif;
}
.rcg-mover-name { font-size: 0.78rem; color: var(--muted2); }
.rcg-mover-name strong { color: var(--text); }
.rcg-cost { margin-left: auto; font-size: 0.75rem; font-weight: 700; color: var(--emerald); font-family: 'Clash Display', sans-serif; }

/* =========================================
   FOR COMPANIES
   ========================================= */
.for-companies { background: var(--ink2); border-top: 1px solid var(--border); }
.companies-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 56px; }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit-card {
  background: var(--ink3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  transition: all 0.3s;
}
.benefit-card:hover { border-color: rgba(37,99,235,0.3); }
.benefit-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 14px;
}
.benefit-card h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.benefit-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

.pricing-card {
  background: var(--ink3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.plan-switcher { display: flex; background: rgba(15,23,42,0.04); border-radius: 10px; padding: 4px; margin-bottom: 28px; }
.ps-btn {
  flex: 1; padding: 8px; border-radius: 7px; text-align: center;
  font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--muted2);
}
.ps-btn.active { background: var(--primary); color: white; }

.plan-cards { display: flex; flex-direction: column; gap: 10px; }
.plan-card {
  padding: 16px 18px; border-radius: 10px;
  background: rgba(15,23,42,0.03); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; transition: all 0.2s;
}
.plan-card.selected { background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.4); }
.plan-card:hover:not(.selected) { border-color: rgba(15,23,42,0.15); }
.pc-left .pc-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.pc-left .pc-desc { font-size: 0.75rem; color: var(--muted); }
.pc-right { text-align: right; }
.pc-price { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 1.2rem; }
.pc-period { font-size: 0.7rem; color: var(--muted); font-family: 'Bricolage Grotesque', sans-serif; }
.hot-badge {
  background: var(--amber); color: #000; font-size: 0.62rem;
  padding: 2px 6px; border-radius: 3px; font-weight: 700; margin-left: 6px;
}

.btn-register-company {
  width: 100%; background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: white; border: none; padding: 15px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.2s;
  font-family: 'Clash Display', sans-serif; margin-top: 20px;
}
.btn-register-company:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(37,99,235,0.35); }

/* =========================================
   QUOTE MODAL (FULL SCREEN)
   ========================================= */
.modal-bg {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,23,42,0.45); backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-bg.open { display: flex; animation: fadeUp 0.25s ease; }
@keyframes fadeUp { from{opacity:0;transform:scale(0.97)} to{opacity:1;transform:scale(1)} }
.modal-box {
  background: var(--ink2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto; position: relative;
}
.modal-header {
  padding: 24px 28px 0; display: flex; align-items: flex-start; justify-content: space-between;
}
.modal-header h3 { font-size: 1.3rem; font-weight: 700; }
.modal-header p { font-size: 0.84rem; color: var(--muted2); margin-top: 4px; }
.modal-close-btn {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border2);
  background: rgba(15,23,42,0.05); color: var(--muted2); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  flex-shrink: 0; transition: all 0.2s;
}
.modal-close-btn:hover { background: rgba(15,23,42,0.1); color: var(--text); }
.modal-body { padding: 24px 28px 28px; }
.modal-progress {
  display: flex; align-items: center; gap: 0; margin-bottom: 28px;
}
.mp-step {
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; font-family: 'Clash Display', sans-serif;
  border: 2px solid var(--border2); color: var(--muted); transition: all 0.3s; flex-shrink: 0;
}
.mp-step.done { background: rgba(16,185,129,0.2); border-color: var(--emerald); color: var(--emerald); }
.mp-step.active { background: var(--primary); border-color: var(--primary); color: white; }
.mp-line { flex: 1; height: 2px; background: var(--border2); transition: background 0.3s; }
.mp-line.done { background: var(--emerald); }
.modal-step { display: none; }
.modal-step.active { display: block; animation: fadeUp 0.2s ease; }
.modal-field { margin-bottom: 16px; }
.modal-field label { display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; margin-bottom: 7px; }
.mf-input-wrap { position: relative; }
.mf-input-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 0.85rem; }
.modal-field input, .modal-field select {
  width: 100%; padding: 13px 16px 13px 40px;
  background: rgba(15,23,42,0.04); border: 1px solid var(--border2);
  border-radius: 10px; color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.9rem; outline: none;
  transition: border-color 0.2s;
}
.modal-field input:focus, .modal-field select:focus { border-color: var(--primary2); background: rgba(37,99,235,0.06); }
.modal-field input::placeholder { color: var(--muted); }
.modal-field select option { background: var(--ink2); }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.msz {
  padding: 14px 8px; text-align: center; border-radius: 10px; cursor: pointer;
  background: rgba(15,23,42,0.03); border: 1px solid var(--border);
  transition: all 0.2s;
}
.msz:hover { border-color: rgba(37,99,235,0.4); }
.msz.sel { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.5); }
.msz-icon { font-size: 1.4rem; margin-bottom: 4px; }
.msz-label { font-size: 0.7rem; color: var(--muted2); }
.btn-modal-next {
  width: 100%; background: var(--primary); color: white; border: none;
  padding: 14px; border-radius: 10px; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: 'Clash Display', sans-serif; margin-top: 20px;
}
.btn-modal-next:hover { background: #1d4ed8; }
.btn-modal-back {
  width: 100%; background: rgba(15,23,42,0.04); border: 1px solid var(--border2);
  color: var(--muted2); padding: 12px; border-radius: 10px; font-size: 0.875rem;
  cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.btn-modal-back:hover { background: rgba(15,23,42,0.08); color: var(--text); }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.cm-btn {
  padding: 12px; border-radius: 10px; text-align: center; cursor: pointer;
  background: rgba(15,23,42,0.03); border: 1px solid var(--border);
  transition: all 0.2s; font-size: 0.78rem; color: var(--muted2);
}
.cm-btn.sel { background: rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.5); color: var(--primary3); }
.cm-btn i { display: block; font-size: 1.2rem; margin-bottom: 5px; }
.modal-trust { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; font-size: 0.75rem; color: var(--muted); }
.success-panel { text-align: center; padding: 20px 0; }
.success-panel .sp-icon { font-size: 3.5rem; margin-bottom: 16px; }
.success-panel h3 { font-size: 1.4rem; margin-bottom: 10px; }
.success-panel p { color: var(--muted2); font-size: 0.875rem; margin-bottom: 24px; line-height: 1.65; }
.quote-companies { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.qc-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(15,23,42,0.03); border: 1px solid var(--border); border-radius: 10px; }
.qc-logo { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; font-family: 'Clash Display', sans-serif; }
.qc-name { font-size: 0.85rem; font-weight: 600; flex: 1; }
.qc-status { font-size: 0.72rem; color: var(--emerald); }

/* =========================================
   COMPANY REGISTER MODAL
   ========================================= */
.comp-modal-box {
  background: var(--ink2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); width: 100%; max-width: 580px;
  max-height: 90vh; overflow-y: auto; position: relative;
}
.comp-modal-top { padding: 28px; border-bottom: 1px solid var(--border); }
.comp-modal-top h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.comp-modal-top p { font-size: 0.84rem; color: var(--muted2); }
.comp-modal-body { padding: 28px; }
.logo-uploader {
  display: flex; align-items: center; gap: 18px; margin-bottom: 22px;
  padding: 16px; background: rgba(15,23,42,0.03); border: 1px dashed var(--border2);
  border-radius: var(--radius); cursor: pointer; transition: border-color 0.2s;
}
.logo-uploader:hover { border-color: rgba(37,99,235,0.5); }
.lu-preview {
  width: 60px; height: 60px; border-radius: 12px; background: var(--ink3);
  border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; overflow: hidden;
}
.lu-preview img { width: 100%; height: 100%; object-fit: cover; }
.lu-text h5 { font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; }
.lu-text p { font-size: 0.78rem; color: var(--muted); }
.lu-btn {
  margin-left: auto; background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.4);
  color: var(--primary3); padding: 8px 16px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.comp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.comp-fg { display: flex; flex-direction: column; gap: 6px; }
.comp-fg label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.comp-fg input, .comp-fg select, .comp-fg textarea {
  background: rgba(15,23,42,0.04); border: 1px solid var(--border2);
  border-radius: 8px; padding: 11px 14px; color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.875rem; outline: none;
  transition: border-color 0.2s; resize: vertical;
}
.comp-fg input:focus, .comp-fg select:focus, .comp-fg textarea:focus { border-color: var(--primary2); }
.comp-fg input::placeholder { color: var(--muted); }
.comp-fg select option { background: var(--ink2); }
.service-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.svc-cb {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  background: rgba(15,23,42,0.03); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; font-size: 0.82rem; color: var(--muted2);
  transition: all 0.2s;
}
.svc-cb.checked { background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.4); color: var(--primary3); }
.svc-cb i { font-size: 0.75rem; }
.comp-submit-btn {
  width: 100%; background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: white; border: none; padding: 15px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.2s;
  font-family: 'Clash Display', sans-serif; margin-top: 8px;
}
.comp-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(37,99,235,0.35); }

/* =========================================
   TOAST
   ========================================= */
#toast-stack { position: fixed; bottom: 24px; right: 24px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; }
.toast-item {
  background: var(--ink2); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 12px;
  min-width: 300px; max-width: 360px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast-item.show { transform: translateX(0); }
.toast-icon-box { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.toast-text-box .toast-title { font-weight: 700; font-size: 0.88rem; margin-bottom: 2px; }
.toast-text-box .toast-msg { font-size: 0.78rem; color: var(--muted2); line-height: 1.4; }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--ink2); border-top: 1px solid var(--border);
  padding: 60px 5% 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-col .brand { margin-bottom: 16px; }
.footer-brand-col p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(15,23,42,0.05);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--muted2); font-size: 0.85rem; cursor: pointer; transition: all 0.2s;
}
.social-btn:hover { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.4); color: var(--primary3); }
.footer-col h6 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); font-weight: 700; margin-bottom: 16px; font-family: 'Clash Display', sans-serif; }
.footer-col a { display: block; color: rgba(15,23,42,0.5); font-size: 0.84rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--muted); flex-wrap: wrap; gap: 12px; }
.footer-badges { display: flex; gap: 14px; }
.fbadge { display: flex; align-items: center; gap: 5px; }
.fbadge i { color: var(--emerald); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hiw-grid { grid-template-columns: repeat(2,1fr); }
  .mover-listing-main { grid-template-columns: 70px 1fr; }
  .mover-listing-right { display: none; }
  .calc-layout, .companies-layout { grid-template-columns: 1fr; }
  .about-grid, .reviews-summary { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero-search { flex-direction: column; padding: 16px; border-radius: 14px; }
  .search-divider { display: none; }
  .hero-stats-row { flex-wrap: wrap; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .comp-form-grid, .modal-row, .review-form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
/* Light theme final polish */
.movepro-plugin {
  background: #ffffff;
  color: var(--text);
}
.movepro-plugin #navbar {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.movepro-plugin .hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.movepro-plugin .hero-noise { opacity: 0.012; }
.movepro-plugin .hero-orb-1 {
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
}
.movepro-plugin .hero-orb-2 {
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
}
.movepro-plugin .mover-listing,
.movepro-plugin .review-card-g,
.movepro-plugin .calc-panel,
.movepro-plugin .pricing-card,
.movepro-plugin .modal-box,
.movepro-plugin .comp-modal-box,
.movepro-plugin .toast-item {
  box-shadow: 0 12px 35px rgba(15,23,42,0.08);
}
.movepro-plugin .press-logo { color: rgba(15,23,42,0.35); }
.movepro-plugin .press-logo:hover { color: rgba(15,23,42,0.65); }
.movepro-plugin footer { background: #f8fafc; }
.movepro-plugin .field-input,
.movepro-plugin #live-search,
.movepro-plugin .modal-field input,
.movepro-plugin .modal-field select,
.movepro-plugin .comp-fg input,
.movepro-plugin .comp-fg select,
.movepro-plugin .comp-fg textarea,
.movepro-plugin .rf-group input,
.movepro-plugin .rf-group textarea,
.movepro-plugin .rf-group select {
  background: #ffffff;
}
.movepro-plugin .field-input option,
.movepro-plugin .modal-field select option,
.movepro-plugin .comp-fg select option {
  background: #ffffff;
  color: #0f172a;
}
.movepro-plugin .btn-search-main,
.movepro-plugin .btn-nav-primary,
.movepro-plugin .btn-get-quotes,
.movepro-plugin .btn-submit-review,
.movepro-plugin .btn-modal-next,
.movepro-plugin .btn-get-estimates {
  color: #ffffff;
}
