/* ORTELE HEALTH — Services Page Template */

.oh-services-page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

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

.oh-wrap {
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	color: #222;
	width: 100%;
}

/* ─── Banner ─────────────────────────────────────────────── */
/* Full-width image banner — text overlaid on top-left */
.oh-banner {
	position: relative;
	width: 100%;
	min-height: 320px;
	display: flex;
	align-items: flex-start;
	overflow: visible; /* allow cards to overlap below */
}

/* Image fills the entire banner */
.oh-banner-image {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.oh-banner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
	display: block;
}

/* Light wash over the whole banner so text is readable,
   heavier on the left where text sits */
.oh-banner-image::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0.82) 0%,
		rgba(255, 255, 255, 0.65) 25%,
		rgba(255, 255, 255, 0.25) 50%,
		rgba(255, 255, 255, 0.05) 70%,
		transparent 100%
	);
	pointer-events: none;
}

/* Text sits over the image, left-aligned */
.oh-banner-text {
	position: relative;
	z-index: 2;
	width: 44%;
	padding: 52px 32px 100px 100px; /* extra bottom padding = space for card overlap */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.oh-banner-text h1 {
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	font-size: 58px;
	font-weight: 900;
	color: #004478;
	line-height: 1.0;
	margin-bottom: 14px;
}

.oh-banner-text .oh-tagline {
	font-size: 15.5px;
	font-weight: 700;
	color: #004478;
	margin-bottom: 16px;
	line-height: 1.45;
}

.oh-banner-text p {
	font-size: 13.5px;
	color: #004478;
	line-height: 1.7;
	max-width: 380px;
}

/* ─── Cards section ──────────────────────────────────────── */
.oh-cards-section {
	background: transparent;
	padding: 0 40px 60px;
	margin-top: -45px;    /* pulls cards UP into the banner image */
	position: relative;
	z-index: 10;
}

.oh-cards-wrap {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: 0 auto;
}

.oh-card {
	background: #ffffff;
	border: 1px solid #d8e5f2;
	border-radius: 10px;
	padding: 36px 28px 32px;
	flex: 1 1 280px;
	max-width: 360px;
	min-width: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 6px 24px rgba(0, 32, 80, 0.11);
}

.oh-card-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #e8f0fb;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.oh-card-icon svg {
	width: 44px;
	height: 44px;
}

.oh-card-title {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #004478;
	text-transform: uppercase;
	margin: 0 0 10px;
}

.oh-card-sub {
	font-size: 13.5px;
	color: #444;
	line-height: 1.6;
	margin: 0 0 18px;
}

.oh-card-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	text-align: left;
	width: 100%;
}

.oh-card-list li {
	font-size: 13.5px;
	color: #333;
	padding: 5px 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.5;
}

.oh-card-list li::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	min-width: 18px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23004478'/%3E%3Cpath d='M6 10.5l3 3 5-5.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	margin-top: 2px;
}

.oh-card-btn {
	display: block;
	background: #004478;
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 14px 32px;
	border-radius: 4px;
	text-decoration: none !important;
	margin-top: auto;
	transition: background 0.2s ease;
	width: 100%;
	text-align: center;
}

.oh-card-btn:hover {
	background: #6690ad;
	color: #ffffff !important;
}

/* ─── Footer CTA ─────────────────────────────────────────── */
.oh-footer-cta {
	background: #004478;
	padding: 44px 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 56px;
	position: relative;
	overflow: hidden;
}

.oh-footer-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
	background-size: 18px 18px;
	pointer-events: none;
}

.oh-footer-left-icon {
	position: relative;
	z-index: 2;
	width: 90px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	opacity: 0.45;
}

.oh-footer-left-icon svg {
	width: 80px;
	height: 80px;
}

.oh-footer-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}

.oh-footer-content h2 {
	font-size: 30px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
}

.oh-footer-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 13px 32px;
	border: 2px solid #ffffff;
	border-radius: 4px;
	text-decoration: none !important;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}

.oh-footer-cta-btn:hover {
	background: #ffffff;
	color: #004478 !important;
}

.oh-footer-cta-btn .oh-arrow {
	font-size: 18px;
	line-height: 1;
}

.oh-footer-right-icon {
	position: relative;
	z-index: 2;
	width: 90px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	opacity: 0.35;
}

.oh-footer-right-icon svg {
	width: 80px;
	height: 80px;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
	.oh-banner-text {
		width: 55%;
		padding: 40px 24px 100px 36px;
	}

	.oh-cards-wrap {
		max-width: 760px;
	}

	.oh-card {
		max-width: 340px;
	}
}

@media (max-width: 700px) {
	.oh-banner {
		min-height: 260px;
	}

	.oh-banner-text {
		width: 100%;
		padding: 36px 24px 80px 24px;
	}

	.oh-banner-text h1 {
		font-size: 38px;
	}

	.oh-cards-section {
		margin-top: -60px;
		padding: 0 16px 44px;
	}

	.oh-cards-wrap {
		flex-direction: column;
		align-items: center;
	}

	.oh-card {
		max-width: 100%;
	}

	.oh-footer-cta {
		flex-direction: column;
		padding: 36px 24px;
		gap: 20px;
	}

	.oh-footer-left-icon,
	.oh-footer-right-icon {
		display: none;
	}

	.oh-footer-content h2 {
		font-size: 24px;
	}
}