/* /assets/css/about-contact.css */

/* ============================================================
   PAGE HERO (compact variant of homepage hero)
   ============================================================ */
.page-hero {
	position: relative;
	background: #4a020d;
	color: white;
	padding: 64px 16px 64px;
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.page-hero-glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			560px 360px at 85% -10%,
			rgba(169, 16, 36, 0.15),
			transparent 60%
		),
		radial-gradient(
			420px 300px at 0% 20%,
			rgba(229, 181, 94, 0.1),
			transparent 55%
		);
	pointer-events: none;
}

.page-hero .container {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.page-hero-eyebrow {
	background: rgba(255, 255, 255, 0.08);
	color: #d8c8f7;
	border: 1px solid rgba(183, 148, 246, 0.35);
}

.page-hero h1 {
	font-family: var(--font-display);
	font-size: 1.9rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 16px 0 14px;
	letter-spacing: -0.01em;
}

.page-hero-sub {
	opacity: 0.75;
	line-height: 1.8;
	font-size: 0.96rem;
}

@media (min-width: 768px) {
	.page-hero {
		padding: 88px 16px 76px;
	}
	.page-hero h1 {
		font-size: 2.6rem;
	}
	.page-hero-sub {
		font-size: 1.05rem;
	}
}

/* ============================================================
   STATS STRIP (About page)
   ============================================================ */
.stats-strip {
	background: var(--surface);
	border-bottom: 1px solid var(--border);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--border);
	transform: translateY(-28px);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.stat-card {
	background: var(--surface);
	padding: 22px 12px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.stat-card strong {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--brand);
}
.stat-card span {
	font-size: 0.78rem;
	color: var(--ink-faint);
	font-weight: 600;
}

@media (min-width: 640px) {
	.stats-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
	padding: 8px 0 56px;
	background: var(--bg);
}

.story-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}

.story-image {
	display: flex;
	justify-content: center;
}
.story-image img {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
}

.story-text h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 12px 0 16px;
	color: var(--ink);
	letter-spacing: -0.01em;
}
.story-text p {
	color: var(--ink-soft);
	font-size: 0.94rem;
	line-height: 1.85;
	margin-bottom: 14px;
}

@media (min-width: 768px) {
	.story-grid {
		grid-template-columns: 0.8fr 1.2fr;
	}
	.story-text h2 {
		font-size: 1.9rem;
	}
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.how-section {
	padding: 56px 0;
	background: var(--surface);
}

.steps-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 920px;
	margin: 0 auto;
}

.step-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 26px 22px;
	position: relative;
	transition:
		transform 0.25s var(--ease),
		box-shadow 0.25s var(--ease);
}
.step-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.step-number {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--brand-100);
	margin-bottom: 8px;
}
.step-card h3 {
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
}
.step-card p {
	font-size: 0.88rem;
	color: var(--ink-soft);
	line-height: 1.7;
}

@media (min-width: 768px) {
	.steps-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ============================================================
   VALUES
   ============================================================ */
.values-section {
	padding: 56px 0 64px;
	background: var(--bg);
}

.values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	max-width: 960px;
	margin: 0 auto;
}

.value-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 26px 22px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.25s var(--ease),
		box-shadow 0.25s var(--ease);
}
.value-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.value-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--brand-50);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}
.value-icon svg {
	width: 25px;
	height: 25px;
}

.value-card h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--ink);
}
.value-card p {
	font-size: 0.88rem;
	color: var(--ink-soft);
	line-height: 1.7;
}

@media (min-width: 768px) {
	.values-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
	padding: 0 0 64px;
	background: var(--bg);
}

.cta-box {
	background: linear-gradient(
		135deg,
		var(--brand-dark),
		var(--brand) 60%,
		var(--brand-light)
	);
	border-radius: var(--radius-lg);
	padding: 44px 24px;
	text-align: center;
	color: white;
	box-shadow: var(--shadow-brand);
}
.cta-box h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 10px;
}
.cta-box p {
	opacity: 0.85;
	font-size: 0.94rem;
	margin-bottom: 24px;
	max-width: 440px;
	margin-inline: auto;
}
.cta-btn {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
	.cta-box h2 {
		font-size: 2rem;
	}
}

/* ============================================================
   CONTACT — CHANNEL CARDS
   ============================================================ */
.contact-channels {
	padding: 8px 0 16px;
	background: var(--bg);
}

.channels-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--border);
	transform: translateY(-28px);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.channel-card {
	background: var(--surface);
	padding: 26px 18px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition:
		background 0.2s ease,
		transform 0.2s var(--ease);
}
.channel-card:not(.channel-card-static):hover {
	background: var(--brand-50);
	transform: translateY(-2px);
}
.channel-card:not(.channel-card-static):active {
	transform: translateY(0) scale(0.99);
}

.channel-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.channel-icon svg {
	width: 22px;
	height: 22px;
}
.channel-icon-call {
	background: var(--brand-50);
	color: var(--brand);
}
.channel-icon-wa {
	background: #e7f9ee;
	color: #16a34a;
}
.channel-icon-mail {
	background: #fff1f2;
	color: #e11d48;
}
.channel-icon-loc {
	background: #fff7e6;
	color: #d97706;
}

.channel-card h3 {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}
.channel-value {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ink-soft);
	margin-bottom: 6px;
	direction: ltr;
}
.channel-hint {
	font-size: 0.76rem;
	color: var(--ink-faint);
}

@media (min-width: 640px) {
	.channels-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ============================================================
   CONTACT — FORM + SIDE
   ============================================================ */
.contact-main {
	padding: 24px 0 64px;
	background: var(--bg);
}

.contact-main-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
}

.contact-form-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 22px;
	box-shadow: var(--shadow-md);
}

.contact-form-title {
	text-align: left;
	margin: 0 0 24px;
	max-width: none;
}

.contact-submit-btn {
	background: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.contact-submit-btn:hover {
	background: var(--brand-light);
}
.contact-submit-btn svg {
	width: 17px;
	height: 17px;
	transition: transform 0.25s var(--ease);
}
.contact-submit-btn:hover svg {
	transform: translateX(3px);
}

.contact-form-note {
	text-align: center;
	font-size: 0.78rem;
	color: var(--ink-faint);
	margin-top: 12px;
	line-height: 1.6;
}

.contact-side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-cta-card,
.hours-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 22px 20px;
	box-shadow: var(--shadow-sm);
}

.faq-cta-card h3,
.hours-card h3 {
	font-size: 0.96rem;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
}
.faq-cta-card p {
	font-size: 0.86rem;
	color: var(--ink-soft);
	line-height: 1.7;
	margin-bottom: 14px;
}

.hours-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.hours-list li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
	font-size: 0.84rem;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
}
.hours-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.hours-list span {
	color: var(--ink-faint);
}
.hours-list strong {
	color: var(--ink);
	font-weight: 700;
	text-align: right;
}

@media (min-width: 860px) {
	.contact-main-grid {
		grid-template-columns: 1.4fr 1fr;
	}
}
