/*
Theme Name: LocalSkill
Theme URI: https://localskill.example/
Author: LocalSkill
Author URI: https://localskill.example/
Description: Professional theme for LocalSkill Connect — a hyperlocal worker marketplace. Clean, modern, mobile-first. Designed to pair with the LocalSkill Connect plugin but fully functional as a standalone site.
Version: 3.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: localskill
Tags: marketplace, business, one-column, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, rtl-language-support, theme-options, threaded-comments, translation-ready
*/

/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
	--primary: #4F46E5;
	--primary-hover: #4338CA;
	--primary-active: #3730A3;
	--primary-50: #EEF2FF;
	--primary-100: #E0E7FF;
	--primary-200: #C7D2FE;

	--text: #0F172A;
	--text-secondary: #475569;
	--text-tertiary: #64748B;
	--text-quaternary: #94A3B8;

	--bg: #FFFFFF;
	--bg-secondary: #F8FAFC;
	--bg-tertiary: #F1F5F9;

	--border: #E2E8F0;
	--border-subtle: #F1F5F9;
	--border-strong: #CBD5E1;

	--success: #059669;
	--success-bg: #ECFDF5;
	--success-text: #065F46;
	--warning: #D97706;
	--warning-bg: #FFFBEB;
	--danger: #DC2626;
	--danger-bg: #FEF2F2;
	--rating: #F59E0B;

	--radius-sm: 6px;
	--radius: 8px;
	--radius-md: 10px;
	--radius-lg: 12px;
	--radius-xl: 16px;
	--radius-full: 9999px;

	--shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
	--shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
	--shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
	--shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
	--shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

	--font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-hi: 'Noto Sans Devanagari', var(--font);
	--font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

	--transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
	margin: 0;
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--text);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
	margin: 0 0 0.5em;
}

h1 { font-size: 32px; letter-spacing: -0.025em; }
h2 { font-size: 24px; letter-spacing: -0.02em; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

p { margin: 0 0 1em; color: var(--text-secondary); }

a {
	color: var(--primary);
	text-decoration: none;
	transition: color var(--transition);
}
a:hover { color: var(--primary-hover); }

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

button { font-family: inherit; cursor: pointer; }

ul, ol { padding-left: 24px; }

code, pre {
	font-family: var(--font-mono);
	font-size: 0.9em;
}

code {
	background: var(--bg-tertiary);
	padding: 2px 6px;
	border-radius: 4px;
}

pre {
	background: var(--bg-tertiary);
	padding: 16px;
	border-radius: var(--radius-md);
	overflow-x: auto;
}

/* Utilities */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0);
	white-space: nowrap; border: 0;
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(8px);
	-webkit-backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--border-subtle);
}

.site-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.015em;
	flex-shrink: 0;
}

.site-brand:hover { color: var(--text); }

.site-logo-mark {
	width: 36px;
	height: 36px;
	background: var(--primary);
	border-radius: 9px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}

.site-logo-mark svg {
	width: 18px;
	height: 18px;
}

/* Navigation */
.site-nav { flex: 1; }

.site-nav ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 4px;
	justify-content: center;
}

.site-nav a {
	display: inline-block;
	padding: 8px 14px;
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 14px;
	border-radius: var(--radius);
	transition: var(--transition);
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
	background: var(--bg-secondary);
	color: var(--text);
}

.site-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.site-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	font-weight: 600;
	font-size: 14px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition);
	white-space: nowrap;
	font-family: var(--font);
}

.site-btn-ghost { color: var(--text); background: transparent; }
.site-btn-ghost:hover { background: var(--bg-secondary); color: var(--text); }

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

/* Mobile toggle */
.site-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 8px;
	cursor: pointer;
	color: var(--text);
}

.site-toggle svg { width: 20px; height: 20px; }

/* ==========================================================================
   Main layout
   ========================================================================== */
.site-main { min-height: 400px; }

.page-wrap {
	max-width: 780px;
	margin: 0 auto;
	padding: 48px 20px 64px;
}

.page-wrap-wide {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 20px 64px;
}

/* ==========================================================================
   Single / Page content
   ========================================================================== */
.entry-header { margin-bottom: 32px; }

.entry-title {
	font-size: 36px;
	margin: 0 0 12px;
	letter-spacing: -0.025em;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: var(--text-tertiary);
	margin-bottom: 24px;
}

.entry-meta a { color: var(--text-tertiary); }
.entry-meta a:hover { color: var(--primary); }

.entry-thumbnail {
	margin-bottom: 32px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.entry-thumbnail img { width: 100%; height: auto; display: block; }

.entry-content {
	font-size: 16px;
	line-height: 1.75;
	color: var(--text);
}

.entry-content p { margin-bottom: 1.25em; color: var(--text); }
.entry-content p:last-child { margin-bottom: 0; }

.entry-content h2 { margin-top: 2em; margin-bottom: 0.6em; font-size: 26px; }
.entry-content h3 { margin-top: 1.5em; margin-bottom: 0.5em; font-size: 20px; }

.entry-content a {
	color: var(--primary);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.entry-content img {
	border-radius: var(--radius-md);
	margin: 1.5em 0;
}

.entry-content blockquote {
	border-left: 3px solid var(--primary);
	padding: 4px 0 4px 20px;
	margin: 1.5em 0;
	color: var(--text-secondary);
	font-size: 17px;
	font-style: italic;
}

.entry-content ul, .entry-content ol {
	padding-left: 24px;
	margin: 1em 0;
}

.entry-content li { margin: 0.25em 0; }

.entry-content hr {
	border: 0;
	border-top: 1px solid var(--border);
	margin: 2em 0;
}

.entry-footer {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
	color: var(--text-tertiary);
}

.entry-footer a { color: var(--text-secondary); }

/* ==========================================================================
   Post cards (archive / home)
   ========================================================================== */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	margin-bottom: 48px;
}

.post-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color var(--transition), box-shadow var(--transition);
	display: flex;
	flex-direction: column;
}

.post-card:hover {
	border-color: var(--border-strong);
	box-shadow: var(--shadow-sm);
}

.post-card-thumb {
	aspect-ratio: 16/9;
	background: var(--bg-tertiary);
	overflow: hidden;
	display: block;
}

.post-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}

.post-card:hover .post-card-thumb img { transform: scale(1.02); }

.post-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.post-card-meta {
	font-size: 12px;
	color: var(--text-tertiary);
	margin-bottom: 8px;
}

.post-card-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px;
	line-height: 1.35;
}

.post-card-title a { color: var(--text); }
.post-card-title a:hover { color: var(--primary); }

.post-card-excerpt {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 0 0 14px;
	line-height: 1.55;
	flex: 1;
}

.post-card-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--primary);
	font-size: 13px;
	font-weight: 600;
}

/* Page header (archive/search) */
.page-header {
	margin-bottom: 40px;
	text-align: center;
}

.page-title {
	font-size: 32px;
	margin: 0 0 8px;
	letter-spacing: -0.025em;
}

.page-description {
	font-size: 15px;
	color: var(--text-tertiary);
	margin: 0;
}

/* ==========================================================================
   Landing sections (front-page.php)
   ========================================================================== */

/* Hero */
.ls-hero {
	padding: 80px 20px 60px;
	background: var(--bg);
	border-bottom: 1px solid var(--border-subtle);
}

.ls-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ls-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--primary-50);
	color: var(--primary);
	padding: 5px 12px;
	border-radius: var(--radius-full);
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 20px;
	border: 1px solid var(--primary-100);
}

.ls-hero-badge-dot {
	width: 6px; height: 6px;
	background: var(--primary);
	border-radius: 50%;
	animation: ls-pulse 2s infinite;
}

@keyframes ls-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.ls-hero-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.035em;
	margin: 0 0 20px;
	color: var(--text);
}

.ls-hero-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	line-height: 1.55;
	margin: 0 0 32px;
	max-width: 520px;
}

.ls-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.ls-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	border: 1px solid transparent;
	border-radius: var(--radius-md);
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition);
	white-space: nowrap;
	min-height: 48px;
}

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

.ls-btn-secondary {
	background: var(--bg);
	color: var(--text);
	border-color: var(--border);
}
.ls-btn-secondary:hover {
	background: var(--bg-secondary);
	border-color: var(--border-strong);
}

.ls-hero-trust {
	display: flex;
	gap: 24px;
	font-size: 13px;
	color: var(--text-tertiary);
	flex-wrap: wrap;
}

.ls-hero-trust > div {
	display: flex;
	align-items: center;
	gap: 6px;
}

.ls-hero-trust svg {
	color: var(--success);
	width: 14px;
	height: 14px;
}

/* Hero mockup */
.ls-hero-visual { position: relative; }

.ls-hero-mockup {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 20px;
	box-shadow: var(--shadow-lg);
}

.ls-mockup-top {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 14px;
}

.ls-mockup-avatar {
	width: 56px; height: 56px;
	border-radius: var(--radius-full);
	background: var(--primary-50);
	color: #4338CA;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 20px;
	flex-shrink: 0;
}

.ls-mockup-info { flex: 1; min-width: 0; }

.ls-mockup-name-row {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 2px;
}

.ls-mockup-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
}

.ls-verified-badge {
	color: var(--success);
	flex-shrink: 0;
	width: 16px; height: 16px;
}

.ls-mockup-meta {
	font-size: 13px;
	color: var(--text-tertiary);
	margin: 0 0 6px;
}

.ls-rating-chip {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	background: var(--success-bg);
	color: var(--success-text);
	padding: 2px 8px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 12px;
}

.ls-rating-chip svg { width: 11px; height: 11px; }

.ls-review-count {
	color: var(--text-tertiary);
	font-size: 13px;
	margin-left: 8px;
}

.ls-mockup-side {
	text-align: right;
	flex-shrink: 0;
}

.ls-distance {
	font-size: 13px;
	color: var(--text-secondary);
	font-weight: 500;
	margin-bottom: 3px;
}

.ls-availability {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 500;
	color: var(--success);
}

.ls-availability-dot {
	width: 6px;
	height: 6px;
	border-radius: var(--radius-full);
	background: var(--success);
}

.ls-mockup-stats {
	display: flex;
	gap: 16px;
	padding: 12px 0;
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	font-size: 12px;
	color: var(--text-tertiary);
	margin-bottom: 14px;
}

.ls-mockup-stats strong {
	color: var(--text);
	font-weight: 600;
}

.ls-mockup-bio {
	font-size: 13px;
	color: var(--text-secondary);
	margin: 0 0 14px;
	line-height: 1.5;
}

.ls-mockup-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.ls-mockup-btn {
	padding: 10px 14px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	border: 1px solid;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-decoration: none;
	transition: var(--transition);
}

.ls-mockup-btn-secondary {
	background: var(--bg);
	color: var(--text);
	border-color: var(--border);
}
.ls-mockup-btn-secondary:hover { background: var(--bg-secondary); color: var(--text); }

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

.ls-mockup-btn svg { width: 14px; height: 14px; }

/* Section head */
.ls-section-head {
	text-align: center;
	margin: 0 auto 48px;
	max-width: 640px;
}

.ls-section-eyebrow {
	font-size: 12px;
	font-weight: 600;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}

.ls-section-title {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 10px;
	letter-spacing: -0.025em;
}

.ls-section-desc {
	font-size: 15px;
	color: var(--text-tertiary);
	line-height: 1.6;
	margin: 0;
}

/* Services grid */
.ls-services {
	padding: 70px 20px;
	background: var(--bg-secondary);
}

.ls-services-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.ls-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
}

.ls-service-tile {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 18px 20px;
	text-decoration: none;
	transition: var(--transition);
	display: flex;
	align-items: center;
	gap: 14px;
}

.ls-service-tile:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow-sm);
	transform: translateY(-1px);
}

.ls-service-icon {
	width: 40px; height: 40px;
	background: var(--primary-50);
	color: var(--primary);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ls-service-icon svg { width: 20px; height: 20px; }

.ls-service-name {
	font-weight: 600;
	font-size: 14px;
	color: var(--text);
	margin: 0 0 2px;
}

.ls-service-count {
	font-size: 12px;
	color: var(--text-tertiary);
}

/* Features */
.ls-features {
	padding: 70px 20px;
	background: var(--bg);
}

.ls-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.ls-feature {
	padding: 24px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: var(--transition);
}

.ls-feature:hover {
	border-color: var(--border-strong);
	box-shadow: var(--shadow-sm);
}

.ls-feature-icon {
	width: 44px; height: 44px;
	border-radius: var(--radius-md);
	background: var(--primary-50);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

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

.ls-feature-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px;
	color: var(--text);
}

.ls-feature-desc {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.55;
}

/* How it works */
.ls-how {
	padding: 70px 20px;
	background: var(--bg-secondary);
}

.ls-how-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.ls-how-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.ls-how-step {
	padding: 24px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}

.ls-step-number {
	width: 32px; height: 32px;
	border-radius: var(--radius);
	background: var(--primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 16px;
}

.ls-step-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px;
}

.ls-step-desc {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.55;
	margin: 0;
}

/* Stats */
.ls-stats {
	padding: 60px 20px;
	background: var(--text);
	color: #fff;
}

.ls-stats-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.ls-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 40px;
}

.ls-stat {
	text-align: center;
}

.ls-stat-value {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 8px;
	color: #fff;
}

.ls-stat-label {
	font-size: 13px;
	color: #94A3B8;
	font-weight: 500;
}

/* Testimonials */
.ls-testimonials {
	padding: 70px 20px;
	background: var(--bg);
}

.ls-testimonials-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.ls-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.ls-testimonial {
	padding: 24px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}

.ls-testimonial-rating {
	display: flex;
	gap: 2px;
	margin-bottom: 12px;
	color: var(--rating);
}

.ls-testimonial-rating svg { width: 16px; height: 16px; }

.ls-testimonial-text {
	font-size: 14px;
	color: var(--text);
	line-height: 1.6;
	margin: 0 0 16px;
	font-weight: 500;
}

.ls-testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ls-author-avatar {
	width: 40px; height: 40px;
	border-radius: var(--radius-full);
	background: var(--primary-50);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
	flex-shrink: 0;
}

.ls-author-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	margin: 0;
}

.ls-author-role {
	font-size: 12px;
	color: var(--text-tertiary);
	margin: 0;
}

/* CTA */
.ls-cta {
	padding: 70px 20px;
	background: var(--bg-secondary);
}

.ls-cta-banner {
	max-width: 960px;
	margin: 0 auto;
	background: var(--text);
	color: #fff;
	border-radius: var(--radius-xl);
	padding: 56px 48px;
	text-align: center;
}

.ls-cta-title {
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.025em;
}

.ls-cta-desc {
	font-size: 16px;
	color: #CBD5E1;
	max-width: 480px;
	margin: 0 auto 28px;
	line-height: 1.55;
}

.ls-cta-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.ls-cta-btn-primary {
	background: var(--primary);
	color: #fff !important;
	padding: 13px 24px;
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
	text-decoration: none;
}
.ls-cta-btn-primary:hover {
	background: var(--primary-hover);
	color: #fff !important;
}

.ls-cta-btn-secondary {
	background: transparent;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 13px 24px;
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
	text-decoration: none;
}
.ls-cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Error 404
   ========================================================================== */
.error-404 {
	text-align: center;
	padding: 80px 20px;
	max-width: 520px;
	margin: 0 auto;
}

.error-404-code {
	font-size: 88px;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
	letter-spacing: -0.04em;
	margin: 0 0 16px;
}

.error-404 h1 {
	font-size: 28px;
	margin: 0 0 12px;
}

.error-404 p {
	font-size: 15px;
	color: var(--text-tertiary);
	margin: 0 0 24px;
}

/* ==========================================================================
   Search form
   ========================================================================== */
.search-form {
	display: flex;
	gap: 8px;
	max-width: 480px;
	margin: 0 auto;
}

.search-form input[type="search"] {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 14px;
	color: var(--text);
	background: var(--bg);
}

.search-form input[type="search"]:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.search-form button {
	padding: 10px 18px;
	background: var(--primary);
	color: #fff;
	border: none;
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.search-form button:hover { background: var(--primary-hover); }

/* ==========================================================================
   Comments
   ========================================================================== */
.comments-area {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}

.comments-title {
	font-size: 20px;
	margin-bottom: 24px;
}

.comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}

.comment-body {
	padding: 20px;
	background: var(--bg-secondary);
	border-radius: var(--radius-md);
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.6;
}

.comment-author {
	font-weight: 600;
	color: var(--text);
	margin-bottom: 4px;
}

.comment-metadata {
	font-size: 12px;
	color: var(--text-tertiary);
	margin-bottom: 10px;
}

.comment-reply-link {
	font-size: 13px;
	font-weight: 600;
}

.comment-form label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 14px;
	margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.form-submit input[type="submit"] {
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 10px 18px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination,
.posts-pagination {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin: 48px 0 0;
	flex-wrap: wrap;
}

.pagination .page-numbers,
.posts-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition);
}

.pagination .page-numbers:hover,
.posts-pagination .page-numbers:hover {
	border-color: var(--border-strong);
	color: var(--text);
}

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

/* ==========================================================================
   Widgets / Sidebar
   ========================================================================== */
.widget {
	margin-bottom: 32px;
	padding: 20px;
	background: var(--bg-secondary);
	border-radius: var(--radius-md);
}

.widget-title {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text);
	margin: 0 0 16px;
}

.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget li {
	padding: 6px 0;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 14px;
}

.widget li:last-child { border-bottom: none; }

.widget a {
	color: var(--text-secondary);
	text-decoration: none;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--text);
	color: #CBD5E1;
	padding: 56px 20px 32px;
	margin-top: 64px;
}

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

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-cols {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 24px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 700;
	font-size: 17px;
	margin-bottom: 14px;
}

.footer-tagline {
	font-size: 13px;
	color: #94A3B8;
	line-height: 1.55;
	margin: 0;
	max-width: 280px;
}

.footer-col h4 {
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col li {
	margin-bottom: 8px;
	font-size: 13px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 12px;
	color: #94A3B8;
}

.footer-socials {
	display: flex;
	gap: 8px;
}

.footer-socials a {
	width: 32px; height: 32px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.footer-socials a:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.footer-socials svg { width: 14px; height: 14px; }

/* ==========================================================================
   WordPress core alignment & image classes
   ========================================================================== */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.alignnone { margin: 0 0 16px; }
.wp-caption {
	max-width: 100%;
	margin: 0 0 16px;
}
.wp-caption-text {
	font-size: 13px;
	color: var(--text-tertiary);
	text-align: center;
	margin-top: 6px;
}
.sticky { background: var(--bg-secondary); }
.gallery { margin: 16px 0; }
.gallery-item { display: inline-block; vertical-align: top; margin: 0 4px 4px 0; }
.gallery-caption { display: block; font-size: 12px; color: var(--text-tertiary); }

/* Screen reader */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 968px) {
	.ls-hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.ls-hero-title { font-size: 36px; }
	.footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
	.site-nav { display: none; }
	.site-actions .site-btn-ghost { display: none; }
	.site-toggle { display: inline-flex; }

	h1 { font-size: 26px; }
	h2 { font-size: 22px; }

	.ls-section-title { font-size: 26px; }
	.ls-cta-banner { padding: 40px 24px; }
	.ls-cta-title { font-size: 26px; }
	.entry-title { font-size: 28px; }
}

@media (max-width: 600px) {
	.ls-hero { padding: 48px 16px 40px; }
	.ls-hero-title { font-size: 30px; }
	.ls-hero-subtitle { font-size: 16px; }
	.ls-hero-actions { flex-direction: column; }
	.ls-hero-actions .ls-btn { width: 100%; }
	.footer-cols { grid-template-columns: 1fr; gap: 24px; }
	.entry-title { font-size: 24px; }
	.posts-grid { grid-template-columns: 1fr; }
	.ls-cta-actions { flex-direction: column; }
	.ls-cta-actions a { width: 100%; justify-content: center; }
}

/* Hindi */
body.localskill-lang-hi { font-family: var(--font-hi); }

/* Print */
@media print {
	.site-header, .site-footer, .ls-cta { display: none !important; }
}
