/* Moving Merchant - Master Stylesheet Phase 3 */
:root {
  --navy: #0d2137;
  --navy-mid: #1a3a5c;
  --teal: #2596be;
  --teal-light: #3aabcf;
  --green: #27ae60;
  --orange: #e67e22;
  --gold: #f39c12;
  --light-bg: #f4f7fb;
  --white: #ffffff;
  --text: #2c3e50;
  --text-light: #5d6d7e;
  --border: #e1e8ef;
  --shadow: 0 4px 20px rgba(13,33,55,0.10);
  --shadow-lg: 0 8px 40px rgba(13,33,55,0.15);
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-light); }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo span { color: var(--teal); }

.main-nav { display: flex; gap: 6px; align-items: center; }

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-link .arrow { font-size: 0.7rem; transition: transform 0.2s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  border: 1px solid var(--border);
  z-index: 200;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover {
  background: var(--light-bg);
  color: var(--teal);
  padding-left: 22px;
}

.header-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.header-cta:hover { background: var(--teal-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  background: var(--navy-mid);
  padding: 12px 0;
}

.mobile-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a:hover { color: var(--teal); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e4d7a 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,176,155,0.12) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,176,155,0.15);
  border: 1px solid rgba(0,176,155,0.35);
  color: var(--teal-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal-light);
}

.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ── QUOTE CARD ── */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.quote-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.service-tab {
  padding: 10px 6px;
  border-radius: 8px;
  border: 2px solid var(--border);
  text-align: center;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.2s;
}

.service-tab:hover, .service-tab.active {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0,176,155,0.06);
}

.service-tab .tab-icon { font-size: 1.2rem; display: block; margin-bottom: 4px; }

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: var(--font);
  transition: border 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  width: 100%;
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,176,155,0.35);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover { background: var(--navy-mid); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

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

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.quote-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-item .check { color: var(--teal); font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light-bg); }
.section-teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); }

.section-header { text-align: center; margin-bottom: 52px; }

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-header.dark h2 { color: var(--white); }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header.dark p { color: rgba(255,255,255,0.7); }

.section-tag {
  display: inline-block;
  background: rgba(0,176,155,0.12);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,176,155,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 16px;
}

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

/* ── SERVICE GRID ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

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

.service-card-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 28px 24px;
  text-align: center;
}

.service-card-head .icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.service-card-head h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex: 1;
}

.service-card-body ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-card-body ul li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-body ul li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1.1;
}

.stat-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  display: block;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(0,176,155,0.35);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step p { font-size: 0.875rem; color: var(--text-light); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }

.review-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.review-author-info span {
  font-size: 0.78rem;
  color: var(--teal);
}

.review-saving {
  background: rgba(0,176,155,0.08);
  border: 1px solid rgba(0,176,155,0.2);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 12px;
  display: inline-block;
}

/* ── GUIDE CARDS ── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.25s;
}

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

.guide-card-header {
  padding: 24px;
  background: var(--light-bg);
}

.guide-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.guide-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.guide-card-body {
  padding: 20px 24px;
}

.guide-card-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.guide-card-body .read-more {
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #00897b 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
}

.btn-white:hover { background: var(--light-bg); }

.btn-white-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-white-outline:hover { background: rgba(255,255,255,0.15); }

/* ── PAGE HERO (service pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.page-hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,33,55,0.82) 0%, rgba(26,58,92,0.75) 100%);
}
.page-hero > .container,
.page-hero > *:not(.page-hero-video-bg) {
  position: relative;
  z-index: 1;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--teal-light); }

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-checklist { list-style: none; }
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  padding: 5px 0;
}
.hero-checklist li::before { content: '✓'; color: var(--teal-light); font-weight: 700; }

/* ── LOCATION GRID ── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.location-link {
  display: block;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  transition: all 0.2s;
}

.location-link:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ── COST TABLE ── */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.cost-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.875rem;
}

.cost-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.cost-table tbody tr:last-child td { border-bottom: none; }

.cost-table tbody tr:hover { background: var(--light-bg); }

.cost-table tbody tr:nth-child(even) { background: rgba(244,247,251,0.6); }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--light-bg); }

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,176,155,0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 4px 22px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── CONTENT PAGE ── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}

.content-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 36px 0 14px;
}

.content-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}

.content-body p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-body ul, .content-body ol {
  margin: 12px 0 20px 20px;
  line-height: 1.75;
  color: var(--text);
}

.content-body li { margin-bottom: 6px; }

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.content-body table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}

.content-body table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
}

.content-body table tr:last-child td { border-bottom: none; }
.content-body table tr:hover { background: var(--light-bg); }

.sidebar { position: sticky; top: 84px; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.sidebar-widget h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal);
}

.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
  color: var(--text);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.sidebar-widget ul li a:hover { color: var(--teal); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.sidebar-cta h3 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 18px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 280px;
}

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

.footer-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── HIGHLIGHTS / CALLOUTS ── */
.highlight-box {
  background: rgba(0,176,155,0.08);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.highlight-box p {
  color: var(--navy);
  font-size: 0.9rem;
  margin: 0;
}

/* ── BADGES / PILLS ── */
.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pill-teal { background: rgba(0,176,155,0.1); color: var(--teal); }
.pill-navy { background: rgba(13,33,55,0.08); color: var(--navy); }
.pill-orange { background: rgba(230,126,34,0.1); color: var(--orange); }
.pill-green { background: rgba(39,174,96,0.1); color: var(--green); }

/* ── CALCULATOR ── */
.calculator-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  margin: 32px 0;
}

.calculator-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.calc-result {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
  color: var(--white);
}

.calc-result .amount {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
}

.calc-result .label {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ── MISC UTILITIES ── */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.font-bold { font-weight: 700; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .quote-card { max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .location-grid { grid-template-columns: repeat(4, 1fr); }
  .page-hero-inner { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .calc-grid { grid-template-columns: 1fr; }
  .service-tabs { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 56px 0 40px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; align-items: stretch; }
}
