:root {
	--primary: #1d4ed8;
	--primary-dark: #1e3a8a;
	--primary-darker: #172554;
	--sky: #0ea5e9;
	--sky-light: #38bdf8;
	--ink: #0f172a;
	--ink-soft: #1e293b;
	--muted: #64748b;
	--bg: #ffffff;
	--bg-grey: #f1f5f9;
	--border: #e2e8f0;
	--success: #059669;
	--danger: #e11d48;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow: 0 10px 30px rgba(23, 37, 84, 0.10);
	--shadow-sm: 0 4px 14px rgba(23, 37, 84, 0.08);
	--font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink-soft);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--ink);
	line-height: 1.25;
	margin: 0 0 0.5em;
	font-weight: 800;
}

p {
	margin: 0 0 1em;
}

ul {
	margin: 0;
	padding: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 700;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.25s ease;
	line-height: 1.4;
}

.btn svg {
	width: 18px;
	height: 18px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary), var(--sky));
	color: #fff;
	box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary));
	color: #fff;
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline:hover {
	background: var(--primary);
	color: #fff;
}

.btn-light {
	background: #fff;
	color: var(--primary-dark);
}

.btn-light:hover {
	background: var(--sky-light);
	color: #fff;
	transform: translateY(-2px);
}

.btn-outline-light {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
	background: #fff;
	color: var(--primary-dark);
	border-color: #fff;
}

/* ---------- Topbar ---------- */
.topbar {
	background: var(--primary-darker);
	color: #dbeafe;
	font-size: 13.5px;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 7px;
	padding-bottom: 7px;
	flex-wrap: wrap;
}

.topbar-info,
.topbar-links {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.topbar-item i svg {
	width: 14px;
	height: 14px;
	vertical-align: middle;
}

.topbar-links a {
	color: #bfdbfe;
}

.topbar-links a:hover {
	color: #fff;
}

/* ---------- Header / Nav ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: #fff;
	box-shadow: 0 2px 16px rgba(23, 37, 84, 0.08);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 78px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.site-logo-img {
	display: inline-flex;
	flex-shrink: 0;
}

.site-logo-img img {
	max-height: 54px;
	width: auto;
}

.custom-logo-link img {
	max-height: 54px;
	width: auto;
}

.site-title-wrap {
	min-width: 0;
}

.site-title {
	margin: 0;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.2;
}

.site-title a {
	color: var(--primary-dark);
}

.site-subtitle {
	margin: 2px 0 0;
	font-size: 12px;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.main-navigation .menu,
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.main-navigation a {
	display: block;
	padding: 10px 15px;
	font-weight: 600;
	font-size: 15px;
	color: var(--ink-soft);
	border-radius: 999px;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--primary);
	background: rgba(29, 78, 216, 0.08);
}

.nav-toggle {
	display: none;
	background: var(--primary);
	border: 0;
	color: #fff;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.nav-toggle svg {
	width: 24px;
	height: 24px;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	background:
		radial-gradient(1200px 500px at 85% -10%, rgba(56, 189, 248, 0.35), transparent 60%),
		radial-gradient(900px 500px at -10% 110%, rgba(30, 58, 138, 0.9), transparent 60%),
		linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 55%, var(--sky) 100%);
	color: #fff;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
	background-size: 26px 26px;
	opacity: 0.5;
}

.hero-inner {
	position: relative;
	z-index: 1;
	padding: 88px 20px 64px;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 7px 16px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 13.5px;
	margin: 0 0 22px;
	backdrop-filter: blur(4px);
}

.hero-badge svg {
	width: 15px;
	height: 15px;
	color: #fde047;
}

.hero-title {
	color: #fff;
	font-size: clamp(30px, 5vw, 52px);
	font-weight: 800;
	margin-bottom: 18px;
	letter-spacing: -0.5px;
}

.hero-sub {
	max-width: 720px;
	margin: 0 auto 30px;
	font-size: clamp(15px, 2vw, 18px);
	color: #dbeafe;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	max-width: 860px;
	margin: 56px auto 0;
}

.hero-stat {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	padding: 18px 10px;
	backdrop-filter: blur(4px);
}

.hero-stat strong {
	display: block;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	color: #fff;
}

.hero-stat span {
	font-size: 12.5px;
	color: #dbeafe;
}

/* ---------- Sections ---------- */
.section {
	padding: 74px 0;
}

.section-white {
	background: #fff;
}

.section-grey {
	background: var(--bg-grey);
}

.section-blue {
	background:
		radial-gradient(900px 400px at 100% 0%, rgba(56, 189, 248, 0.18), transparent 60%),
		linear-gradient(160deg, var(--primary-darker), var(--primary));
	color: #fff;
}

.section-blue .section-title {
	color: #fff;
}

.section-blue .section-desc {
	color: #dbeafe;
}

.section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 44px;
}

.section-tag {
	display: inline-block;
	background: rgba(29, 78, 216, 0.1);
	color: var(--primary);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.section-tag-light {
	background: rgba(255, 255, 255, 0.16);
	color: #bfdbfe;
}

.section-title {
	font-size: clamp(24px, 3.4vw, 34px);
	margin-bottom: 12px;
}

.section-desc {
	color: var(--muted);
	font-size: 16px;
}

.section-cta {
	text-align: center;
	margin-top: 40px;
}

/* ---------- Welcome / Sambutan ---------- */
.welcome-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 44px;
	align-items: center;
}

.welcome-media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.welcome-media img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.welcome-media-caption {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	background: rgba(15, 23, 42, 0.78);
	backdrop-filter: blur(6px);
	color: #fff;
	padding: 14px 18px;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
}

.welcome-media-caption strong {
	font-size: 15px;
}

.welcome-media-caption span {
	font-size: 13px;
	color: #bfdbfe;
}

.welcome-text h3 {
	font-size: 24px;
	margin-bottom: 14px;
}

.welcome-text > p {
	color: var(--muted);
}

.check-list {
	list-style: none;
}

.check-list li {
	position: relative;
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 5px 0;
	color: var(--ink-soft);
}

.check-list li i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 3px;
	border-radius: 50%;
	background: rgba(5, 150, 105, 0.12);
	color: var(--success);
}

.check-list li i svg {
	width: 13px;
	height: 13px;
}

/* ---------- Jurusan ---------- */
.jurusan-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.jurusan-card {
	background: #fff;
	color: var(--ink-soft);
	border-radius: var(--radius-lg);
	padding: 30px 24px;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-sm);
	border-top: 4px solid var(--sky-light);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jurusan-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.jurusan-icon {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary), var(--sky));
	color: #fff;
	margin-bottom: 18px;
}

.jurusan-icon svg {
	width: 28px;
	height: 28px;
}

.jurusan-name {
	font-size: 21px;
	color: var(--ink);
	margin-bottom: 4px;
}

.jurusan-desc {
	font-size: 13.5px;
	color: var(--muted);
	flex: 1;
}

.jurusan-konsentrasi {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 14px 0 18px;
}

.jurusan-konsentrasi span {
	background: var(--bg-grey);
	border: 1px solid var(--border);
	color: var(--ink-soft);
	font-size: 12px;
	font-weight: 600;
	padding: 5px 11px;
	border-radius: 999px;
}

.jurusan-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 14px;
}

.jurusan-link svg {
	width: 16px;
	height: 16px;
}

/* ---------- Visi Misi ---------- */
.visi-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 26px;
}

.visi-card {
	background: #fff;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	padding: 34px 30px;
	box-shadow: var(--shadow-sm);
}

.visi-card-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.visi-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary), var(--sky));
	color: #fff;
	flex-shrink: 0;
}

.visi-icon svg {
	width: 24px;
	height: 24px;
}

.visi-card-head h3 {
	margin: 0;
	font-size: 22px;
}

.visi-card p {
	margin: 0;
	color: var(--ink-soft);
}

/* ---------- Teaching Factory ---------- */
.tef-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.tef-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 26px 22px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease;
}

.tef-card:hover {
	transform: translateY(-5px);
}

.tef-card-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.tef-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(29, 78, 216, 0.1);
	color: var(--primary);
	flex-shrink: 0;
}

.tef-icon svg {
	width: 22px;
	height: 22px;
}

.tef-label {
	font-weight: 800;
	font-size: 15px;
	color: var(--ink);
}

.tef-card .check-list li {
	font-size: 14px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gallery-grid-wide {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
	margin: 0;
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	aspect-ratio: 4 / 3;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery-item a {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery-item:hover img {
	transform: scale(1.07);
}

.gallery-item figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
	color: #fff;
	padding: 34px 16px 14px;
	font-size: 14px;
	font-weight: 700;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover figcaption {
	opacity: 1;
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 34px;
}

.filter-btn {
	background: #fff;
	border: 1.5px solid var(--border);
	color: var(--ink-soft);
	font-weight: 600;
	font-size: 14px;
	padding: 9px 18px;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: var(--font);
}

.filter-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.filter-btn.is-active {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

/* ---------- Kegiatan ---------- */
.kegiatan-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.kegiatan-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 30px 28px;
	box-shadow: var(--shadow-sm);
}

.kegiatan-card-title {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary), var(--sky));
	color: #fff;
	font-size: 16px;
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 20px;
}

/* ---------- CTA band ---------- */
.section-cta-blue {
	background:
		radial-gradient(700px 300px at 90% 0%, rgba(56, 189, 248, 0.3), transparent 60%),
		linear-gradient(135deg, var(--primary-darker), var(--primary));
	color: #fff;
	padding: 64px 0;
}

.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.cta-inner h2 {
	color: #fff;
	font-size: clamp(22px, 3vw, 30px);
	margin-bottom: 6px;
}

.cta-inner p {
	color: #dbeafe;
	margin: 0;
}

.cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* ---------- Page hero ---------- */
.page-hero {
	background:
		radial-gradient(700px 300px at 85% -20%, rgba(56, 189, 248, 0.3), transparent 60%),
		linear-gradient(135deg, var(--primary-darker), var(--primary));
	color: #fff;
	padding: 64px 0 58px;
	text-align: center;
}

.page-hero-title {
	color: #fff;
	font-size: clamp(26px, 4vw, 40px);
	margin-bottom: 10px;
}

.breadcrumb {
	font-size: 14px;
	color: #bfdbfe;
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
}

.breadcrumb a {
	color: #fff;
	font-weight: 600;
}

.page-wrap {
	padding-top: 56px;
	padding-bottom: 72px;
}

.entry-content {
	max-width: 860px;
	margin: 0 auto;
	color: var(--ink-soft);
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.2em;
}

/* ---------- About ---------- */
.about-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 40px;
	align-items: start;
}

.about-text p {
	color: var(--muted);
}

.about-card {
	background: linear-gradient(160deg, #fff, #f8fafc);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.about-card h3 {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary));
	color: #fff;
	margin: 0;
	padding: 16px 22px;
	font-size: 18px;
}

.identitas-list {
	list-style: none;
	padding: 6px 22px 16px;
}

.identitas-list li {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--border);
	font-size: 14.5px;
}

.identitas-list li:last-child {
	border-bottom: 0;
}

.identitas-list span {
	color: var(--muted);
	flex-shrink: 0;
}

.identitas-list strong {
	color: var(--ink);
	text-align: right;
}

/* ---------- Produk ---------- */
.produk-list {
	display: grid;
	gap: 34px;
}

.produk-block {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.produk-block-head {
	display: flex;
	align-items: center;
	gap: 16px;
	background: linear-gradient(135deg, var(--primary-darker), var(--primary));
	color: #fff;
	padding: 22px 26px;
}

.produk-block-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	flex-shrink: 0;
}

.produk-block-icon svg {
	width: 26px;
	height: 26px;
}

.produk-block-head h3 {
	color: #fff;
	margin: 0;
	font-size: 21px;
}

.produk-block-head p {
	margin: 2px 0 0;
	color: #bfdbfe;
	font-size: 14px;
}

.produk-block-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 0;
}

.produk-block-info,
.produk-block-offer {
	padding: 26px 28px;
}

.produk-block-info {
	border-right: 1px solid var(--border);
}

.produk-block-info h4,
.produk-block-offer h4 {
	font-size: 16px;
	margin-bottom: 14px;
	color: var(--primary-dark);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.produk-desc {
	color: var(--muted);
	font-size: 14.5px;
	margin-top: 16px;
}

.produk-block-offer {
	background: #fafcff;
}

.order-box {
	display: flex;
	align-items: center;
	gap: 20px;
	background: linear-gradient(135deg, var(--primary-darker), var(--primary));
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 28px 30px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.order-box-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.order-box-icon svg {
	width: 28px;
	height: 28px;
}

.order-box-text {
	flex: 1;
	min-width: 240px;
}

.order-box-text h3 {
	color: #fff;
	margin: 0 0 4px;
}

.order-box-text p {
	color: #dbeafe;
	margin: 0;
	font-size: 14.5px;
}

/* ---------- Kontak ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 34px;
	align-items: start;
}

.contact-info {
	display: grid;
	gap: 16px;
}

.contact-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	box-shadow: var(--shadow-sm);
}

.contact-card-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary), var(--sky));
	color: #fff;
}

.contact-card-icon svg {
	width: 22px;
	height: 22px;
}

.contact-card h4 {
	margin: 0 0 4px;
	font-size: 16px;
}

.contact-card p {
	margin: 0;
	color: var(--muted);
	font-size: 14.5px;
}

.contact-form-wrap {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 30px;
	box-shadow: var(--shadow-sm);
}

.form-notice {
	border-radius: 12px;
	padding: 14px 18px;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 14.5px;
}

.form-notice-success {
	background: rgba(5, 150, 105, 0.1);
	color: var(--success);
	border: 1px solid rgba(5, 150, 105, 0.3);
}

.form-notice-error {
	background: rgba(225, 29, 72, 0.08);
	color: var(--danger);
	border: 1px solid rgba(225, 29, 72, 0.3);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-field {
	margin-bottom: 16px;
}

.form-field label {
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
	margin-bottom: 6px;
}

.req {
	color: var(--danger);
}

.form-field input,
.form-field textarea {
	width: 100%;
	border: 1.5px solid var(--border);
	border-radius: 10px;
	padding: 12px 14px;
	font-family: var(--font);
	font-size: 15px;
	color: var(--ink-soft);
	background: #fbfdff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
	background: #fff;
}

.map-wrap {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

.map-wrap iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
}

/* ---------- Blog ---------- */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.blog-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
}

.blog-card-thumb img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-card-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-card-title {
	font-size: 18px;
	margin-bottom: 6px;
}

.blog-card-meta {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 10px;
}

.blog-card-excerpt {
	font-size: 14.5px;
	color: var(--muted);
	flex: 1;
}

.blog-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 14px;
	margin-top: 12px;
}

.blog-card-link svg {
	width: 16px;
	height: 16px;
}

.pagination {
	margin-top: 44px;
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	border-radius: 12px;
	border: 1.5px solid var(--border);
	color: var(--ink-soft);
	font-weight: 600;
}

.pagination .page-numbers.current {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--primary-darker);
	color: #cbd5e1;
	font-size: 14.5px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
	gap: 36px;
	padding: 60px 0 44px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.footer-logo img {
	max-height: 44px;
	width: auto;
}

.footer-logo h4 {
	color: #fff;
	margin: 0;
	font-size: 17px;
	line-height: 1.3;
}

.site-footer p {
	margin-bottom: 14px;
}

.footer-phone {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 14px 16px;
	width: fit-content;
}

.footer-phone-badge {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--sky), var(--primary));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}

.footer-phone-badge svg {
	width: 20px;
	height: 20px;
}

.footer-phone small {
	display: block;
	color: #94a3b8;
	font-size: 12px;
}

.footer-phone strong {
	color: #fff;
	font-size: 16px;
}

.site-footer .widget-title,
.site-footer h4 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 18px;
}

.site-footer .menu {
	list-style: none;
}

.site-footer .menu a {
	color: #cbd5e1;
	padding: 4px 0;
	display: inline-block;
}

.site-footer .menu a:hover {
	color: #fff;
}

.footer-list {
	list-style: none;
}

.footer-list li {
	padding: 4px 0;
}

.footer-contact {
	list-style: none;
	display: grid;
	gap: 10px;
}

.footer-contact li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.footer-contact i {
	display: inline-flex;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	color: var(--sky-light);
}

.footer-contact i svg {
	width: 18px;
	height: 18px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 18px 0;
	font-size: 13.5px;
	color: #94a3b8;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-bottom p {
	margin: 0;
}

/* ---------- Lightbox ---------- */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(2, 6, 23, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	padding: 20px;
}

.lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.lightbox-img {
	max-width: min(1100px, 94vw);
	max-height: 86vh;
	width: auto;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	border: 0;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	transition: background 0.2s ease;
	z-index: 2;
}

.lightbox-close {
	top: 18px;
	right: 18px;
	width: 46px;
	height: 46px;
}

.lightbox-prev,
.lightbox-next {
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	font-size: 34px;
	line-height: 1;
}

.lightbox-prev {
	left: 18px;
}

.lightbox-next {
	right: 18px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
	.lightbox-prev {
		left: 8px;
	}

	.lightbox-next {
		right: 8px;
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.jurusan-grid,
	.tef-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-grid-wide {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

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

	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.produk-block-info {
		border-right: 0;
		border-bottom: 1px solid var(--border);
	}
}

@media (max-width: 768px) {
	.section {
		padding: 54px 0;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.main-navigation {
		position: fixed;
		inset: 0;
		background: rgba(15, 23, 42, 0.6);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s ease, visibility 0.25s ease;
	}

	.main-navigation.is-open {
		opacity: 1;
		visibility: visible;
	}

	.main-navigation .menu {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(320px, 88vw);
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		padding: 24px 18px;
		gap: 6px;
		overflow-y: auto;
		box-shadow: -12px 0 40px rgba(15, 23, 42, 0.25);
	}

	.main-navigation a {
		padding: 13px 16px;
		border-radius: 12px;
	}

	.hero-inner {
		padding: 60px 20px 48px;
	}

	.hero-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.topbar-email {
		display: none;
	}

	.gallery-grid,
	.gallery-grid-wide {
		grid-template-columns: repeat(2, 1fr);
	}

	.kegiatan-grid,
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.produk-block-grid,
	.form-row {
		grid-template-columns: 1fr;
	}

	.cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.site-title {
		font-size: 16px;
	}

	.site-subtitle {
		font-size: 10.5px;
	}

	.jurusan-grid,
	.tef-grid,
	.gallery-grid,
	.gallery-grid-wide,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.welcome-media img {
		height: 300px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
}
