/* FNH Consultation Booking & Refund policy — bilingual EN/AR, navy palette. */
.fnhp-page {
	--c-primary: #1e202f;
	--c-line: #bccccc;
	--c-bg: #fcfbfa;
	--c-beige: #f2eada;
	--c-mint: #e8efdf;
	--c-muted: #7a7f95;
	--c-text: #3d4051;
	font-family: 'IBM Plex Sans Arabic', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	background: var(--c-bg);
	color: var(--c-text);
	padding: 40px 16px 64px;
	max-width: 760px;
	margin: 0 auto;
	line-height: 1.8;
}
.fnhp-page[dir="rtl"] { text-align: right; }
.fnhp-page * { box-sizing: border-box; min-width: 0; }
.fnhp-page h1, .fnhp-page h2 {
	font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif;
	color: var(--c-primary);
	font-weight: 600;
}

/* ── Hero ── */
.fnhp-hero { text-align: center; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--c-line); }
.fnhp-hero h1 { font-size: clamp(28px, 5vw, 40px); margin: 0 0 10px; }
.fnhp-sub { color: var(--c-muted); font-size: 15px; margin: 0; letter-spacing: .02em; }

/* ── Sections ── */
.fnhp-section { margin-bottom: 36px; }
.fnhp-section > h2 {
	font-size: 21px;
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--c-beige);
}
.fnhp-section p { margin: 0 0 12px; font-size: 15.5px; }

/* ── Cancellation tiers ── */
.fnhp-tiers { display: grid; gap: 12px; }
.fnhp-tier {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 10px;
	padding: 16px 18px;
}
.fnhp-page[dir="ltr"] .fnhp-tier { border-left: 4px solid var(--c-primary); }
.fnhp-page[dir="rtl"] .fnhp-tier { border-right: 4px solid var(--c-primary); }
.fnhp-tier-head {
	font-weight: 600;
	color: var(--c-primary);
	font-size: 16px;
	margin-bottom: 6px;
}
.fnhp-tier-body { color: var(--c-text); font-size: 15px; }

/* ── Lists ── */
.fnhp-list { margin: 0; padding-inline-start: 22px; }
.fnhp-list li { margin-bottom: 10px; font-size: 15.5px; }
.fnhp-list li::marker { color: var(--c-primary); }

/* ── Highlight (how to cancel) ── */
.fnhp-highlight {
	background: var(--c-mint);
	border-radius: 12px;
	padding: 22px 24px;
	border: 1px solid #d4e0c4;
}
.fnhp-highlight > h2 { border-bottom-color: rgba(30,32,47,.15); }
.fnhp-contact { margin: 14px 0 0; }
.fnhp-wa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #25d366;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 15px;
}
.fnhp-wa:hover { background: #1ebe5b; color: #fff; }
.fnhp-wa svg { flex: none; }

/* ── CTA ── */
.fnhp-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--c-line);
}
.fnhp-btn {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: 999px;
	transition: transform .15s ease, box-shadow .15s ease;
}
.fnhp-btn:hover { transform: translateY(-1px); }
.fnhp-btn-primary { background: var(--c-primary); color: #fff; }
.fnhp-btn-primary:hover { color: #fff; box-shadow: 0 6px 18px rgba(30,32,47,.25); }
.fnhp-btn-ghost { background: transparent; color: var(--c-primary); border: 1.5px solid var(--c-primary); }
.fnhp-btn-ghost:hover { background: var(--c-primary); color: #fff; }

@media (max-width: 540px) {
	.fnhp-page { padding: 28px 14px 48px; }
	.fnhp-cta { flex-direction: column; }
	.fnhp-btn { text-align: center; }
}
