/* ===== Long Buttons (Home) ===== */
.lb-section {
	background: #faf8fd;
}
.lb-btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 18px;
	width: 100%;
	padding: 22px 28px;
	border-radius: 12px;
	color: #ffffff;
	background: var(--primary);
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 6px 20px rgba(76, 24, 100, 0.18);
}
.lb-btn:hover {
	background: #3a1150;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(76, 24, 100, 0.28);
}
.lb-btn.lb-light {
	background: #4d0a91;
}
.lb-btn.lb-light:hover {
	background: #3a0a6e;
}
.lb-btn .lb-icon {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}
.lb-btn .lb-title {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
}
.lb-btn .lb-title small {
	display: block;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 4px;
}
.lb-btn .lb-arrow {
	margin-left: auto;
	font-size: 20px;
}
@media (max-width: 575px) {
	.lb-btn {
		flex-wrap: wrap;
		padding: 18px 20px;
	}
	.lb-btn .lb-arrow {
		margin-left: auto;
	}
}

/* ===== Social Services page ===== */
.ss-hero {
	background-size: cover;
	background-position: center;
}
.ss-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 18px 0;
}
.ss-nav a {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 24px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #5a5f7a;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid #ececf1;
	transition: all 0.25s ease;
}
.ss-nav a:hover {
	color: var(--primary);
	border-color: var(--primary);
	text-decoration: none;
}
.ss-nav a.active {
	background: var(--primary);
	color: #ffffff;
	border-color: var(--primary);
}
.ss-section-title {
	text-align: center;
	margin-bottom: 40px;
}
.ss-section-title h2 {
	font-size: 30px;
	font-weight: 700;
	margin: 0 0 8px;
}
.ss-section-title p {
	color: #777;
	max-width: 640px;
	margin: 0 auto;
}
.ss-card {
	background: #ffffff;
	border: 1px solid #ececf1;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ss-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.ss-card-img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	display: block;
}
.ss-card-body {
	padding: 20px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.ss-card-body h4 {
	font-size: 17px;
	font-weight: 700;
	color: #23263a;
	margin: 0 0 8px;
}
.ss-card-body p {
	color: #5a5f7a;
	font-size: 14px;
	line-height: 1.65;
	flex: 1;
}
.ss-card-body .btn {
	align-self: flex-start;
	margin-top: 14px;
	font-size: 13px;
}
