/* =========================================================
   UPD HERO
   ========================================================= */

.upd-hero {
	position: relative;
	padding: 65px 0 55px;
	background: linear-gradient(135deg, #f1f9f8 0%, #eef7f6 55%, #e8f5f3 100%);
	overflow: hidden;
}

.upd-hero::after {
	content: "";
	position: absolute;
	right: -120px;
	top: -180px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(97, 195, 162, 0.08);
	pointer-events: none;
}

.upd-hero-content {
	position: relative;
	z-index: 2;
}

/* =========================================================
   EYEBROW
   ========================================================= */

.upd-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;

	margin-bottom: 12px;

	color: #008f88;

	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.upd-hero-eyebrow span {
	display: inline-block;

	width: 36px;
	height: 4px;

	border-radius: 10px;

	background: #0ab7a3;
}

/* =========================================================
   TITLE
   ========================================================= */

.upd-hero h1 {
	margin: 0;

	color: #123f56;

	font-size: clamp(42px, 5vw, 68px);
	line-height: 1.05;

	font-weight: 800;
	letter-spacing: -2px;
}

.upd-hero h1 span {
	color: #0ab7a3;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {
	.upd-hero {
		padding: 45px 0 40px;
	}

	.upd-hero-eyebrow {
		font-size: 13px;
		gap: 9px;
		letter-spacing: 1px;
	}

	.upd-hero-eyebrow span {
		width: 28px;
		height: 3px;
	}

	.upd-hero h1 {
		font-size: 40px;
		letter-spacing: -1px;
	}
}

@media (max-width: 480px) {
	.upd-hero {
		padding: 35px 0 32px;
	}

	.upd-hero h1 {
		font-size: 34px;
	}
}
css
/* =========================================================
   MODERN UPD
   Unit Pengolah Darah
   ========================================================= */


/* =========================================================
   PAGE
   ========================================================= */

.upd-page {
	position: relative;
	background: transparent;
	padding-bottom: 50px;
}

/* =========================================================
   MAIN CONTENT CARD
   ========================================================= */

.upd-main-card {
	background: rgba(255, 255, 255, 0.96);
	border: none;
	border-radius: 18px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
	padding: 28px;
}

/* =========================================================
   FILTER CARD
   ========================================================= */

.upd-filter-card {
	background: rgba(255, 255, 255, 0.92);
	border: 0;
	border-radius: 18px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.upd-filter-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
}

.upd-filter-icon {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 12px;
	background: #e7f7f0;
	color: #4fb493;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 18px;
}

.upd-filter-title h4 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #252525;
}

.upd-filter-title span {
	display: block;
	margin-top: 2px;
	color: #888;
	font-size: 13px;
}

/* =========================================================
   FILTER FORM
   ========================================================= */

.upd-filter-card label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #444;
	margin-bottom: 8px;
}

.upd-filter-card .form-control,
.upd-filter-card .form-select {
	width: 100%;
	height: 48px;

	border-radius: 12px;
	border: 1px solid #e2e5e7;

	background: #fff;
	color: #444;

	font-size: 14px;
	padding: 0 15px;

	box-shadow: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

.upd-filter-card .form-control:focus,
.upd-filter-card .form-select:focus {
	border-color: #61c3a2;
	box-shadow: 0 0 0 3px rgba(97, 195, 162, 0.12);
	outline: none;
}

.upd-filter-card .form-control::placeholder {
	color: #999;
}

/* =========================================================
   FILTER BUTTONS
   ========================================================= */

.upd-filter-buttons {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 5px;
	width: 100%;
}

.upd-filter-buttons .btn {
	width: 140px;
	flex: 0 0 140px;

	height: 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	border: none;
	border-radius: 6px;

	font-size: 14px;
	font-weight: 600;

	transition:
		background-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.upd-filter-buttons .btn:hover {
	transform: translateY(-1px);
}

/* SEARCH */

.upd-btn-search {
	background-color: #61c3a2;
	color: #fff;
}

.upd-btn-search:hover,
.upd-btn-search:focus {
	background-color: #53b594;
	color: #fff;
	box-shadow: 0 4px 10px rgba(97, 195, 162, 0.2);
}

/* RESET */

.upd-btn-reset {
	background-color: #6c757d;
	color: #fff;
}

.upd-btn-reset:hover,
.upd-btn-reset:focus {
	background-color: #5c636a;
	color: #fff;
	box-shadow: 0 4px 10px rgba(108, 117, 125, 0.18);
}

/* =========================================================
   TOTAL
   ========================================================= */

.upd-total {
	display: flex;
	align-items: center;
	justify-content: flex-end;

	min-height: 46px;

	color: #7b838b;
	font-size: 16px;
}

.upd-total strong {
	color: #343a40;
	font-size: 20px;
	margin: 0 5px;
	font-weight: 700;
}

/* =========================================================
   RESULT HEADER
   ========================================================= */

.upd-result-header {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin: 30px 0 18px;
}

.upd-result-title {
	display: flex;
	align-items: center;
	gap: 11px;
}

.upd-result-title .title-line {
	width: 5px;
	height: 35px;

	flex: 0 0 5px;

	border-radius: 10px;
	background: #61c3a2;
}

.upd-result-title h4 {
	margin: 0;

	font-size: 21px;
	font-weight: 700;
	color: #252525;
}

.upd-result-title small {
	display: block;

	margin-top: 3px;

	color: #888;
	font-size: 13px;
}

/* =========================================================
   UPD LIST
   ========================================================= */

.upd-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 28px;
}

/* =========================================================
   UPD CARD
   ========================================================= */

.upd-card {
	position: relative;

	display: flex;
	align-items: center;

	min-height: 112px;
	padding: 15px 20px;

	background: rgba(255, 255, 255, 0.96);

	border: 1px solid #eeeeee;
	border-radius: 8px;

	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

	overflow: hidden;

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.upd-card::before {
	content: "";

	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;

	width: 3px;

	background: #61c3a2;

	opacity: 0;

	transition: opacity 0.2s ease;
}

.upd-card:hover {
	transform: translateY(-3px);

	box-shadow: 0 9px 22px rgba(0, 0, 0, 0.11);

	border-color: #dceee7;
}

.upd-card:hover::before {
	opacity: 1;
}

/* =========================================================
   PAGINATION HIDDEN CARD
   ========================================================= */

.upd-card.pagination-hidden {
	display: none;
}

/* =========================================================
   UPD ICON
   ========================================================= */

.upd-card-icon {
	flex: 0 0 78px;

	width: 78px;
	height: 78px;

	margin-right: 18px;

	border-radius: 50%;

	background: #ffffff;
	border: 2px solid #61c3a2;

	display: flex;
	align-items: center;
	justify-content: center;

	overflow: hidden;
}

.upd-card-icon img {
	width: 62px;
	height: 62px;

	object-fit: contain;

	display: block;
}

/* =========================================================
   UPD CONTENT
   ========================================================= */

.upd-card-content {
	min-width: 0;
	flex: 1;
}

.upd-card-name {
	margin: 0 0 3px;

	font-size: 19px;
	line-height: 1.3;

	font-weight: 700;

	color: #222;
}

.upd-card-type {
	margin: 0 0 3px;

	font-size: 16px;
	line-height: 1.3;

	color: #303030;
	font-weight: 400;
}

.upd-card-location {
	margin: 0;

	font-size: 14px;
	line-height: 1.4;

	color: #666;
}

.upd-card-location i {
	color: #61c3a2;
	margin-right: 4px;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.upd-empty {
	grid-column: 1 / -1;

	background: #fff;

	border-radius: 16px;

	padding: 60px 20px;

	text-align: center;

	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.upd-empty-icon {
	width: 70px;
	height: 70px;

	margin: 0 auto 15px;

	border-radius: 50%;

	background: #f1f5f3;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #b7c1bc;

	font-size: 28px;
}

.upd-empty h5 {
	margin-bottom: 5px;

	color: #555;

	font-weight: 600;
}

.upd-empty p {
	margin: 0;

	color: #999;

	font-size: 14px;
}

/* =========================================================
   INFORMATION BOX
   ========================================================= */

.upd-information {
	margin-top: 28px;

	padding: 18px 20px;

	background: #f8faf9;

	border-left: 4px solid #61c3a2;

	border-radius: 8px;
}

.upd-information p {
	margin: 0;

	color: #555;

	font-size: 14px;
	line-height: 1.7;
}

/* =========================================================
   PAGINATION
   ========================================================= */

.upd-pagination-wrapper {
	width: 100%;
	max-width: 100%;

	margin-top: 28px;

	overflow: hidden;
}

.upd-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;

	gap: 6px;

	width: 100%;
	max-width: 100%;

	box-sizing: border-box;
}

.upd-pagination button {
	flex: 0 0 auto;

	min-width: 38px;
	height: 38px;

	padding: 0 10px;

	border: 1px solid #e1e5e3;
	border-radius: 9px;

	background: #fff;
	color: #555;

	font-size: 14px;
	font-weight: 600;

	cursor: pointer;

	transition:
		border-color 0.2s ease,
		color 0.2s ease,
		background-color 0.2s ease,
		box-shadow 0.2s ease;
}

.upd-pagination button:hover {
	border-color: #61c3a2;

	color: #4fb493;

	background: #f5fbf8;
}

.upd-pagination button.active {
	background: #61c3a2;

	border-color: #61c3a2;

	color: #fff;

	box-shadow: 0 4px 10px rgba(97, 195, 162, 0.25);
}

.upd-pagination button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.upd-pagination .pagination-prev,
.upd-pagination .pagination-next {
	min-width: 38px;
	padding: 0 12px;
}

.upd-pagination .pagination-ellipsis {
	min-width: 25px;

	padding: 0;

	border: none;

	background: transparent;

	cursor: default;

	color: #888;
}

.upd-pagination .pagination-ellipsis:hover {
	background: transparent;

	border: none;

	color: #888;
}

.upd-pagination-info {
	text-align: center;

	margin-top: 10px;

	color: #777;

	font-size: 13px;
}

.upd-pagination-info strong {
	color: #555;
	font-weight: 600;
}

/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991px) {
	.upd-main-card {
		padding: 24px;
	}

	.upd-list {
		gap: 15px;
	}

	.upd-card-name {
		font-size: 17px;
	}

	.upd-card-type {
		font-size: 15px;
	}

	.upd-card-location {
		font-size: 13px;
	}

	.upd-card-icon {
		flex-basis: 68px;

		width: 68px;
		height: 68px;
	}

	.upd-card-icon img {
		width: 54px;
		height: 54px;
	}
}

/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767px) {
	.upd-page {
		padding-bottom: 35px;
	}

	.upd-main-card {
		padding: 18px;

		border-radius: 15px;
	}

	.upd-filter-card {
		border-radius: 15px;
	}

	.upd-filter-card .card-body {
		padding: 20px !important;
	}

	.upd-filter-title {
		align-items: flex-start;
		margin-bottom: 20px;
	}

	.upd-filter-title h4 {
		font-size: 18px;
	}

	.upd-filter-title span {
		font-size: 12px;
	}

	.upd-filter-icon {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.upd-filter-buttons {
		flex-wrap: wrap;
	}

	.upd-filter-buttons .btn {
		width: auto;
		flex: 0 0 auto;
		min-width: 110px;
	}

	.upd-total {
		justify-content: flex-start;

		margin-top: 15px;

		min-height: auto;
	}

	.upd-result-header {
		align-items: flex-start;

		margin-top: 25px;
	}

	.upd-result-title h4 {
		font-size: 19px;
	}

	.upd-result-title small {
		font-size: 12px;
	}

	.upd-result-title .title-line {
		height: 30px;
	}

	.upd-list {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.upd-card {
		min-height: 105px;

		padding: 14px;
	}

	.upd-card-icon {
		margin-right: 14px;
	}

	.upd-card-name {
		font-size: 16px;
	}

	.upd-card-type {
		font-size: 14px;
	}

	.upd-card-location {
		font-size: 12px;
	}

	.upd-information {
		padding: 16px 17px;
	}

	.upd-information p {
		font-size: 13px;
		line-height: 1.65;
	}
}

/* =========================================================
   RESPONSIVE - SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
	.upd-main-card {
		padding: 14px;
	}

	.upd-filter-card .card-body {
		padding: 16px !important;
	}

	.upd-filter-buttons {
		gap: 8px;
	}

	.upd-btn-search,
	.upd-btn-reset {
		min-width: 110px;
	}

	.upd-card {
		padding: 13px;
	}

	.upd-card-icon {
		flex-basis: 60px;

		width: 60px;
		height: 60px;

		margin-right: 12px;
	}

	.upd-card-icon img {
		width: 48px;
		height: 48px;
	}

	.upd-card-name {
		font-size: 15px;
	}

	.upd-card-type {
		font-size: 13px;
	}

	.upd-card-location {
		font-size: 11px;
	}

	.upd-pagination {
		gap: 4px;
	}

	.upd-pagination button {
		min-width: 34px;
		height: 34px;

		padding: 0 8px;

		font-size: 13px;
	}
}

/* =========================================================
   UPD HERO
   Konsisten dengan Hero UPT Vertikal
   ========================================================= */

.upd-hero {
	position: relative;

	padding: 58px 0 52px;

	background: linear-gradient(135deg, #f1f9f8 0%, #eef7f6 55%, #e8f5f3 100%);

	overflow: hidden;
}

.upd-hero::after {
	content: "";

	position: absolute;
	right: -120px;
	top: -180px;

	width: 420px;
	height: 420px;

	border-radius: 50%;

	background: rgba(97, 195, 162, 0.08);

	pointer-events: none;
}

.upd-hero-content {
	position: relative;
	z-index: 2;
}

/* =========================================================
   EYEBROW
   ========================================================= */

.upd-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;

	margin-bottom: 12px;

	color: #008f88;

	font-size: 12px;
	line-height: 1.2;
	font-weight: 800;

	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.upd-hero-eyebrow span {
	display: inline-block;

	width: 36px;
	height: 4px;

	border-radius: 10px;

	background: #0ab7a3;
}

/* =========================================================
   TITLE
   ========================================================= */

.upd-hero h1 {
	margin: 0;

	color: #123f56;

	font-size: 44px;
	line-height: 1.08;

	font-weight: 800;

	letter-spacing: -1.8px;
}

.upd-hero h1 span {
	color: #0ab7a3;
}

/* =========================================================
   RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 991px) {
	.upd-hero {
		padding: 52px 0 46px;
	}

	.upd-hero h1 {
		font-size: 48px;
	}
}

/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 767px) {
	.upd-hero {
		padding: 45px 0 40px;
	}

	.upd-hero-eyebrow {
		font-size: 14px;
		gap: 10px;
		letter-spacing: 1px;
	}

	.upd-hero-eyebrow span {
		width: 30px;
		height: 3px;
	}

	.upd-hero h1 {
		font-size: 40px;
		line-height: 1.1;
		letter-spacing: -1px;
	}
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
	.upd-hero {
		padding: 38px 0 34px;
	}

	.upd-hero h1 {
		font-size: 34px;
	}
}
