/*
Theme Name: MoveWise
Author: 90 Day Marketing
Author URI: https://90day.marketing/
Description: Custom wordpress theme for MoveWise.
Version: 1.0 */


/************** SLIDING MENU **************/
.menu-mobile-menu-container > ul {
	padding-left: 0;
}
.menu-mobile-menu-container > ul > li {
	list-style-type: none;
	margin-bottom: 15px;
	text-align: center;
}
.menu-mobile-menu-container ul > li > a {
	border-bottom: 2px solid #FFF;
	color: #FFF;
}
#slidingMenu .navbar-toggler {
	background: transparent;
	border: 0;
}
#slidingMenu .navbar-toggler i {
	color: #711AFF;
}
#slidingMenu .navbar-toggler {
	margin-top: 15px;
}
#slidingMenu .navbar-toggler:hover,
#slidingMenu .navbar-toggler:focus,
#slidingMenu .navbar-toggler:target {
	cursor: pointer;
}
#slidingMenu .navbar-toggler > div {
	background-color: #FFF;
	height: 3px;
	margin: 6px 0;
	transition: 0.4s;
	width: 30px;
}
#slidingMenu .navbar-toggler .bar1 {
  transform: translate(0, 6px) rotate(-45deg);
}
#slidingMenu .navbar-toggler .bar2 {
	opacity: 0;
}
#slidingMenu .navbar-toggler .bar3 {
  	transform: translate(0, -12px) rotate(45deg);
}

.dropdown-menu.show {
    display: block;
}
.navbar-nav .dropdown-menu {
    position: static;
}
.dropdown-menu {
	background-color: transparent;
	color: #FFF;
	display: none;
	list-style: none;
	min-width: 10rem;
	padding: 15px 0 8px 0;
	position: static;
	text-align: center;
}
.dropdown-menu li {
	margin-bottom: 12px;
}
.dropdown-menu li:last-of-type {
	margin-bottom: 0;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
/*********** end of SITE HEADER & MAIN MENU ***********/

/************** 404 PAGE *****************/
.page-404 header.text-center p > a:first-of-type {
	margin-right: 15px;
}
/************** end of 404 PAGE *****************/

#step2.fade:not(.show) {
	opacity: 1 !important;
}

/*** Puts Address AutoFill Above Modal ***/
.pac-container {
    background-color: #FFF;
    z-index: 20;
    position: fixed;
    display: inline-block;
    float: left;
}
.modal {
    z-index: 20;   
}
.modal-backdrop {
    z-index: 10;        
}
/*** end of Puts Address AutoFill Above Modal ***/

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

:root {
	--ink:       #0f1117;
	--paper:     #f5f2ec;
	--cream:     #ede9e0;
	--rust:      #c94f2c;
	--rust-dark: #a83d1f;
	--sage:      #3d5a47;
	--mist:      #8fa89a;
	--rule:      rgba(15,17,23,0.12);
	--serif:     'Playfair Display', Georgia, serif;
	--sans:      'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ── MASTHEAD ── */
.masthead {
	border-bottom: 2px solid var(--ink);
	padding: 0 5vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
	background: var(--paper);
	position: sticky;
	top: 0;
	z-index: 100;
}
.logo {
	font-family: var(--serif);
	font-size: 1.6rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--ink);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}
.logo-dot {
	width: 10px; height: 10px;
	background: var(--rust);
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 2px;
}
.nav {
	display: flex;
	gap: 32px;
	list-style: none;
	align-items: center;
}
.nav a {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.7;
	transition: opacity 0.2s;
}
.nav a:hover { opacity: 1; }
.nav a:focus {
    box-shadow: none !important;
	outline: none !important;
}
.nav .cta-nav a {
	background: var(--ink);
	color: var(--paper);
	padding: 10px 20px;
	border-radius: 2px;
	opacity: 1;
	transition: background 0.2s;
}
.nav .cta-nav a:hover { background: var(--rust); }

/* ── HERO ── */
.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: calc(100vh - 68px);
	border-bottom: 2px solid var(--ink);
}
.hero-left {
	border-right: 2px solid var(--ink);
	padding: 8vw 6vw 6vw 5vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.hero-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rust);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.hero-eyebrow::before {
	content: '';
	display: block;
	width: 28px;
	height: 2px;
	background: var(--rust);
}
.hero-headline {
	font-family: var(--serif);
	font-size: clamp(2.8rem, 5.5vw, 5.5rem);
	font-weight: 900;
	line-height: 1.0;
	letter-spacing: -0.03em;
	color: var(--ink);
	margin-bottom: 28px;
}
.hero-headline em {
	font-style: italic;
	color: var(--rust);
}
.hero-sub {
	font-size: 1.05rem;
	font-weight: 300;
	color: var(--ink);
	opacity: 0.7;
	max-width: 440px;
	line-height: 1.7;
	margin-bottom: 40px;
}
.trust-row {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
}
.trust-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--ink);
	opacity: 0.6;
}
.trust-badge svg { flex-shrink: 0; }

/* ── QUOTE FORM ── */
.hero-right {
	background: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6vw 5vw;
	position: relative;
	overflow: hidden;
}
.hero-right::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.form-card {
	background: var(--paper);
	border-radius: 4px;
	padding: 40px 36px;
	width: 100%;
	max-width: 440px;
	position: relative;
	box-shadow: 8px 8px 0 var(--rust);
}
.form-title {
	font-family: var(--serif);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 6px;
}
.form-sub {
	font-size: 0.85rem;
	color: var(--ink);
	opacity: 0.55;
	margin-bottom: 28px;
}
.progress-bar {
	display: flex;
	gap: 6px;
	margin-bottom: 28px;
}
.progress-seg {
	height: 3px;
	flex: 1;
	background: var(--cream);
	border-radius: 2px;
	transition: background 0.3s;
}
.progress-seg.active { background: var(--rust); }

.form-step { display: none; }
.form-step.visible { display: block; }

.field-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.field-group.single { grid-template-columns: 1fr; }

.field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}
.field label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ink);
	opacity: 0.55;
}
.field input, .field select {
	border: 1.5px solid rgba(15,17,23,0.2);
	border-radius: 2px;
	padding: 12px 14px;
	font-family: var(--sans);
	font-size: 0.95rem;
	color: var(--ink);
	background: white;
	transition: border-color 0.2s, box-shadow 0.2s;
	appearance: none;
	-webkit-appearance: none;
	outline: none;
}
.field input:focus, .field select:focus {
	border-color: var(--rust);
	box-shadow: 0 0 0 3px rgba(201,79,44,0.12);
}

.btn-primary {
	width: 100%;
	background: var(--rust);
	color: white;
	border: none;
	border-radius: 2px;
	padding: 15px 20px;
	font-family: var(--sans);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
	margin-top: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.form-disclaimer {
	font-size: 0.72rem;
	color: var(--ink);
	opacity: 0.4;
	text-align: center;
	margin-top: 14px;
	line-height: 1.5;
}

/* ── STATS STRIP ── */
.stats-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 2px solid var(--ink);
}
.stat-cell {
	padding: 36px 40px;
	border-right: 1px solid var(--rule);
	text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
	font-family: var(--serif);
	font-size: 2.8rem;
	font-weight: 900;
	color: var(--ink);
	line-height: 1;
	letter-spacing: -0.04em;
}
.stat-num span { color: var(--rust); }
.stat-label {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--ink);
	opacity: 0.5;
	margin-top: 6px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* ── HOW IT WORKS ── */
.section { padding: 7vw 5vw; }
.section-header {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin-bottom: 56px;
	border-bottom: 1px solid var(--rule);
	padding-bottom: 20px;
}
.section-num {
	font-family: var(--serif);
	font-size: 4rem;
	font-weight: 900;
	color: var(--cream);
	line-height: 1;
	letter-spacing: -0.05em;
}
.section-title {
	font-family: var(--serif);
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -0.02em;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.step-card {
	padding: 40px 36px;
	border-right: 1px solid var(--rule);
	position: relative;
}
.step-card:last-child { border-right: none; }
.step-num-badge {
	width: 44px; height: 44px;
	background: var(--ink);
	color: var(--paper);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 24px;
	flex-shrink: 0;
}
.step-icon {
	width: 48px; height: 48px;
	background: var(--cream);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.step-heading {
	font-family: var(--serif);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--ink);
}
.step-text {
	font-size: 0.9rem;
	color: var(--ink);
	opacity: 0.6;
	line-height: 1.7;
}

/* ── WHY TRUST US ── */
.trust-section {
	background: var(--ink);
	color: var(--paper);
	padding: 7vw 5vw;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7vw;
	align-items: center;
	border-top: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
}
.trust-left .section-title { color: var(--paper); }
.trust-left .section-num { color: rgba(255,255,255,0.08); }
.trust-intro {
	font-size: 1rem;
	opacity: 0.6;
	line-height: 1.8;
	margin-top: 20px;
	max-width: 400px;
}
.trust-features {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.trust-feature {
	padding: 24px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.trust-feature:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.feature-icon {
	width: 40px; height: 40px;
	background: var(--rust);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.feature-title {
	font-family: var(--serif);
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--paper);
}
.feature-text {
	font-size: 0.85rem;
	opacity: 0.55;
	line-height: 1.65;
}

/* ── CONTENT GRID ── */
.content-section {
	padding: 7vw 5vw;
	border-bottom: 2px solid var(--ink);
}
.article-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 0;
	border: 1px solid var(--rule);
}
.article-card {
	padding: 32px 28px;
	border-right: 1px solid var(--rule);
	position: relative;
	transition: background 0.2s;
	cursor: pointer;
}
.article-card:last-child { border-right: none; }
.article-card:hover { background: var(--cream); }
.article-card.featured { padding: 40px 36px; }
.article-tag {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rust);
	margin-bottom: 12px;
}
.article-title {
	font-family: var(--serif);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--ink);
	margin-bottom: 12px;
}
.article-card.featured .article-title { font-size: 1.8rem; }
.article-excerpt {
	font-size: 0.85rem;
	opacity: 0.6;
	line-height: 1.65;
	margin-bottom: 20px;
}
.article-meta {
	font-size: 0.75rem;
	opacity: 0.4;
	font-weight: 500;
}
.article-arrow {
	position: absolute;
	bottom: 28px;
	right: 28px;
	width: 32px; height: 32px;
	background: var(--ink);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ── CTA BANNER ── */
.cta-banner {
	background: var(--rust);
	padding: 6vw 5vw;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	border-bottom: 2px solid var(--ink);
}
.cta-banner-title {
	font-family: var(--serif);
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 900;
	color: white;
	line-height: 1.1;
	letter-spacing: -0.03em;
}
.cta-banner-sub {
	color: rgba(255,255,255,0.7);
	font-size: 1rem;
	margin-top: 10px;
}
.btn-white {
	background: white;
	color: var(--rust);
	border: none;
	padding: 18px 36px;
	font-family: var(--sans);
	font-size: 1rem;
	font-weight: 700;
	border-radius: 2px;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.15s, box-shadow 0.15s;
	box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 6px 6px 0 rgba(0,0,0,0.25); }

/* ── FOOTER ── */
.footer {
	padding: 5vw 5vw 3vw;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	border-bottom: 2px solid var(--ink);
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 16px; display: inline-flex; }
.footer-desc {
	font-size: 0.85rem;
	opacity: 0.55;
	line-height: 1.7;
	max-width: 260px;
}
.footer-col h4 {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
	font-size: 0.875rem;
	color: var(--ink);
	opacity: 0.55;
	text-decoration: none;
	transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-bottom {
	padding: 20px 5vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-bottom p {
	font-size: 0.78rem;
	opacity: 0.4;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero-headline { animation: fadeUp 0.6s ease both; animation-delay: 0.22s; }
.hero-sub      { animation: fadeUp 0.6s ease both; animation-delay: 0.34s; }
.trust-row     { animation: fadeUp 0.6s ease both; animation-delay: 0.46s; }
.form-card     { animation: fadeUp 0.7s ease both; animation-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
.hero { grid-template-columns: 1fr; }
.hero-left { border-right: none; border-bottom: 2px solid var(--ink); padding: 10vw 6vw; }
.hero-right { padding: 8vw 6vw; }
.stats-strip { grid-template-columns: repeat(2, 1fr); }
.steps-grid { grid-template-columns: 1fr; }
.step-card { border-right: none; border-bottom: 1px solid var(--rule); }
.trust-section { grid-template-columns: 1fr; }
.article-grid { grid-template-columns: 1fr; }
.article-card { border-right: none; border-bottom: 1px solid var(--rule); }
.cta-banner { grid-template-columns: 1fr; }
.footer { grid-template-columns: 1fr 1fr; }
.nav { display: none; }
}