/* Services Grid Compact Design */
.services-grid-section {
	background: #f8f9fa;
}
.section-title-compact h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #1d2c4d;
	margin-bottom: 0.5rem;
}
.section-title-compact p {
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto;
}
.service-card-compact {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.service-card-compact:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}
.service-image {
	position: relative;
	overflow: hidden;
	height: 280px;
}
.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.service-card-compact:hover .service-image img {
	transform: scale(1.08);
}
.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(2, 49, 111, 0.9), transparent);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	padding: 2rem;
}
.service-card-compact:hover .image-overlay {
	opacity: 1;
}
.view-details {
	color: white;
	font-weight: 600;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.service-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.service-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}
.service-title a {
	color: #1d2c4d;
	text-decoration: none;
	transition: color 0.3s ease;
}
.service-title a:hover {
	color: #02316f;
}
.service-description {
	color: #6c757d;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	flex-grow: 1;
}
.read-more-link {
	color: #02316f;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
}
.read-more-link:hover {
	color: #0b5ed7;
}
.read-more-link i {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}
.read-more-link:hover i {
	transform: translateX(4px);
}
.breadcrumb-section {
	padding: 160px 0 60px;
	background-size: cover;
	background-position: center;
}
.breadcrumb-section h1 {
	color: white;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
@media (max-width: 768px) {
	.service-image {
		height: 220px;
	}
	.service-content {
		padding: 1.25rem;
	}
	.service-title {
		font-size: 1.1rem;
	}
	.service-description {
		font-size: 0.9rem;
	}
	.breadcrumb-section h1 {
		font-size: 1.75rem;
	}
}
/* Service Hero Section */
.service-hero-section {
	padding: 140px 0 80px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.hero-content h1 {
	color: white;
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* Post Meta */
.post-meta-compact {
	display: flex;
	gap: 2rem;
	align-items: center;
	padding: 1.25rem;
	background: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}
.meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #6c757d;
	font-size: 0.95rem;
}
.meta-item i {
	color: #02316f;
	font-size: 1.1rem;
}
/* Service Content */
.service-content-wrap {
	margin-bottom: 2.5rem;
	line-height: 1.8;
	font-size: 1.05rem;
	color: #495057;
}
.service-content-wrap h2,
.service-content-wrap h3,
.service-content-wrap h4 {
	color: #1d2c4d;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.service-content-wrap h2 {
	font-size: 1.75rem;
}
.service-content-wrap h3 {
	font-size: 1.5rem;
}
.service-content-wrap h4 {
	font-size: 1.25rem;
}
.service-content-wrap p {
	margin-bottom: 1.25rem;
}
.service-content-wrap img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1.5rem 0;
}
.service-content-wrap ul,
.service-content-wrap ol {
	margin: 1.5rem 0;
	padding-left: 1.5rem;
}
.service-content-wrap li {
	margin-bottom: 0.75rem;
}
/* Share Section */
.share-section-compact {
	background: white;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	border: 1px solid #e9ecef;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}
.share-title {
	margin: 0;
	color: #1d2c4d;
	font-weight: 600;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.share-title i {
	color: #02316f;
}
.social-share-list {
	display: flex;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #f8f9fa;
	border-radius: 50%;
	color: #495057;
	text-decoration: none;
	transition: all 0.3s ease;
}
.social-link:hover {
	background: #02316f;
	color: white;
	transform: translateY(-3px);
}
.social-link i {
	font-size: 1.25rem;
}
/* CTA Section */
.service-cta-section {
	margin-top: 3rem;
}
.cta-card {
	background: linear-gradient(135deg, #02316f 0%, #02316f 100%);
	padding: 2.5rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	box-shadow: 0 4px 16px rgba(2, 49, 111, 0.2);
}
.cta-content h3 {
	color: white;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.cta-content p {
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	font-size: 1.05rem;
}
.cta-card .btn-primary {
	background: white;
	color: #02316f;
	border: none;
	padding: 0.875rem 2rem;
	font-weight: 600;
	white-space: nowrap;
	transition: all 0.3s ease;
}
.cta-card .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	background: #f8f9fa;
}
/* Responsive Design */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 1.875rem;
	}
	.post-meta-compact {
		gap: 1rem;
	}
	.service-content-wrap {
		font-size: 1rem;
	}
	.share-section-compact {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.25rem 1.5rem;
	}
	.cta-card {
		flex-direction: column;
		text-align: center;
		padding: 2rem 1.5rem;
	}
	.cta-card .btn-primary {
		width: 100%;
	}
}
/* ── Service Trust Bar ── */
.service-trust-bar {
	background: #1d2c4d;
	padding: 0.85rem 0;
	border-bottom: 3px solid #02316f;
}
.trust-signals-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.4rem 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.trust-signals-list li {
	color: white;
	font-size: 0.875rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	white-space: nowrap;
}
.trust-signals-list li i {
	color: #4fc3f7;
	font-size: 0.95rem;
}
/* ── Views Badge ── */
.views-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: #f8f9fa;
	border-radius: 20px;
	padding: 0.35rem 0.85rem;
	font-size: 0.85rem;
	color: #6c757d;
	border: 1px solid #e9ecef;
	white-space: nowrap;
}
.views-badge i {
	color: #02316f;
}
/* ── Service Sidebar ── */
.service-sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.sidebar-book-card {
	background: white;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(2, 49, 111, 0.13);
	border: 1px solid rgba(2, 49, 111, 0.08);
}
.sidebar-book-header {
	background: linear-gradient(135deg, #02316f 0%, #1d2c4d 100%);
	color: white;
	font-size: 1.05rem;
	font-weight: 700;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
}
.sidebar-book-body {
	padding: 1.5rem;
}
.sidebar-book-desc {
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 1.25rem;
	line-height: 1.6;
}
.sidebar-book-btn {
	background: #02316f;
	border-color: #02316f;
	padding: 0.875rem 1.5rem;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}
.sidebar-book-btn:hover {
	background: #021f4a;
	border-color: #021f4a;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(2, 49, 111, 0.3);
}
.sidebar-trust-list {
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.sidebar-trust-list li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #495057;
}
.sidebar-trust-list li i {
	color: #198754;
	font-size: 1rem;
	flex-shrink: 0;
}
.sidebar-contact-card {
	background: white;
	border-radius: 14px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(2, 49, 111, 0.08);
}
.sidebar-contact-card h6 {
	color: #1d2c4d;
	font-weight: 700;
	margin-bottom: 0.875rem;
	font-size: 1rem;
	display: flex;
	align-items: center;
}
.sidebar-phone-link {
	display: flex;
	align-items: center;
	color: #02316f;
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
	transition: color 0.3s ease;
	margin-bottom: 0.4rem;
}
.sidebar-phone-link:hover {
	color: #0b5ed7;
}
.sidebar-contact-note {
	color: #6c757d;
	font-size: 0.8rem;
	margin: 0;
}
/* ── Mobile Sticky CTA ── */
.mobile-sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0.875rem 1rem;
	background: white;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
	border-top: 1px solid #e9ecef;
}
.mobile-sticky-cta .btn {
	background: #02316f;
	border-color: #02316f;
	font-weight: 700;
	padding: 0.875rem;
	font-size: 1rem;
	border-radius: 8px;
}
@media (max-width: 991.98px) {
	.service-sidebar {
		position: static;
	}
	.trust-signals-list {
		justify-content: flex-start;
		gap: 0.4rem 1.25rem;
	}
	.service-details-section {
		padding-bottom: calc(100px + 60px);
	}
}
@media (max-width: 575.98px) {
	.service-trust-bar {
		padding: 0.625rem 0;
	}
	.trust-signals-list li {
		font-size: 0.8rem;
	}
}