/* Shared page hero / parallax header (background set per page in pages/*.css) */
:root {
	--site-header-height: 92px;
}

.page-title-layout {
	position: relative;
	overflow: visible;
	height: 300px;
	z-index: 2;
}

.page-title-layout.page-hero--compact {
	height: auto;
	min-height: 0;
	padding-top: var(--site-header-height);
	padding-bottom: 0.75rem;
	background: #f4f6f8;
}

.page-hero__compact-inner {
	padding-top: 0.5rem;
}

.page-hero__breadcrumb-list,
.page-hero__breadcrumb-pill {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
}

.page-hero__breadcrumb-list {
	font-size: 14px;
	color: #6d6d6d;
}

.page-hero__breadcrumb-list a {
	color: #1ea69a;
	text-decoration: none;
}

.page-hero__breadcrumb-list li:not(:last-child)::after,
.page-hero__breadcrumb-pill li:not(:last-child)::after {
	content: "/";
	margin: 0 0.35rem;
	color: #999;
}

.page-hero__breadcrumb--overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	transform: translateY(50%);
}

.page-hero__breadcrumb-pill {
	background: #fff;
	line-height: 50px;
	padding: 0 1.25rem;
	font-size: 14px;
	color: #6d6d6d;
}

.page-hero__breadcrumb-pill a {
	color: #1ea69a;
	text-decoration: none;
}

.page-title-layout:not(.page-hero--compact) + section,
.page-title-layout:not(.page-hero--compact) + .tabs,
.page-title-layout:not(.page-hero--compact) + .container {
	margin-top: 3rem;
	padding-top: 0;
}

/* Legacy empty breadcrumb band (replaced by page-hero partial) */
section.bread-crumb.position-absolute {
	display: none;
}

.parallax-container {
	position: relative;
	overflow: hidden;
	background: #384857;
	background-size: cover;
	background-position: center;
	height: 100%;
	display: flex;
	align-items: center;
	padding-top: calc(var(--site-header-height) + 1rem);
	padding-bottom: 2.5rem;
}

.parallax-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
}

.parallax-container .parallax-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.page-title-content {
	position: relative;
	z-index: 2;
}

.page-title-content h1 {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.page-title-content p {
	font-size: 18px;
	line-height: 1.6;
	opacity: 0.9;
}

.page-title-content .btn {
	padding: 12px 30px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.page-title-content .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-title {
	background: #f8f9fa;
	padding: 60px 0;
	text-align: center;
}

.page-title .title {
	font-size: 42px;
	color: #333;
	margin-bottom: 10px;
	font-weight: 600;
}

.breadcrumbs ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.breadcrumbs ul li {
	color: #666;
	font-size: 16px;
}

.breadcrumbs ul li:not(:last-child):after {
	content: "/";
	margin: 0 10px;
	color: #999;
}

.breadcrumbs ul li a {
	color: #333;
	text-decoration: none;
}

.about-content {
	padding: 80px 0;
}

.tab-buttons {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
	border-bottom: 1px solid #e9ecef;
}

.tab-btn {
	background: none;
	border: none;
	padding: 15px 30px;
	font-size: 16px;
	color: #666;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.tab-btn:after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: transparent;
	transition: all 0.3s ease;
}

.tab-btn.active {
	color: #333;
}

.tab-btn.active:after {
	background: #384857;
}

.tab-content {
	display: none;
	padding: 40px;
	background: #fff;
}

.tab-content.active {
	display: block;
}

.tab-content h3 {
	font-size: 24px;
	color: #333;
	margin-bottom: 10px;
}

.tab-content .subtitle {
	color: #666;
	font-size: 16px;
	margin-bottom: 30px;
}

.tab-content .content p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 20px;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.service-item {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.service-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item .icon {
	font-size: 40px;
	color: #384857;
	margin-bottom: 20px;
}

.service-item h4 {
	font-size: 18px;
	color: #333;
	margin-bottom: 15px;
	font-weight: 600;
}

.service-item p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 991px) {
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-title-content h1 {
		font-size: 36px;
	}

	.page-title-content p {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.tab-buttons {
		flex-wrap: wrap;
	}

	.tab-btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}

	.page-title .title {
		font-size: 32px;
	}

	.parallax-container {
		background-attachment: scroll;
	}
}
