/* ==========================================================================
   CONTACT.CSS — The Law Offices of Jimmy Cha, APC.
   Contact / Free Case Evaluation (contact.php). Loaded on the contact page.
   01 Hero · 02 Three-Path Contact Block · 03 Office Location · 04 What to Expect
   ========================================================================== */

@keyframes jcFadeUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   01 — HERO
   ========================================================================== */
.contact-hero {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	border-bottom: 1px solid var(--crimson-dim);
}
.contact-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
	padding-block: 92px 72px;
}
.contact-hero-title {
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 700;
	color: var(--warm-white);
	line-height: 1.08;
	letter-spacing: -0.4px;
	margin-bottom: 18px;
	animation: jcFadeUp 0.8s ease both;
}
.contact-hero-title em {
	font-style: italic;
	background: var(--grad-crimson);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contact-hero-sub {
	font-size: clamp(16px, 2vw, 19px);
	color: var(--silver-light);
	max-width: 620px;
	margin: 0 auto 22px;
	animation: jcFadeUp 0.8s ease 0.14s both;
}
.contact-hero .reassurance-line {
	color: var(--gold);
	animation: jcFadeUp 0.8s ease 0.26s both;
}

/* ==========================================================================
   02 — THREE-PATH CONTACT BLOCK (equal visual weight)
   ========================================================================== */
.contact-paths {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 24px;
	margin-top: 14px;
	align-items: start;
}
/* Left column — Call + Text stacked so the height balances the tall form */
.contact-paths-direct {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.contact-path {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid transparent;
	border-radius: var(--radius-lg);
	padding: 34px;
	background:
		linear-gradient(160deg, #1C1C26, #141419) padding-box,
		linear-gradient(160deg, rgba(166, 24, 44, 0.22), rgba(255, 255, 255, 0.04)) border-box;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-path:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}
.contact-path-icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 15px;
	font-size: 23px;
	color: var(--crimson-light);
	background: rgba(166, 24, 44, 0.12);
	border: 1px solid rgba(166, 24, 44, 0.25);
	margin-bottom: 20px;
}
.contact-path-label {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--crimson);
	margin-bottom: 12px;
}
.contact-path-number {
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 600;
	color: var(--warm-white);
	margin-bottom: 14px;
	letter-spacing: 0.5px;
}
.contact-path-number:hover {
	color: var(--crimson-light);
}
.contact-path-body {
	font-size: 14.5px;
	color: var(--silver-light);
	line-height: 1.65;
	margin-bottom: 18px;
}
.contact-path-hint {
	font-size: 13px;
	font-style: italic;
	color: var(--silver);
	line-height: 1.55;
	padding: 12px 14px;
	border-left: 2px solid var(--gold);
	background: var(--gold-dim);
	border-radius: 0 6px 6px 0;
	margin-bottom: 18px;
}
.contact-path-hint i {
	color: var(--gold);
	margin-right: 5px;
}
.contact-path .btn {
	width: 100%;
	margin-top: auto;
}
.contact-path-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--gold);
	margin-top: 14px;
}
/* Form column */
.contact-path--form .form-placeholder {
	max-width: none;
	width: 100%;
	margin: 0 0 18px;
	padding: 36px 20px;
}
/* GHL form embed */
.contact-path--form iframe {
	width: 100%;
	min-height: 680px;
	border: none;
	border-radius: 8px;
	margin-bottom: 18px;
}
.contact-path-note {
	font-size: 12.5px;
	color: var(--gray-300);
	line-height: 1.55;
}

/* ==========================================================================
   03 — OFFICE LOCATION & HOURS
   ========================================================================== */
.contact-office {
	background: var(--charcoal);
}
.office-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 40px;
	align-items: stretch;
}
.office-info {
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.office-info-item {
	display: flex;
	gap: 16px;
}
.office-info-icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	font-size: 18px;
	color: var(--gold);
	background: var(--gold-dim);
	border: 1px solid rgba(184, 148, 94, 0.3);
}
.office-info-label {
	display: block;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--crimson);
	margin-bottom: 5px;
}
.office-info-item p {
	font-size: 15px;
	color: var(--silver-light);
	line-height: 1.6;
}
.office-info-item a {
	color: var(--crimson-light);
	font-family: var(--font-mono);
}
.office-info-item strong {
	color: var(--gold);
}
.office-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(184, 148, 94, 0.3);
	box-shadow: var(--shadow-md);
	min-height: 360px;
}
.office-map iframe {
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
	filter: grayscale(0.5) contrast(1.05) brightness(0.92);
}

/* ==========================================================================
   04 — WHAT TO EXPECT (sticky intro + vertical numbered stepper)
   ========================================================================== */
.expect-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 56px;
	align-items: start;
}
.expect-intro {
	position: sticky;
	top: 104px;
}
.expect-intro .section-title {
	margin-bottom: 18px;
}
.expect-intro .section-intro {
	margin-bottom: 0;
}
.expect-intro::after {
	content: '';
	display: block;
	width: 56px;
	height: 3px;
	margin-top: 24px;
	background: var(--grad-crimson);
	border-radius: 4px;
}
.expect-steps {
	position: relative;
	padding-left: 66px;
}
.expect-steps::before {
	content: '';
	position: absolute;
	left: 22px;
	top: 12px;
	bottom: 12px;
	width: 2px;
	background: linear-gradient(180deg, var(--crimson) 0%, rgba(184, 148, 94, 0.35) 100%);
}
.expect-step {
	position: relative;
	padding-bottom: 30px;
}
.expect-step:last-child {
	padding-bottom: 0;
}
.expect-step-num {
	position: absolute;
	left: -66px;
	top: -4px;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
	font-size: 17px;
	color: var(--crimson-light);
	background: var(--ink);
	border: 1px solid var(--crimson-dim);
	box-shadow: 0 0 0 6px var(--ink);
}
.expect-step-title {
	font-size: 20px;
	color: var(--warm-white);
	margin-bottom: 8px;
}
.expect-step p {
	font-size: 15px;
	color: var(--silver-light);
	line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
	.contact-paths {
		grid-template-columns: 1fr;
	}
	.contact-path .btn {
		margin-top: 8px;
	}
	.office-layout {
		grid-template-columns: 1fr;
	}
	.expect-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.expect-intro {
		position: static;
	}
	.expect-intro::after {
		margin-top: 18px;
	}
}

@media (max-width: 680px) {
	.contact-path {
		padding: 26px;
	}
	.expect-steps {
		padding-left: 56px;
	}
	.expect-steps::before {
		left: 18px;
	}
	.expect-step-num {
		left: -56px;
		width: 40px;
		height: 40px;
		font-size: 15px;
	}
}
