:root {
	--primary: #0099ff;
	--primary-dark: #0b66c3;
	--bg: #f4f9ff;
	--text: #0B1F3A;
	--muted: #4d647a;
	--border: #e6eef8;
	--card: #ffffff;
	--shadow: 0 10px 25px rgba(11, 31, 58, 0.08);
	--radius: 16px;
	--gold: #b8860b;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Times New Roman", Times, serif;
	background: var(--bg);
	color: var(--text);
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
}

.container {
	width: min(1100px, calc(100% - 24px));
	margin: 0 auto;
}

.section {
	padding: 16px 0;
}

.small {
	font-size: 13px;
	color: var(--muted);
}

/* =========================
   TOPBAR
========================= */
.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.brand-logo {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary), #64d2ff);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 900;
	box-shadow: var(--shadow);
}

.brand-name {
	font-weight: 900;
	letter-spacing: 0.2px;
}

.brand-sub {
	font-size: 12px;
	color: var(--muted);
}

.nav {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

.nav a {
	font-size: 14px;
	color: var(--muted);
	padding: 6px 8px;
	border-radius: 10px;
}

.nav a:hover {
	background: #eef7ff;
	color: var(--text);
}

.nav-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* =========================
   COMMON CARD / GRID
========================= */
.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 14px;
	box-shadow: var(--shadow);
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.item {
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 14px;
	box-shadow: 0 8px 18px rgba(11, 31, 58, 0.06);
	transition: transform .12s ease, box-shadow .12s ease;
}

.item:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(11, 31, 58, 0.10);
}

.item h3 {
	margin: 8px 0 6px;
	font-size: 16px;
}

.item p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

/* =========================
   BADGE
========================= */
.badge {
	display: inline-block;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #e8f5ff;
	color: var(--primary-dark);
	font-weight: 700;
}

.badge-row {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 6px;
}

.badge-featured {
	background: #ffe600;
	color: #1f2937;
	border: 1px solid #f5d400;
	font-weight: 900;
}

/* =========================
   BUTTON
========================= */
.btn {
	display: inline-block;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid transparent;
	font-weight: 800;
	font-size: 14px;
	cursor: pointer;
	transition: .2s ease;
}

.btn-primary {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.btn-primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

.btn-outline {
	background: #fff;
	border: 1px solid var(--border);
	color: var(--text);
}

.btn-outline:hover {
	background: #eef7ff;
}

.btn-danger {
	background: #ff4d4f;
	border-color: #ff4d4f;
	color: #fff;
}

.btn-danger:hover {
	opacity: 0.9;
}

/* =========================
   FORM
========================= */
.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

label {
	display: block;
	font-size: 13px;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 6px;
}

.req {
	color: #ff4d4f;
}

.input, .form-control {
	width: 100%;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid var(--border);
	outline: none;
	font-size: 14px;
	background: #fff;
	transition: .2s ease;
}

.input:focus, .form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.15);
}

textarea.input, textarea.form-control {
	resize: vertical;
}

/* =========================
   TABLE
========================= */
.table {
	width: 100%;
	border-collapse: collapse;
	min-width: 800px;
}

.table th {
	text-align: left;
	font-size: 13px;
	color: #fff;
	background: var(--primary);
	padding: 12px;
}

.table td {
	padding: 12px;
	border-bottom: 1px solid var(--border);
	vertical-align: top;
	color: var(--text);
}

.table tr:hover td {
	background: #f3fbff;
}

/* =========================
   ALERT
========================= */
.alert {
	padding: 12px 14px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.alert-success {
	background: #eaffea;
	border-color: #b9f2b9;
	color: #0b6b0b;
}

.alert-danger {
	background: #ffecec;
	border-color: #ffbcbc;
	color: #a40000;
}

/* =========================
   STATUS BADGE
========================= */
.badge-status {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	border: 1px solid var(--border);
}

.badge-new {
	background: #fff7e6;
	border-color: #ffd591;
	color: #ad6800;
}

.badge-processing {
	background: #e6f7ff;
	border-color: #91d5ff;
	color: #0050b3;
}

.badge-done {
	background: #f6ffed;
	border-color: #b7eb8f;
	color: #237804;
}

.badge-pending {
	background: #fff7e6;
	border-color: #ffd591;
	color: #ad6800;
}

.badge-canceled {
	background: #fff1f0;
	border-color: #ffa39e;
	color: #a8071a;
}

/* =========================
   HERO (HOME - LEGACY)
========================= */
.hero {
	background: linear-gradient(180deg, #e9f5ff, #ffffff);
	padding: 26px 0;
}

.hero-box {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	gap: 12px;
	align-items: stretch;
}

.hero-title {
	margin: 10px 0 8px;
	font-size: 34px;
	line-height: 1.2;
}

.hero-desc {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.hero-card {
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 14px;
	box-shadow: var(--shadow);
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

/* =========================
   HOME MODERN
========================= */
.home-page {
	background: linear-gradient(to bottom, #f8fbff 0%, #ffffff 220px);
}

.hero-modern {
	padding: 26px 0 10px;
}

.hero-shell {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(10, 57, 129, 0.10),
		rgba(184, 134, 11, 0.10));
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	padding: 34px 30px;
}

.hero-shell::before {
	content: "";
	position: absolute;
	top: -90px;
	right: -90px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.30) 0%,
		rgba(255, 215, 0, 0) 70%);
}

.hero-shell::after {
	content: "";
	position: absolute;
	bottom: -110px;
	left: -110px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(13, 110, 253, 0.16) 0%,
		rgba(13, 110, 253, 0) 70%);
}

.hero-grid-modern {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.35fr 0.8fr;
	gap: 22px;
	align-items: stretch;
}

.hero-badge-top {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #16324f;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 999px;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.hero-badge-top i {
	color: var(--gold);
}

.hero-title-modern {
	margin: 16px 0 12px;
	font-size: 42px;
	line-height: 1.18;
	color: var(--text);
	letter-spacing: -0.5px;
	font-weight: 900;
}

.hero-desc-modern {
	margin: 0;
	max-width: 760px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.85;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 12px;
	padding: 12px 18px;
	text-decoration: none;
	font-weight: 900;
	transition: .2s ease;
}

.hero-btn.primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	box-shadow: 0 12px 24px rgba(13, 110, 253, 0.20);
}

.hero-btn.outline {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: var(--text);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.hero-btn:hover {
	transform: translateY(-1px);
}

.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.hero-point {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 999px;
	padding: 8px 12px;
	font-size: 13px;
	color: #29425c;
	font-weight: 800;
}

.hero-point i {
	color: var(--gold);
}

.hero-side-card {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hero-side-card h3 {
	margin: 0;
	color: var(--text);
	font-size: 20px;
	font-weight: 900;
}

.hero-side-list {
	margin-top: 14px;
	display: grid;
	gap: 12px;
}

.hero-side-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px;
	border-radius: 14px;
	background: #f8fbff;
	border: 1px solid #e8eef6;
}

.hero-side-item i {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(13, 110, 253, 0.10);
	color: var(--primary-dark);
	flex: 0 0 36px;
}

.hero-side-item b {
	color: var(--text);
	display: block;
	margin-bottom: 2px;
	font-weight: 900;
}

.hero-side-item span {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.section-modern {
	padding: 16px 0 6px;
}

.section-top {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 14px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.section-kicker {
	display: inline-block;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 6px;
}

.section-title-modern {
	margin: 0;
	color: var(--text);
	font-size: 30px;
	line-height: 1.25;
	font-weight: 900;
}

.section-subtitle {
	margin-top: 6px;
	color: var(--muted);
	line-height: 1.6;
}

.section-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 12px;
	padding: 11px 14px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: var(--text);
	text-decoration: none;
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.section-link:hover {
	background: #eef7ff;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.home-card {
	display: block;
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
	transition: all .2s ease;
	height: 100%;
}

.home-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.home-card-thumb {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	background: #eef3f8;
}

.home-card-thumb.placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	color: #46627f;
	background: linear-gradient(135deg, #eef5ff, #f7f9fc);
}

.home-card-body {
	padding: 16px 16px 18px;
}

.tag-row-modern {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.tag-modern {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	background: rgba(13, 110, 253, 0.10);
	color: var(--primary-dark);
}

.tag-modern.featured {
	background: rgba(184, 134, 11, 0.12);
	color: #9a6a00;
}

.home-card-title {
	margin: 0 0 8px;
	color: var(--text);
	font-size: 20px;
	line-height: 1.45;
	font-weight: 900;
}

.home-card-desc {
	margin: 0;
	color: var(--muted);
	line-height: 1.75;
	min-height: 74px;
}

.home-card-more {
	margin-top: 12px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-dark);
	font-weight: 900;
}

.empty-card {
	background: #fff;
	border: 1px dashed #d9e1ea;
	border-radius: 18px;
	padding: 28px 18px;
	color: var(--muted);
	text-align: center;
}

.qa-grid-home {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.qa-card-home {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 18px;
	padding: 18px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.qa-card-top {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.qa-badge-home {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(13, 110, 253, 0.10);
	color: var(--primary-dark);
	font-size: 12px;
	font-weight: 900;
}

.qa-field-home {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(184, 134, 11, 0.12);
	color: #9a6a00;
	font-size: 12px;
	font-weight: 900;
}

.qa-card-home h3 {
	margin: 0;
	color: var(--text);
	font-size: 18px;
	line-height: 1.7;
	font-weight: 900;
}

.bottom-cta {
	margin: 18px 0 8px;
	border-radius: 22px;
	background: linear-gradient(135deg, #0c4fb3, #163b6d);
	color: #fff;
	padding: 28px 24px;
	box-shadow: 0 16px 34px rgba(12, 79, 179, 0.22);
}

.bottom-cta-grid {
	display: grid;
	grid-template-columns: 1.4fr auto;
	gap: 18px;
	align-items: center;
}

.bottom-cta h2 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.25;
	font-weight: 900;
}

.bottom-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.90);
	line-height: 1.8;
}

.bottom-cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.bottom-cta .cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 12px;
	font-weight: 900;
	text-decoration: none;
}

.bottom-cta .cta-btn.primary {
	background: #fff;
	color: #0c4fb3;
}

.bottom-cta .cta-btn.secondary {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
}

/* =========================
   FOOTER
========================= */
.footer {
	padding: 18px 0;
	margin-top: 18px;
	border-top: 1px solid var(--border);
	background: #ffffff;
}

.footer .small {
	line-height: 1.8;
}

/* =========================
   ADMIN PANEL
========================= */
.admin-wrap {
	display: grid;
	grid-template-columns: 270px 1fr;
	min-height: 100vh;
}

.admin-sidebar {
	background: #0B1F3A;
	color: #fff;
	padding: 14px;
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: auto;
}

.admin-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.admin-brand-logo {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: linear-gradient(135deg, #0099ff, #64d2ff);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.admin-brand-name {
	font-weight: 900;
	letter-spacing: 0.3px;
}

.admin-brand-sub {
	font-size: 12px;
	opacity: 0.85;
}

.admin-menu {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.admin-link {
	padding: 10px 12px;
	border-radius: 14px;
	color: rgba(255, 255, 255, 0.90);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	font-weight: 800;
	font-size: 14px;
}

.admin-link:hover {
	background: rgba(0, 153, 255, 0.18);
	border-color: rgba(0, 153, 255, 0.30);
}

.admin-sidebar-footer {
	margin-top: 14px;
	padding: 12px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.admin-main {
	background: var(--bg);
	padding: 14px;
}

.admin-topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 14px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.admin-title {
	font-size: 18px;
	font-weight: 900;
	color: var(--text);
}

.admin-content {
	margin-top: 12px;
}

.admin-footer {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}

.admin-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.admin-card {
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 14px;
	box-shadow: var(--shadow);
}

.admin-card-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	flex-wrap: wrap;
}

.admin-card-title {
	font-size: 16px;
	font-weight: 900;
}

.admin-stats {
	margin-top: 12px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.stat {
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 12px;
	background: #f8fbff;
}

.stat-label {
	font-size: 12px;
	color: var(--muted);
	font-weight: 800;
}

.stat-value {
	font-size: 22px;
	font-weight: 900;
	margin-top: 4px;
	color: var(--text);
}

/* =========================
   LAW SIGNBOARD HEADER
========================= */
.law-banner {
	background: #2f2f87;
	color: #fff;
}

.law-banner-inner {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 0;
}

.law-banner-logo img {
	width: 260px;
	height: auto;
}

.law-banner-content {
	flex: 1;
	text-align: center;
}

.law-banner-top {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: 1px;
}

.law-banner-title {
	margin-top: 10px;
	font-size: 38px;
	font-weight: 900;
}

.law-banner-title span {
	color: #ffe600;
	font-size: 44px;
}

.law-banner-sub {
	margin-top: 8px;
	font-size: 18px;
}

.law-banner-info {
	margin-top: 8px;
	font-size: 14px;
	opacity: 0.95;
}

.law-banner-bottom {
	background: #ffe600;
	color: #000;
	font-weight: 900;
}

.law-banner-bottom-inner {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	font-size: 16px;
}

/* =========================
   MAIN NAVIGATION
========================= */
.main-nav {
	background: #ffffff;
	border-bottom: 2px solid #e6eef8;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.nav-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	flex-wrap: wrap;
	gap: 10px;
}

.nav-left {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.nav-item {
	font-weight: 700;
	font-size: 15px;
	color: #0B1F3A;
	padding: 6px 8px;
	position: relative;
	transition: 0.2s ease;
}

.nav-item:hover {
	color: #35358f;
}

.nav-item::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: #35358f;
	transition: 0.3s ease;
}

.nav-item:hover::after {
	width: 100%;
}

.nav-item.active {
	color: #35358f;
}

.nav-item.active::after {
	width: 100%;
}

.nav-right {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.nav-book {
	font-size: 14px;
}

.nav-admin {
	font-size: 14px;
	font-weight: 700;
	color: #555;
}

.nav-admin:hover {
	color: #35358f;
}

/* =========================
   SERVICE DETAIL - WORD STYLE
========================= */
.service-article {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 26px 28px;
	box-shadow: var(--shadow);
	max-width: 920px;
	margin: 0 auto;
}

.service-cover img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	display: block;
	margin-bottom: 18px;
	border: 1px solid var(--border);
}

.service-head {
	margin-bottom: 16px;
}

.service-title {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.25;
	font-weight: 900;
	color: var(--text);
}

.service-summary {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.service-content {
	font-size: 18px;
	line-height: 1.9;
	text-align: justify;
	color: var(--text);
}

.service-content p {
	margin: 0 0 14px;
	text-indent: 28px;
}

.service-content h1, .service-content h2, .service-content h3,
	.service-content h4 {
	margin: 18px 0 10px;
	font-weight: 900;
	line-height: 1.25;
	text-indent: 0;
}

.service-content h2 {
	font-size: 24px;
}

.service-content h3 {
	font-size: 20px;
}

.service-content h4 {
	font-size: 18px;
}

.service-content ul, .service-content ol {
	margin: 8px 0 14px;
	padding-left: 28px;
	text-align: left;
}

.service-content li {
	margin: 6px 0;
}

.service-content blockquote {
	margin: 14px 0;
	padding: 12px 14px;
	border-left: 4px solid var(--primary);
	background: #f4f9ff;
	border-radius: 12px;
	text-indent: 0;
}

.service-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 14px auto;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.service-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 14px 0;
	font-size: 16px;
}

.service-content table td, .service-content table th {
	border: 1px solid var(--border);
	padding: 10px;
}

.service-content code {
	background: #f6f8fa;
	border: 1px solid var(--border);
	padding: 2px 6px;
	border-radius: 8px;
}

.service-content figure {
	margin: 14px 0;
}

.service-content figcaption {
	text-align: center;
	font-size: 14px;
	color: var(--muted);
	margin-top: 6px;
}

.service-actions {
	margin-top: 16px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* =========================
   SERVICE / POST CARD THUMB
========================= */
.service-card-thumb, .card-thumb {
	width: 100%;
	height: 170px;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid #e6eef8;
	display: block;
	margin-bottom: 10px;
}

.service-card-thumb.placeholder, .card-thumb.placeholder {
	width: 100%;
	height: 170px;
	border-radius: 14px;
	border: 1px dashed #cfe0f5;
	background: #f6fbff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.service-card-thumb.placeholder span, .card-thumb.placeholder span {
	font-weight: 900;
	letter-spacing: 1px;
	color: #1d4ed8;
	opacity: .65;
}

.service-card-title, .card-title {
	margin: 6px 0 6px;
}

.service-card-summary, .card-desc {
	margin: 0;
	opacity: .9;
	line-height: 1.6;
}

.service-card-more, .card-more {
	margin-top: 10px;
	font-weight: 800;
	color: #1d4ed8;
}

.item-media {
	display: block;
	text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */
@media ( max-width : 1000px) {
	.admin-wrap {
		grid-template-columns: 1fr;
	}
	.admin-sidebar {
		height: auto;
		position: relative;
	}
	.admin-grid {
		grid-template-columns: 1fr;
	}
}

@media ( max-width : 992px) {
	.hero-grid-modern {
		grid-template-columns: 1fr;
	}
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media ( max-width : 900px) {
	.grid {
		grid-template-columns: 1fr;
	}
	.grid-2 {
		grid-template-columns: 1fr;
	}
	.form-grid {
		grid-template-columns: 1fr;
	}
	.hero-box {
		grid-template-columns: 1fr;
	}
	.nav {
		display: none;
	}
	.law-banner-inner {
		flex-direction: column;
		text-align: center;
	}
	.law-banner-logo img {
		width: 220px;
	}
	.law-banner-title {
		font-size: 26px;
	}
	.law-banner-title span {
		font-size: 30px;
	}
	.law-banner-bottom-inner {
		flex-direction: column;
		gap: 6px;
		text-align: center;
	}
	.nav-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.nav-left {
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}
	.nav-right {
		width: 100%;
		justify-content: space-between;
	}
}

@media ( max-width : 768px) {
	.qa-grid-home {
		grid-template-columns: 1fr;
	}
	.bottom-cta-grid {
		grid-template-columns: 1fr;
	}
}

@media ( max-width : 640px) {
	.card-grid {
		grid-template-columns: 1fr;
	}
	.hero-title-modern {
		font-size: 34px;
	}
}

.faq-question {
	font-size: 16px;
	line-height: 1.6;
}

.faq-item-head {
	padding: 14px 16px 12px;
}

.faq-item-body {
	padding: 12px 16px;
}