/*!
Theme Name: blogposts
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: blogposts
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

blogposts is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #f8f9fa;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: #333;
	line-height: 1.6;
}

.scroll-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: #2563eb;
	color: #fff;
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
	z-index: 1000;
	pointer-events: none;
}

.scroll-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.scroll-to-top:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
}

.scroll-to-top:focus-visible {
	outline: 3px solid rgba(37, 99, 235, 0.28);
	outline-offset: 3px;
}

.scroll-to-top svg {
	transform: rotate(180deg);
}

.blog-index-accordion-item {
	border: 1px solid #dbe3f0;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	overflow: hidden;
}

.blog-index-accordion-trigger {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1f2937;
	cursor: pointer;
}

.blog-index-accordion-trigger::-webkit-details-marker {
	display: none;
}

.blog-index-accordion-trigger:hover {
	color: #2563eb;
}

.blog-index-accordion-icon {
	flex: 0 0 auto;
	width: 12px;
	height: 12px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.blog-index-accordion-item[open] .blog-index-accordion-icon {
	transform: rotate(225deg);
}

.blog-index-accordion-content {
	padding: 0 1.25rem 1.25rem;
}

@media (max-width: 767px) {
	.scroll-to-top {
		right: 16px;
		bottom: 16px;
	}
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #2563eb;
}



/* ===== NAVBAR ===== */

.navbar {
	background: white;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 999;
}

.navbar-brand {
	font-size: 1.5rem !important;
	font-weight: 700;
	color: #1f2937 !important;
	letter-spacing: -0.5px;
}

.navbar-brand:hover {
	color: #2563eb !important;
}

.nav-link {
	font-weight: 500;
	color: #6b7280 !important;
	margin: 0 0.5rem;
	padding: 0.5rem 0.75rem !important;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.nav-link:hover {
	background-color: #f3f4f6;
	color: #2563eb !important;
}

.navbar-toggler {
	border: none;
	padding: 0;
}

.navbar-toggler:focus {
	box-shadow: none;
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

/* ===== BANNER ===== */

.banner {
	position: relative;
	overflow: hidden;
	height: 320px;
}

.banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner:hover img {
	transform: scale(1.05);
}

/* ===== BLOG CARD ===== */

.blog-card {
	border-radius: 12px;
	overflow: hidden;
	background: white;
	cursor: pointer;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	border: 1px solid #e5e7eb;
	animation: slideUpFade 0.6s ease-out backwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.1s; }
.blog-card:nth-child(5) { animation-delay: 0.2s; }
.blog-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.blog-card:hover {
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
	border-color: #2563eb;
}

.blog-card img {
	width: 100%;
	height: 100%;
	/* object-fit: cover; */
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: block;
}

.blog-card:hover img {
	transform: none;
}

.blog-number {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	padding: 8px 12px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 13px;
	top: 12px;
	left: 12px;
	letter-spacing: 1px;
	color: #1f2937;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	z-index: 10;
}

.blog-card:hover .blog-number {
	background: rgba(37, 99, 235, 0.95);
	color: white;
}

.blog-card .p-4 {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card h5 {
	font-weight: 600;
	font-size: 1.05rem;
	line-height: 1.4;
	color: #1f2937;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
	word-break: break-word;
}

.blog-card h5 a {
	color: inherit;
}

.blog-card:hover h5 a {
	color: #2563eb;
}

.blog-card p {
	color: #6b7280;
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
	flex-grow: 1;
	line-height: 1.5;
}

.blog-card small {
	display: block;
	align-items: center;
	gap: 0.5rem;
	color: #9ca3af;
	font-size: 0.85rem;
	line-height: 1.4;
}

.position-relative {
	position: relative;
}

/* ===== CATEGORY PAGE HERO ===== */

.cat-hero {
	position: relative;
	background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 60%, #1d4ed8 100%);
	padding: 60px 0 50px;
	overflow: hidden;
}

.cat-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
		radial-gradient(ellipse at 80% 0%, rgba(255,255,255,0.08) 0%, transparent 60%);
	pointer-events: none;
}

.cat-hero-content {
	position: relative;
}

.cat-breadcrumb {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.65);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.cat-breadcrumb a {
	color: rgba(255,255,255,0.75);
	transition: color 0.2s ease;
}

.cat-breadcrumb a:hover {
	color: #ffffff;
}

.cat-breadcrumb span:not(:last-child) {
	color: rgba(255,255,255,0.4);
}

.cat-hero-title {
	font-size: 2.6rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 12px;
	letter-spacing: -0.5px;
	text-transform: capitalize;
	line-height: 1.2;
}

.cat-hero-desc {
	font-size: 1.05rem;
	color: rgba(255,255,255,0.75);
	margin: 0 0 20px;
	max-width: 560px;
	line-height: 1.6;
}

.cat-hero-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.cat-hero-badge {
	display: inline-block;
	background: rgba(255,255,255,0.15);
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 20px;
	padding: 5px 16px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	backdrop-filter: blur(4px);
}

.cat-empty {
	text-align: center;
	padding: 80px 20px;
}

.cat-empty-icon {
	font-size: 3.5rem;
	margin-bottom: 16px;
}

.cat-empty h3 {
	font-size: 1.5rem;
	color: #1f2937;
	margin-bottom: 8px;
}

/* ===== CATEGORY (homepage widget) ===== */

.category {
	background: white;
	padding: 18px 24px;
	border-radius: 10px;
	text-align: center;
	font-weight: 600;
	font-size: 0.95rem;
	color: #333;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
	border: 2px solid #e5e7eb;
	position: relative;
	/* overflow: hidden; */
	display: inline-block;
	width: 100%;
}

.category::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(90deg, #2563eb, #1d4ed8); */
	transition: left 0.3s ease;
	z-index: -1;
}

.category:hover {
	color: #2563eb;
	/* box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
	border-color: #2563eb; */
}

.category:hover::before {
	display: none;
}

.category .badge {
	margin-left: 0.5rem;
	font-weight: 600;
}
/* ===== CONTACT FORM ===== */

.contact-box input,
.contact-box textarea {
	margin-bottom: 1rem;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px 16px;
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.contact-box input:focus,
.contact-box textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
	background-color: #f0f9ff;
}

.contact-box button {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	border: none;
	color: white;
	padding: 12px 32px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.contact-box button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.contact-box button:active {
	transform: translateY(-1px);
}

/* ===== FOOTER ===== */

footer {
	background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
	color: white;
	padding: 50px 0 20px;
	margin-top: 60px;
	transition: all 0.3s ease;
}

footer h4 {
	color: white;
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: -0.5px;
}

footer h6 {
	color: white;
}

footer p {
	color: white;
}

footer ul li a {
	color: white !important;
}

footer h5 {
	color: white;
	font-weight: 600;
	margin-bottom: 1rem;
}

footer a {
	color: white !important;
	text-decoration: none;
	margin: 0 15px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
}

footer a:hover {
	color: #2563eb;
	transform: translateY(-2px);
}

footer .container {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 30px;
	margin-top: 30px;
}

/* ===== SECTION TITLES ===== */

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 1.5rem;
	color: #1f2937;
	font-weight: 700;
}

.page-title, .entry-title {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 2rem;
	color: #1f2937;
}

.entry-meta {
	color: #6b7280;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

/* ===== FEATURED IMAGE ===== */

.entry-header .w-100 {
	max-width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* ===== POST CONTENT ===== */

.entry-content {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #374151;
}

.entry-content a {
	color: #2563eb;
	font-weight: 500;
	border-bottom: 2px solid rgba(37, 99, 235, 0.3);
	transition: all 0.3s ease;
}

.entry-content a:hover {
	border-bottom-color: #2563eb;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 2rem 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	color: #333;
	font-weight: 600;
	transition: all 0.3s ease;
}

.pagination a:hover {
	background-color: #2563eb;
	color: white;
	border-color: #2563eb;
	transform: translateY(-2px);
}

.pagination .current {
	background-color: #2563eb;
	color: white;
	border-color: #2563eb;
}

/* ===== CONTAINERS & SECTIONS ===== */

.container {
	max-width: 1200px;
}

main {
	min-height: 60vh;
}

section {
	padding: 1rem;
}

.mt-5 {
	margin-top: 3rem !important;
}

.mb-4 {
	margin-bottom: 1.5rem !important;
}

/* ===== ARCHIVE/BLOG LIST ===== */

.archive-post-item {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 0;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	animation: slideUpFade 0.6s ease-out backwards;
}

.archive-post-item:nth-child(1) { animation-delay: 0.1s; }
.archive-post-item:nth-child(2) { animation-delay: 0.2s; }
.archive-post-item:nth-child(3) { animation-delay: 0.3s; }
.archive-post-item:nth-child(4) { animation-delay: 0.4s; }
.archive-post-item:nth-child(5) { animation-delay: 0.5s; }
.archive-post-item:nth-child(6) { animation-delay: 0.6s; }

.archive-post-item:hover {
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
	transform: translateY(-6px);
	border-color: #2563eb;
}

.archive-post-thumbnail {
	flex: 0 0 auto;
	overflow: hidden;
	min-height: 200px;
}

.archive-post-thumbnail img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.archive-post-item:hover .archive-post-thumbnail img {
	transform: scale(1.08);
}

.archive-post-content {
	flex: 1;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.archive-post-content h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: #1f2937;
	line-height: 1.4;
	word-break: break-word;
}

.archive-post-content h3 a {
	color: inherit;
}

.archive-post-content h3 a:hover {
	color: #2563eb;
}

.archive-post-meta {
	color: #6b7280;
	font-size: 0.85rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.archive-post-excerpt {
	color: #6b7280;
	font-size: 0.95rem;
	line-height: 1.6;
	flex: 1 1 auto;
	margin-bottom: 1rem;
	min-height: 2rem;
}

.archive-post-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid #e5e7eb;
}

.archive-post-categories {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.archive-post-categories a {
	display: inline-block;
	background-color: #f0f9ff;
	color: #2563eb;
	padding: 0.4rem 0.8rem;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.archive-post-categories a:hover {
	background-color: #2563eb;
	color: white;
	transform: translateY(-2px);
}

.read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #2563eb;
	font-weight: 600;
	padding: 0.6rem 1.2rem;
	border: 2px solid #2563eb;
	border-radius: 6px;
	transition: all 0.3s ease;
	white-space: nowrap;
	flex-shrink: 0;
	min-height: 40px;
}

.read-more:hover {
	background-color: #2563eb;
	color: white;
	transform: translateX(4px);
}

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

@media (max-width: 768px) {
	.archive-post-item {
		flex-direction: column;
	}

	.archive-post-thumbnail {
		flex: 0 0 auto;
		min-height: 180px;
	}

	.archive-post-thumbnail img {
		height: 180px;
	}

	.archive-post-content {
		padding: 1.5rem;
	}

	.archive-post-content h3 {
		font-size: 1.1rem;
	}

	.archive-post-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.read-more {
		width: 100%;
		text-align: center;
	}

	.archive-post-categories {
		flex-wrap: wrap;
	}

	.blog-card {
		margin-bottom: 1rem;
	}

	.page-title {
		font-size: 1.5rem;
	}

	footer a {
		display: block;
		margin: 0.5rem 0;
	}
}

/* ===== ANIMATIONS ===== */

@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== POST NAVIGATION (Legacy) ===== */

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin: 3rem 0;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.nav-next,
.nav-previous {
	display: flex;
	align-items: flex-start;
}

.nav-previous {
	justify-content: flex-start;
}

.nav-next {
	justify-content: flex-end;
	text-align: right;
}

.nav-item {
	padding: 1.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	background: #f9fafb;
}

.nav-item:hover {
	background: #f0f9ff;
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.nav-subtitle {
	display: block;
	color: #9ca3af;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.nav-item strong {
	color: #1f2937;
	font-size: 1rem;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.post-navigation {
		grid-template-columns: 1fr;
	}

	.nav-previous,
	.nav-next {
		justify-content: flex-start;
		text-align: left;
	}
}

/* ===== SINGLE POST PAGE ===== */

.single-post-page {
	background: #f8f9fa;
}

/* Hero Section */
.single-hero {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	margin-bottom: 0;
}

.single-hero-image {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.single-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single-hero-fallback {
	background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #7c3aed 100%);
}

.single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
	z-index: 1;
}

.single-hero .container {
	position: relative;
	z-index: 2;
}

.single-hero-content {
	padding: 3rem 0;
	max-width: 800px;
}

.single-post-badge {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.post-number-badge,
.post-year-badge {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.post-number-badge {
	background: #2563eb;
	color: white;
}

.post-year-badge {
	background: rgba(255,255,255,0.2);
	color: white;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,0.25);
}

.single-post-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: white;
	line-height: 1.2;
	margin-bottom: 1.25rem;
	letter-spacing: -0.5px;
}

.single-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 1rem;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: rgba(255,255,255,0.85);
	font-size: 0.9rem;
}

.meta-item svg {
	opacity: 0.7;
}

.meta-item strong {
	color: white;
}

.single-post-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.category-pill {
	display: inline-block;
	padding: 0.3rem 0.75rem;
	border-radius: 50px;
	font-size: 0.78rem;
	font-weight: 600;
	background: rgba(255,255,255,0.15);
	color: white;
	border: 1px solid rgba(255,255,255,0.2);
	backdrop-filter: blur(4px);
	transition: all 0.3s ease;
}

.category-pill:hover {
	background: rgba(255,255,255,0.3);
	color: white;
}

/* Article Content Wrapper */
.single-content-wrapper {
	max-width: 780px;
	margin: -2rem auto 4rem;
	position: relative;
	z-index: 3;
}

.single-article {
	background: white;
	border-radius: 16px;
	padding: 3rem;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
	border: 1px solid #e5e7eb;
}

.single-article .entry-content {
	font-size: 1.1rem;
	line-height: 1.9;
	color: #374151;
}

.single-article .entry-content h2 {
	font-size: 1.6rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e5e7eb;
}

.single-article .entry-content h3 {
	font-size: 1.3rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.single-article .entry-content p {
	margin-bottom: 1.5rem;
}

.single-article .entry-content blockquote {
	margin: 2rem 0;
	padding: 1.5rem 1.5rem 1.5rem 2rem;
	border-left: 4px solid #2563eb;
	background: #f0f9ff;
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: #1e40af;
}

.single-article .entry-content ul,
.single-article .entry-content ol {
	margin: 1.5rem 0;
	padding-left: 1.5rem;
}

.single-article .entry-content li {
	margin-bottom: 0.5rem;
}

.single-article .entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 2rem 0;
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.single-article .entry-content pre {
	background: #1f2937;
	color: #e5e7eb;
	padding: 1.5rem;
	border-radius: 12px;
	overflow-x: auto;
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 2rem 0;
}

.single-article .entry-content code {
	background: #f3f4f6;
	padding: 0.15rem 0.4rem;
	border-radius: 4px;
	font-size: 0.9em;
	color: #e11d48;
}

.single-article .entry-content pre code {
	background: none;
	padding: 0;
	color: inherit;
}

.single-article .entry-content a {
	color: #2563eb;
	font-weight: 500;
	border-bottom: 2px solid rgba(37,99,235,0.3);
	transition: all 0.3s ease;
}

.single-article .entry-content a:hover {
	border-bottom-color: #2563eb;
}

.single-article .entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
}

.single-article .entry-content th {
	background: #f9fafb;
	font-weight: 600;
	text-align: left;
	padding: 0.75rem 1rem;
	border-bottom: 2px solid #e5e7eb;
}

.single-article .entry-content td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #f3f4f6;
}

.single-entry-footer {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e5e7eb;
}

/* Prev / Next Numbered Post Nav */
.single-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin: 2.5rem 0;
}

.post-nav-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: white;
	border-radius: 14px;
	padding: 1.25rem;
	border: 1px solid #e5e7eb;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
}

.post-nav-card:hover {
	border-color: #2563eb;
	box-shadow: 0 8px 24px rgba(37,99,235,0.12);
	transform: translateY(-3px);
	color: inherit;
}

.post-nav-empty {
	visibility: hidden;
}

.post-nav-arrow {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f4f6;
	border-radius: 50%;
	color: #6b7280;
	transition: all 0.3s ease;
}

.post-nav-card:hover .post-nav-arrow {
	background: #2563eb;
	color: white;
}

.post-nav-thumb {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
}

.post-nav-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.post-nav-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #9ca3af;
	font-weight: 600;
}

.post-nav-number {
	font-size: 0.85rem;
	font-weight: 700;
	color: #2563eb;
}

.post-nav-title {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1f2937;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Single Post Responsive */
@media (max-width: 768px) {
	.single-hero {
		min-height: 380px;
	}

	.single-post-title {
		font-size: 1.75rem;
	}

	.single-hero-content {
		padding: 2rem 0;
	}

	.single-article {
		padding: 1.5rem;
		border-radius: 12px;
	}

	.single-article .entry-content {
		font-size: 1rem;
	}

	.single-post-nav {
		grid-template-columns: 1fr;
	}

	.post-nav-next .post-nav-info {
		text-align: left !important;
	}

	.single-post-meta {
		gap: 0.75rem;
	}

	.meta-item {
		font-size: 0.8rem;
	}

	.single-content-wrapper {
		margin-top: -1.5rem;
		margin-bottom: 2rem;
	}
}

/* ===== COMMENTS ===== */

.comments-area {
	margin-top: 3rem;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.comments-title {
	font-size: 1.5rem;
	color: #1f2937;
	margin-bottom: 2rem;
	font-weight: 700;
}

.comment-list {
	list-style: none;
	padding-left: 0;
}

.comment-body {
	background: #f9fafb;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.comment-body:hover {
	border-left-color: #2563eb;
	background: #f0f9ff;
}

.comment-author {
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.comment-text {
	color: #6b7280;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 0.75rem;
}

.comment-form {
	margin-top: 2rem;
	padding: 2rem;
	background: #f9fafb;
	border-radius: 12px;
	display: none;
}

.comment-form h3 {
	font-size: 1.25rem;
	color: #1f2937;
	margin-bottom: 1.5rem;
}

.comment-form label {
	font-weight: 500;
	color: #374151;
	margin-bottom: 0.5rem;
}

.comment-form input,
.comment-form textarea {
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.75rem;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
	font-family: inherit;
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
}

.site-description {
	color: #9ca3af;
	font-size: 0.95rem;
	margin: 0;
}

/* ===== BUTTON STYLES ===== */

.btn-primary,
.btn-outline-primary {
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	border: none;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
	background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
	border-color: #1d4ed8;
}

.btn-outline-primary {
	border-color: #2563eb;
	color: #2563eb;
}

.btn-outline-primary:hover {
	background-color: #2563eb;
	border-color: #2563eb;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
}

/* ===== BREADCRUMBS ===== */

.breadcrumb {
	background: white;
	padding: 1rem;
	margin: 1rem 0;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
}

.breadcrumb-item.active {
	color: #2563eb;
	font-weight: 600;
}

.breadcrumb-item a {
	color: #2563eb;
	text-decoration: none;
	transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
	text-decoration: underline;
}

/* ===== YEAR FILTER STYLES ===== */

.year-filter-section {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: white;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	flex-wrap: wrap;
}

.year-filter-section label {
	margin: 0;
	font-size: 1rem;
	color: #1f2937;
	white-space: nowrap;
}

.year-filter-section select {
	border: 2px solid #2563eb;
	border-radius: 6px;
	padding: 10px 15px;
	font-size: 1rem;
	color: #1f2937;
	background-color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 150px;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 20px;
	padding-right: 40px;
}

.year-filter-section select:hover {
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
	transform: translateY(-2px);
}

.year-filter-section select:focus {
	outline: none;
	border-color: #1d4ed8;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
	.year-filter-section {
		flex-direction: column;
		align-items: stretch;
	}

	.year-filter-section label {
		width: 100%;
	}

	.year-filter-section select {
		width: 100%;
		min-width: unset;
	}
}

/* ===== SEARCH FORM STYLES ===== */

.search-type-select {
	border: 2px solid #2563eb !important;
	border-radius: 6px !important;
	color: #1f2937;
	font-weight: 500;
	transition: all 0.3s ease;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 18px;
	padding-right: 32px !important;
}

.search-type-select:hover {
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
	transform: translateY(-2px);
}

.search-type-select:focus {
	outline: none;
	border-color: #1d4ed8 !important;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}

.navbar .search-type-select option {
	padding: 10px;
	background-color: white;
	color: #1f2937;
}

@media (max-width: 768px) {
	.navbar .d-flex {
		flex-direction: column;
		gap: 10px !important;
	}

	.search-type-select {
		width: 100%;
	}

	.input-group {
		width: 100%;
	}
}

/* ===== YEARS SECTION STYLES ===== */

.years-section {
	background: white;
	padding: 30px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.years-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 15px;
}

.year-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 25px 20px;
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	border: 2px solid #bfdbfe;
	border-radius: 12px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	min-height: 130px;
	position: relative;
	overflow: hidden;
}

.year-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	transition: left 0.3s ease;
	z-index: -1;
}

.year-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
	border-color: #3b82f6;
}

.year-card:hover::before {
	left: 0;
}

.year-card:hover .year-number,
.year-card:hover .year-count {
	color: white;
}

.year-card.active {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	border-color: #1d4ed8;
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.year-card.active .year-number,
.year-card.active .year-count {
	color: white;
}

.year-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #2563eb;
	line-height: 1;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.year-count {
	font-size: 0.95rem;
	color: #1f2937;
	font-weight: 600;
	transition: color 0.3s ease;
	text-align: center;
}

@media (max-width: 1024px) {
	.years-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}

	.year-card {
		min-height: 110px;
		padding: 20px 15px;
	}

	.year-number {
		font-size: 2rem;
	}
}

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

	.years-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 10px;
	}

	.year-card {
		min-height: 100px;
		padding: 15px 10px;
	}

	.year-number {
		font-size: 1.75rem;
		margin-bottom: 5px;
	}

	.year-count {
		font-size: 0.85rem;
	}
}

/* ================================================================
   HOMEPAGE — Modern Trendy Design
   ================================================================ */

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

.hp-hero {
	position: relative;
	overflow: hidden;
	background: #0f172a;
	padding: 0;
}

.hp-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37,99,235,0.35) 0%, transparent 60%),
		radial-gradient(ellipse 60% 40% at 80% 100%, rgba(124,58,237,0.25) 0%, transparent 50%);
	z-index: 1;
}

.hp-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(37,99,235,0.15);
	color: #60a5fa;
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(37,99,235,0.2);
}

.hp-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: white;
	line-height: 1.1;
	letter-spacing: -1.5px;
	margin-bottom: 1.25rem;
}

.hp-hero-desc {
	font-size: 1.15rem;
	color: #94a3b8;
	line-height: 1.7;
	margin-bottom: 2rem;
	max-width: 520px;
}

.hp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.hp-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0.8rem 1.75rem;
	background: #2563eb;
	color: white;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	border: none;
}

.hp-btn-primary:hover {
	background: #1d4ed8;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}

.hp-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0.8rem 1.75rem;
	background: transparent;
	color: #cbd5e1;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	border: 1px solid rgba(255,255,255,0.15);
	transition: all 0.3s ease;
}

.hp-btn-ghost:hover {
	background: rgba(255,255,255,0.08);
	color: white;
	border-color: rgba(255,255,255,0.3);
}

/* Stats */
.hp-stats {
	display: flex;
	gap: 2.5rem;
}

.hp-stat {
	display: flex;
	flex-direction: column;
}

.hp-stat-num {
	font-size: 1.75rem;
	font-weight: 800;
	color: white;
	letter-spacing: -0.5px;
	line-height: 1;
}

.hp-stat-label {
	font-size: 0.8rem;
	color: #64748b;
	font-weight: 500;
	margin-top: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Hero Card */
.hp-hero-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 20px;
	overflow: hidden;
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
	transform: rotate(2deg);
}

.hp-hero-card:hover {
	transform: rotate(0deg);
	border-color: rgba(37,99,235,0.4);
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hp-hero-card-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #2563eb;
	color: white;
	padding: 0.3rem 0.75rem;
	border-radius: 50px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	z-index: 2;
}

.hp-hero-card-img {
	height: 200px;
	overflow: hidden;
}

.hp-hero-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.hp-hero-card:hover .hp-hero-card-img img {
	transform: scale(1.05);
}

.hp-hero-card-body {
	padding: 1.5rem;
	position: relative;
}

.hp-hero-card-num {
	display: inline-block;
	background: rgba(37,99,235,0.15);
	color: #60a5fa;
	padding: 0.2rem 0.6rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.hp-hero-card-body h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.hp-hero-card-body h3 a {
	color: inherit;
}

.hp-hero-card-body h3 a:hover {
	color: #60a5fa;
}

.hp-hero-card-body p {
	color: #94a3b8;
	font-size: 0.85rem;
	line-height: 1.5;
	margin-bottom: 0.75rem;
}

.hp-hero-card-meta {
	display: flex;
	justify-content: space-between;
	color: #64748b;
	font-size: 0.8rem;
}

/* ===== SECTIONS ===== */

.hp-section {
	padding: 5rem 0;
}

.hp-section-alt {
	background: #f1f5f9;
}

.hp-section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.hp-section-tag {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #2563eb;
	margin-bottom: 0.5rem;
}

.hp-section-title {
	font-size: 2rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 0;
	letter-spacing: -0.5px;
}

.hp-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #2563eb;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.hp-link-arrow:hover {
	color: #1d4ed8;
	gap: 10px;
}

/* Card meta pills */
.hp-card-cat {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	background: #eff6ff;
	color: #2563eb;
	border-radius: 6px;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hp-card-year {
	display: inline-block;
	padding: 0.2rem 0.5rem;
	background: #f1f5f9;
	color: #64748b;
	border-radius: 6px;
	font-size: 0.72rem;
	font-weight: 600;
}

.hp-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid #f1f5f9;
}

/* ===== YEARS GRID ===== */

.hp-years-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1rem;
}

.hp-year-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 2rem 1.5rem;
	background: white;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	text-align: center;
}

.hp-year-card:hover {
	border-color: #2563eb;
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(37,99,235,0.12);
	color: inherit;
}

.hp-year-card:hover .hp-year-num {
	color: #2563eb;
}

.hp-year-num {
	font-size: 2rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -1px;
	line-height: 1;
	transition: color 0.3s ease;
}

.hp-year-count {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #2563eb;
	margin-top: 0.5rem;
	line-height: 1;
}

.hp-year-count span {
	font-size: 0.75rem;
	font-weight: 500;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 0.25rem;
}

.hp-year-arrow {
	position: absolute;
	top: 12px;
	right: 12px;
	opacity: 0;
	color: #2563eb;
	transition: all 0.3s ease;
}

.hp-year-card:hover .hp-year-arrow {
	opacity: 1;
}

/* ===== CATEGORIES ===== */

.hp-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1rem;
}

.hp-cat-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: white;
	border-radius: 14px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
}

.hp-cat-card:hover {
	border-color: #2563eb;
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(37,99,235,0.1);
	color: inherit;
}

.hp-cat-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eff6ff;
	color: #2563eb;
	border-radius: 12px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.hp-cat-card:hover .hp-cat-icon {
	background: #2563eb;
	color: white;
}

.hp-cat-info {
	flex: 1;
	min-width: 0;
}

.hp-cat-name {
	display: block;
	font-weight: 600;
	color: #0f172a;
	font-size: 0.95rem;
}

.hp-cat-count {
	display: block;
	font-size: 0.8rem;
	color: #94a3b8;
}

.hp-cat-arrow {
	flex-shrink: 0;
	color: #cbd5e1;
	transition: all 0.3s ease;
}

.hp-cat-card:hover .hp-cat-arrow {
	color: #2563eb;
	transform: translateX(4px);
}

/* ===== CTA ===== */

.hp-cta {
	padding: 5rem 0;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hp-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.hp-cta-content h2 {
	font-size: 2rem;
	font-weight: 800;
	color: white;
	margin-bottom: 0.5rem;
	letter-spacing: -0.5px;
}

.hp-cta-content p {
	color: #94a3b8;
	font-size: 1.05rem;
	max-width: 480px;
	line-height: 1.7;
	margin-bottom: 0;
}

.hp-btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0.85rem 2rem;
	background: white;
	color: #0f172a;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.hp-btn-white:hover {
	background: #f1f5f9;
	color: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

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

@media (max-width: 991px) {
	.hp-hero-title {
		font-size: 2.5rem;
	}

	.hp-hero-desc {
		font-size: 1rem;
	}

	.hp-stats {
		gap: 1.5rem;
	}

	.hp-stat-num {
		font-size: 1.35rem;
	}

	.hp-section {
		padding: 3.5rem 0;
	}

	.hp-cta {
		padding: 3.5rem 0;
	}

	.hp-cta-inner {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.hp-cta-content p {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.hp-hero-title {
		font-size: 2rem;
	}

	.hp-hero-actions {
		flex-direction: column;
	}

	.hp-btn-primary,
	.hp-btn-ghost {
		justify-content: center;
		width: 100%;
	}

	.hp-stats {
		gap: 1.5rem;
		justify-content: space-between;
	}

	.hp-section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.hp-section-title {
		font-size: 1.6rem;
	}

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

	.hp-cat-grid {
		grid-template-columns: 1fr;
	}

	.hp-cta-content h2 {
		font-size: 1.6rem;
	}
}

/* ================================================================
   ABOUT US PAGE
   ================================================================ */

/* Hero */
.about-hero {
	position: relative;
	overflow: hidden;
	background: #0f172a;
	padding: 6rem 0 5rem;
}

.about-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 50% at 30% -10%, rgba(37,99,235,0.3) 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 70% 110%, rgba(124,58,237,0.2) 0%, transparent 50%);
	z-index: 1;
}

.about-hero-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
	margin: 0 auto;
}

.about-hero-label {
	display: inline-block;
	background: rgba(37,99,235,0.15);
	color: #60a5fa;
	padding: 0.4rem 1.25rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(37,99,235,0.2);
}

.about-hero-title {
	font-size: 3rem;
	font-weight: 800;
	color: white;
	line-height: 1.15;
	letter-spacing: -1px;
	margin-bottom: 1.25rem;
}

.text-gradient {
	background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-hero-desc {
	font-size: 1.15rem;
	color: #94a3b8;
	line-height: 1.7;
	max-width: 520px;
	margin: 0 auto;
}

/* Sections */
.about-section {
	padding: 5rem 0;
}

.about-section-alt {
	background: #f8fafc;
}

.about-heading {
	font-size: 2rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.5px;
	margin-bottom: 1.25rem;
}

.about-text {
	font-size: 1.05rem;
	color: #475569;
	line-height: 1.8;
	margin-bottom: 1rem;
}

/* Image Block */
.about-img-block {
	position: relative;
}

.about-img {
	width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    object-position: top;
}

.about-img-accent {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	top: 16px;
	left: -16px;
	z-index: 1;
	opacity: 0.15;
}

.about-img-accent-right {
	left: auto;
	right: -16px;
}

/* Stats */
.about-stats-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.about-stat-card {
	text-align: center;
	padding: 2.5rem 1.5rem;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	transition: all 0.3s ease;
}

.about-stat-card:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(37,99,235,0.3);
	transform: translateY(-4px);
}

.about-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(37,99,235,0.15);
	color: #60a5fa;
	margin-bottom: 1.25rem;
}

.about-stat-num {
	font-size: 2.25rem;
	font-weight: 800;
	color: white;
	letter-spacing: -1px;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.about-stat-label {
	font-size: 0.85rem;
	color: #64748b;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Topics Grid */
.about-topics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.25rem;
}

.about-topic-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.about-topic-card:hover {
	border-color: #2563eb;
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(37,99,235,0.1);
}

.about-topic-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #eff6ff;
	color: #2563eb;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.about-topic-card:hover .about-topic-icon {
	background: #2563eb;
	color: white;
}

.about-topic-name {
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.25rem;
}

.about-topic-count {
	font-size: 0.8rem;
	color: #94a3b8;
	margin-bottom: 0.75rem;
}

.about-topic-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #2563eb;
	transition: all 0.3s ease;
}

.about-topic-link:hover {
	gap: 8px;
	color: #1d4ed8;
}

/* Values */
.about-values-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 1rem;
}

.about-value {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.about-value-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eff6ff;
	color: #2563eb;
	border-radius: 12px;
	margin-top: 2px;
}

.about-value h5 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.25rem;
}

.about-value p {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Timeline */
.about-timeline {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.about-timeline-item {
	position: relative;
	flex: 0 0 200px;
}

.about-timeline-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #2563eb;
	border: 3px solid #dbeafe;
	margin: 0 auto 1rem;
}

.about-timeline-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.about-timeline-card:hover {
	border-color: #2563eb;
	box-shadow: 0 8px 24px rgba(37,99,235,0.1);
	transform: translateY(-3px);
}

.about-timeline-year {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.5px;
	margin-bottom: 0.25rem;
}

.about-timeline-count {
	display: block;
	font-size: 0.8rem;
	color: #64748b;
	margin-bottom: 0.75rem;
}

/* About Page Responsive */
@media (max-width: 991px) {
	.about-hero-title {
		font-size: 2.25rem;
	}

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

	.about-section {
		padding: 3.5rem 0;
	}
}

@media (max-width: 767px) {
	.about-hero {
		padding: 4rem 0 3rem;
	}

	.about-hero-title {
		font-size: 1.75rem;
	}

	.about-hero-desc {
		font-size: 1rem;
	}

	.about-heading {
		font-size: 1.6rem;
	}

	.about-stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}

	.about-stat-num {
		font-size: 1.75rem;
	}

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

	.about-img {
		height: 250px;
	}

	.about-timeline {
		flex-direction: column;
		align-items: center;
	}

	.about-timeline-item {
		flex: 0 0 auto;
		width: 100%;
		max-width: 300px;
	}
}

/* ================================================================
   CONTACT US PAGE
   ================================================================ */

/* Hero */
.contact-hero {
	position: relative;
	overflow: hidden;
	background: #0f172a;
	padding: 6rem 0 5rem;
}

.contact-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 50% -20%, rgba(37,99,235,0.35) 0%, transparent 60%),
		radial-gradient(ellipse 40% 40% at 80% 100%, rgba(124,58,237,0.2) 0%, transparent 50%),
		radial-gradient(ellipse 30% 30% at 10% 80%, rgba(16,185,129,0.12) 0%, transparent 50%);
	z-index: 1;
}

.contact-hero-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
	margin: 0 auto;
}

.contact-hero-label {
	display: inline-block;
	background: rgba(37,99,235,0.15);
	color: #60a5fa;
	padding: 0.4rem 1.25rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(37,99,235,0.2);
}

.contact-hero-title {
	font-size: 3rem;
	font-weight: 800;
	color: white;
	line-height: 1.15;
	letter-spacing: -1px;
	margin-bottom: 1.25rem;
}

.contact-hero-desc {
	font-size: 1.1rem;
	color: #94a3b8;
	line-height: 1.7;
	max-width: 520px;
	margin: 0 auto;
}

/* Info Cards */
.contact-info-section {
	padding: 0;
	margin-top: -2.5rem;
	position: relative;
	z-index: 10;
	margin-bottom: 2rem;
}

.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.contact-info-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 2.25rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-info-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(0,0,0,0.1);
	border-color: #2563eb;
}

.contact-info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	color: #2563eb;
	margin-bottom: 1.25rem;
}

.contact-info-icon-purple {
	background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
	color: #7c3aed;
}

.contact-info-icon-green {
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
	color: #059669;
}

.contact-info-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.5rem;
}

.contact-info-text {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.contact-info-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
	font-weight: 600;
	color: #2563eb;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-info-link:hover {
	gap: 10px;
	color: #1d4ed8;
}

.contact-info-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #eff6ff;
	color: #2563eb;
	padding: 0.35rem 1rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
}

.contact-info-badge-green {
	background: #ecfdf5;
	color: #059669;
}

/* Form Section */
.contact-form-section {
	padding: 4rem 0 5rem;
}

.contact-form-sidebar {
	position: sticky;
	top: 2rem;
}

.contact-sidebar-title {
	font-size: 2rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.5px;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.contact-sidebar-text {
	font-size: 1rem;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.contact-sidebar-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.92rem;
	color: #334155;
	font-weight: 500;
}

.contact-feature-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #ecfdf5;
	color: #059669;
}

/* Form Card */
.contact-form-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 2.75rem;
	box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.contact-form-group {
	margin-bottom: 1.5rem;
}

.contact-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 0.5rem;
	letter-spacing: 0.3px;
}

.contact-label .required {
	color: #ef4444;
}

.contact-input {
	width: 100%;
	padding: 0.85rem 1.15rem;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	font-size: 0.95rem;
	color: #0f172a;
	background: #f8fafc;
	transition: all 0.25s ease;
	font-family: inherit;
	outline: none;
}

.contact-input::placeholder {
	color: #94a3b8;
}

.contact-input:focus {
	border-color: #2563eb;
	background: white;
	box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

.contact-textarea {
	resize: vertical;
	min-height: 140px;
}

.contact-submit-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0.9rem 2.25rem;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
	box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}

.contact-submit-btn:hover {
	background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}

.contact-submit-btn:active {
	transform: translateY(0);
}

/* Success State */
.contact-success {
	text-align: center;
	padding: 3rem 1rem;
}

.contact-success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #ecfdf5;
	color: #059669;
	margin-bottom: 1.5rem;
}

.contact-success h3 {
	font-size: 1.5rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 0.75rem;
}

.contact-success p {
	font-size: 1rem;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.contact-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.7rem 1.75rem;
	border: 2px solid #2563eb;
	color: #2563eb;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-btn-outline:hover {
	background: #2563eb;
	color: white;
}

/* Error State */
.contact-error {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 1rem 1.25rem;
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #dc2626;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

/* FAQ Section */
.contact-faq-section {
	padding: 5rem 0;
	background: #f8fafc;
}

.contact-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.contact-faq-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.contact-faq-card:hover {
	border-color: #2563eb;
	box-shadow: 0 8px 32px rgba(37,99,235,0.08);
	transform: translateY(-3px);
}

.contact-faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #eff6ff;
	color: #2563eb;
	margin-bottom: 1rem;
}

.contact-faq-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.5rem;
}

.contact-faq-text {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Contact Page Responsive */
@media (max-width: 991px) {
	.contact-hero-title {
		font-size: 2.25rem;
	}

	.contact-info-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.contact-info-section {
		margin-top: -1.5rem;
	}

	.contact-form-section {
		padding: 3rem 0 4rem;
	}

	.contact-form-sidebar {
		position: static;
	}

	.contact-sidebar-title {
		font-size: 1.6rem;
	}

	.contact-form-card {
		padding: 2rem;
	}
}

@media (max-width: 767px) {
	.contact-hero {
		padding: 4rem 0 3.5rem;
	}

	.contact-hero-title {
		font-size: 1.8rem;
	}

	.contact-hero-desc {
		font-size: 0.95rem;
	}

	.contact-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-form-card {
		padding: 1.5rem;
		border-radius: 18px;
	}

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

	.contact-submit-btn {
		width: 100%;
		justify-content: center;
	}
}
}