/**
 * Components - Buttons, Cards, Forms, Grid
 *
 * @package InovaxTheme
 */

/* Container */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.container-fluid {
	width: 100%;
	padding: 0 var(--spacing-md);
}

/* Responsive Container */
@media (max-width: 768px) {
	.container,
	.container-fluid {
		padding: 0 var(--spacing-sm);
	}
}

@media (max-width: 480px) {
	.container,
	.container-fluid {
		padding: 0 1rem;
	}
}

/* Section */
.section {
	padding: var(--spacing-xl) 0;
	background-color: #ffffff;
}

.section-lg {
	padding: var(--spacing-xxl) 0;
	background-color: #ffffff;
}

/* Responsive Sections */
@media (max-width: 768px) {
	.section {
		padding: var(--spacing-lg) 0;
	}

	.section-lg {
		padding: var(--spacing-xl) 0;
	}
}

@media (max-width: 480px) {
	.section {
		padding: var(--spacing-md) 0;
	}

	.section-lg {
		padding: var(--spacing-lg) 0;
	}
}

/* Buttons */
.btn {
	display: inline-block;
	padding: var(--spacing-sm) var(--spacing-lg);
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	transition: var(--transition);
}

.btn-primary {
	color: #1a1a1a;
	background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(167, 139, 250, 0.5);
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
	color: #ffffff;
	background: #dc3545;
	border-color: #dc3545;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.btn-secondary {
	color: #ffffff;
	background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(168, 168, 168, 0.5);
	box-shadow: 0 4px 15px rgba(168, 168, 168, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
	color: #ffffff;
	background: #dc3545;
	border-color: #dc3545;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.btn-outline {
	color: var(--primary);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid rgba(167, 139, 250, 0.6);
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover,
.btn-outline:focus {
	color: #ffffff;
	background: #dc3545;
	border-color: #dc3545;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.btn-sm {
	padding: var(--spacing-xs) var(--spacing-md);
	font-size: var(--font-size-sm);
}

.btn-lg {
	padding: var(--spacing-md) var(--spacing-xl);
	font-size: var(--font-size-lg);
}

/* Responsive Buttons */
@media (max-width: 768px) {
	.btn {
		padding: 0.75rem 1.25rem;
		font-size: 0.9375rem;
	}

	.btn-lg {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}

	.btn-sm {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
	}
}

@media (max-width: 480px) {
	.btn {
		padding: 0.625rem 1rem;
		font-size: 0.875rem;
	}

	.btn-lg {
		padding: 0.75rem 1.25rem;
		font-size: 0.9375rem;
	}
}

/* Hero Buttons */
.hero-buttons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.hero-buttons .btn {
	padding: 0.625rem 1.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0.3px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.hero-buttons .btn-lg {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
}

.hero-buttons .btn-primary {
	background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
	border: 1px solid rgba(124, 58, 237, 0.5);
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-primary:focus {
	background: linear-gradient(135deg, #6B46C1 0%, #9D8FB8 100%);
	border-color: rgba(124, 58, 237, 0.8);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
	transform: translateY(-1px);
}

.hero-buttons .btn-outline {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(124, 58, 237, 0.6);
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.hero-buttons .btn-outline:hover,
.hero-buttons .btn-outline:focus {
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(167, 139, 250, 0.2) 100%);
	border-color: rgba(124, 58, 237, 0.9);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.hero-buttons {
		gap: 0.5rem;
		margin-top: 1.25rem;
	}

	.hero-buttons .btn {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
	}

	.hero-buttons .btn-lg {
		padding: 0.625rem 1.25rem;
		font-size: 0.9375rem;
	}
}

/* Cards */
.card {
	background-color: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: var(--transition);
}

.card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.card-header {
	padding: var(--spacing-md);
	border-bottom: 1px solid var(--border);
}

.card-body {
	padding: var(--spacing-md);
}

.card-footer {
	padding: var(--spacing-md);
	border-top: 1px solid var(--border);
	background-color: var(--bg-light);
}

/* Responsive Cards */
@media (max-width: 768px) {
	.card-header,
	.card-body,
	.card-footer {
		padding: var(--spacing-sm);
	}
}

/* KPI Box */
.kpi-box {
	text-align: center;
	padding: var(--spacing-lg);
	background-color: var(--bg);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.kpi-box__number {
	display: block;
	font-size: var(--font-size-4xl);
	font-weight: 700;
	color: var(--primary);
	margin-bottom: var(--spacing-xs);
}

.kpi-box__label {
	font-size: var(--font-size-base);
	color: var(--muted);
	font-weight: 500;
}

/* Responsive KPI Box */
@media (max-width: 768px) {
	.kpi-box {
		padding: var(--spacing-md);
	}

	.kpi-box__number {
		font-size: var(--font-size-3xl);
	}

	.kpi-box__label {
		font-size: var(--font-size-sm);
	}
}

@media (max-width: 480px) {
	.kpi-box {
		padding: var(--spacing-sm);
	}

	.kpi-box__number {
		font-size: var(--font-size-2xl);
	}
}

/* Grid */
.grid {
	display: grid;
	gap: var(--spacing-md);
}

.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Responsive Grid */
@media (max-width: 992px) {
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

@media (max-width: 768px) {
	.grid {
		gap: var(--spacing-sm);
	}

	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.grid {
		gap: 1rem;
	}
}

/* Services Grid */
.services-grid-section {
	padding: var(--spacing-xxl) 0;
}

.services-grid-wrapper {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 3rem;
	align-items: start;
}

/* Services Grid Sidebar */
.services-grid-sidebar {
	position: sticky;
	top: 100px;
	align-self: start;
}

.services-grid-sidebar .sidebar-content {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: 
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
	position: relative;
	overflow: hidden;
	transition: var(--transition);
	font-size: 0.875rem;
}

.services-grid-sidebar .sidebar-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.services-grid-sidebar .sidebar-content:hover {
	box-shadow: 
		0 10px 15px -3px rgba(0, 0, 0, 0.15),
		0 4px 6px -2px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.services-grid-sidebar .sidebar-cta {
	margin: 0;
	padding: 0;
}

.services-grid-sidebar .cta-header {
	text-align: center;
	margin-bottom: 2.5rem;
	padding-bottom: 1.75rem;
	border-bottom: 2px solid var(--border);
	position: relative;
}

.services-grid-sidebar .cta-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.services-grid-sidebar .cta-header h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.625rem 0;
	color: var(--text);
	font-family: var(--font-heading);
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.01em;
}

.services-grid-sidebar .cta-subtitle {
	font-size: 0.75rem;
	color: var(--muted);
	margin: 0;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.services-grid-sidebar .cta-item {
	display: flex;
	gap: 1.125rem;
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background: var(--bg-light);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.services-grid-sidebar .cta-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
	transform: scaleY(0);
	transition: transform 0.3s ease;
	transform-origin: bottom;
}

.services-grid-sidebar .cta-item:hover {
	background: rgba(167, 139, 250, 0.1);
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
	transform: translateX(3px);
}

.services-grid-sidebar .cta-item:hover::before {
	transform: scaleY(1);
}

.services-grid-sidebar .cta-item:last-of-type {
	margin-bottom: 0;
}

.services-grid-sidebar .cta-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
	border-radius: var(--radius);
	color: #1a1a1a;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.services-grid-sidebar .cta-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
}

.services-grid-sidebar .cta-item:hover .cta-icon {
	transform: scale(1.08) rotate(5deg);
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.services-grid-sidebar .cta-item:hover .cta-icon::before {
	left: 100%;
}

.services-grid-sidebar .cta-icon svg {
	width: 22px;
	height: 22px;
	position: relative;
	z-index: 1;
}

.services-grid-sidebar .cta-content {
	flex: 1;
}

.services-grid-sidebar .cta-content {
	flex: 1;
	min-width: 0;
}

.services-grid-sidebar .cta-content strong {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	margin-bottom: 0.625rem;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	line-height: 1.4;
}

.services-grid-sidebar .cta-content p {
	margin: 0.375rem 0;
	font-size: 0.75rem;
	color: var(--muted);
	line-height: 1.6;
	font-weight: 400;
}

.services-grid-sidebar .cta-content a {
	color: var(--text);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-block;
	position: relative;
}

.services-grid-sidebar .cta-content a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transition: width 0.3s ease;
}

.services-grid-sidebar .cta-content a:hover {
	color: var(--primary);
	transform: translateX(2px);
}

.services-grid-sidebar .cta-content a:hover::after {
	width: 100%;
}

.services-grid-sidebar .office-address {
	margin-bottom: 0.875rem;
	padding: 1rem;
	background: rgba(167, 139, 250, 0.08);
	border: 1px solid rgba(167, 139, 250, 0.2);
	border-radius: var(--radius);
	transition: var(--transition);
}

.services-grid-sidebar .office-address:hover {
	background: rgba(167, 139, 250, 0.12);
	border-color: var(--primary);
	transform: translateX(2px);
}

.services-grid-sidebar .office-address:last-child {
	margin-bottom: 0;
}

.services-grid-sidebar .office-city {
	font-weight: 700;
	font-size: 0.75rem;
	color: var(--primary);
	margin: 0 0 0.5rem 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

.services-grid-sidebar .office-city::before {
	content: '📍';
	font-size: 0.875rem;
}

.services-grid-sidebar .office-address p:last-child {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--muted);
	font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
	.services-grid-sidebar {
		position: relative;
		top: 0;
	}

	.services-grid-sidebar .sidebar-content {
		padding: 1.5rem;
	}

	.services-grid-sidebar .cta-header {
		margin-bottom: 1.5rem;
		padding-bottom: 1rem;
	}

	.services-grid-sidebar .cta-header h3 {
		font-size: 1.125rem;
	}

	.services-grid-sidebar .cta-item {
		padding: 1rem;
		margin-bottom: 1rem;
	}

	.services-grid-sidebar .cta-icon {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}

	.services-grid-sidebar .cta-icon svg {
		width: 18px;
		height: 18px;
	}
}

.services-grid-content {
	width: 100%;
}

.services-grid {
	gap: 2rem;
}

.services-grid .card {
	background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #ede9fe 100%);
	border: 2px solid rgba(124, 58, 237, 0.2);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1), 0 2px 4px rgba(124, 58, 237, 0.08);
	position: relative;
}

.services-grid .card:hover {
	border-color: rgba(124, 58, 237, 0.8);
	background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #ddd6fe 100%);
	transform: translateY(-8px);
	box-shadow: 
		0 0 0 3px rgba(124, 58, 237, 0.3),
		0 0 0 6px rgba(139, 92, 246, 0.2),
		0 16px 48px rgba(124, 58, 237, 0.35), 
		0 8px 16px rgba(139, 92, 246, 0.25);
}

.services-grid .card-body {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
}

.services-grid .post-thumbnail {
	position: relative;
	overflow: hidden;
	height: 220px;
	background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 50%, #c4b5fd 100%);
}

.services-grid .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-grid .card:hover .post-thumbnail img {
	transform: scale(1.1);
}

.services-grid .post-thumbnail::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.3) 50%, rgba(139, 92, 246, 0.4) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.services-grid .card:hover .post-thumbnail::after {
	opacity: 1;
}

.services-grid .service-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(167, 139, 250, 0.1) 100%);
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	border: 2px solid rgba(124, 58, 237, 0.4);
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.services-grid .service-icon svg,
.services-grid .service-icon i {
	font-size: 2.5rem;
	color: #7C3AED;
	fill: currentColor;
	width: 2.5rem;
	height: 2.5rem;
	transition: all 0.4s ease;
	z-index: 1;
	position: relative;
	display: block;
}

.services-grid .card:hover .service-icon {
	background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 50%, #A78BFA 100%);
	border-color: rgba(167, 139, 250, 0.6);
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 32px rgba(124, 58, 237, 0.5), 0 6px 16px rgba(139, 92, 246, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.services-grid .card:hover .service-icon svg,
.services-grid .card:hover .service-icon i {
	color: #ffffff;
	fill: #ffffff;
	transform: scale(1.1);
}

.services-grid .card-body h2,
.services-grid .card-body h3 {
	margin: 0 0 1rem 0;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
}

.services-grid .card-body h2 a,
.services-grid .card-body h3 a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.services-grid .card-body h2 a:hover,
.services-grid .card-body h3 a:hover {
	background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 50%, #A78BFA 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.services-grid .card-body p {
	color: #6b21a8;
	line-height: 1.7;
	margin: 0 0 1.5rem 0;
	flex: 1;
	font-size: 0.9375rem;
}

.services-grid .card-body .btn {
	margin-top: auto;
	align-self: flex-start;
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.875rem;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
	border: 2px solid rgba(124, 58, 237, 0.3);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.services-grid .card-body .btn:hover {
	transform: translateX(4px);
	background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
	border-color: rgba(139, 92, 246, 0.5);
	box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4), 0 2px 8px rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
	.services-grid-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-grid-sidebar {
		position: relative;
		top: 0;
		order: 2;
	}

	.services-grid-content {
		order: 1;
	}

	.services-grid {
		gap: 1.5rem;
	}

	.services-grid .card-body {
		padding: 1.5rem;
	}

	.services-grid .service-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 1.25rem;
	}

	.services-grid .service-icon svg,
	.services-grid .service-icon i {
		font-size: 2rem;
	}

	.services-grid .card-body h2,
	.services-grid .card-body h3 {
		font-size: 1.25rem;
	}
}

/* Navigation */
.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: var(--spacing-lg);
	align-items: center;
}

.nav-menu a {
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 0;
	transition: var(--transition);
}

.nav-menu a:hover {
	color: var(--primary);
}

.menu-toggle {
	color: var(--text);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--text);
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu li {
	margin-bottom: 0.5rem;
}

.footer-menu a {
	color: #ffffff;
	text-decoration: none;
	transition: var(--transition);
}

.footer-menu a:hover {
	color: var(--accent);
	text-decoration: underline;
}

/* Forms */
.form-group {
	margin-bottom: var(--spacing-md);
}

.form-label {
	display: block;
	margin-bottom: var(--spacing-xs);
	font-weight: 500;
	color: var(--text);
}

.form-control {
	width: 100%;
	padding: var(--spacing-sm);
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--text);
	background-color: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-control.error {
	border-color: #721c24;
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-xs);
}

.form-checkbox input[type="checkbox"] {
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.form-checkbox label {
	margin: 0;
	font-size: var(--font-size-sm);
}

/* Responsive Forms */
@media (max-width: 768px) {
	.form-group {
		margin-bottom: var(--spacing-sm);
	}

	.form-control {
		padding: 0.75rem;
		font-size: 16px; /* Prevents zoom on iOS */
	}

	textarea.form-control {
		min-height: 100px;
	}
}

/* Alert Messages */
.alert {
	padding: var(--spacing-md);
	border-radius: var(--radius);
	margin-bottom: var(--spacing-md);
}

.alert-success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.alert-error {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

/* Tabs */
.tabs {
	display: flex;
	border-bottom: 2px solid var(--border);
	margin-bottom: var(--spacing-md);
}

.tab {
	padding: var(--spacing-sm) var(--spacing-lg);
	font-weight: 500;
	color: var(--muted);
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
}

.tab:hover {
	color: var(--primary);
}

.tab.active {
	color: var(--primary);
	border-bottom-color: var(--primary);
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

/* Scroll to Top */
.scroll-to-top {
	display: none;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(167, 139, 250, 0.5);
	color: #1a1a1a;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(167, 139, 250, 0.4);
	z-index: 999;
	transition: var(--transition);
	font-weight: 600;
}

.scroll-to-top.visible {
	display: block;
}

.scroll-to-top:hover {
	background: #dc3545;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Responsive Scroll to Top */
@media (max-width: 768px) {
	.scroll-to-top {
		bottom: 1.5rem;
		right: 1.5rem;
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
}

@media (max-width: 480px) {
	.scroll-to-top {
		bottom: 1rem;
		right: 1rem;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
}

/* Mobile Menu - Styles are in header-main.php */

/* Founders Section */
.founders-section {
	padding: var(--spacing-xxl) 0;
	background-color: #ffffff;
}

.founders-header {
	margin-bottom: 4rem;
}

.founders-subtitle {
	font-size: 1.125rem;
	color: var(--muted);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

.founders-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.founders-photo-wrapper {
	position: sticky;
	top: 100px;
}

.founders-image-wrapper {
	width: 100%;
	position: relative;
	background: #ffffff;
	border: 3px solid var(--primary);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.founders-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: calc(var(--radius-lg) - 4px);
	position: relative;
	z-index: 1;
}

.founders-image-placeholder {
	width: 100%;
	background: #ffffff;
	border: 3px solid var(--primary);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.founders-image-placeholder svg {
	border-radius: calc(var(--radius-lg) - 4px);
}


.founder-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	transition: all 0.2s ease;
	position: relative;
}

.founder-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--primary);
}

.founder-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: rgba(167, 139, 250, 0.3);
}

.founder-image-wrapper {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 auto 1.25rem;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--primary);
	transition: all 0.2s ease;
}

.founder-card:hover .founder-image-wrapper {
	border-color: rgba(167, 139, 250, 0.6);
}

.founder-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.founder-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-light);
}

.founder-overlay {
	display: none;
}

.founder-content {
	text-align: center;
}

.founder-name {
	font-size: 1.375rem;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 0.375rem 0;
	font-family: var(--font-heading);
}

.founder-title {
	font-size: 0.875rem;
	color: var(--primary);
	font-weight: 500;
	margin: 0 0 1rem 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.founder-description {
	color: var(--muted);
	line-height: 1.6;
	font-size: 0.9375rem;
	text-align: left;
}

.founder-description p {
	margin: 0 0 1rem 0;
}

.founder-description p:last-child {
	margin-bottom: 0;
}

/* Vision & Mission Box */
.vision-mission-box {
	background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: 
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.vision-mission-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.vision-item,
.mission-item {
	position: relative;
}

.vision-mission-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 1rem 0;
	font-family: var(--font-heading);
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.vision-mission-text {
	color: var(--muted);
	line-height: 1.8;
	font-size: 1rem;
}

.vision-mission-text p {
	margin: 0 0 1rem 0;
}

.vision-mission-text p:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
	.founders-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.founders-photo-wrapper {
		position: relative;
		top: 0;
	}
}

@media (max-width: 768px) {

	.vision-mission-box {
		padding: 1.5rem;
		gap: 1.5rem;
	}

	.vision-mission-title {
		font-size: 1.125rem;
	}

	.founder-card {
		padding: 1.25rem;
	}

	.founder-image-wrapper {
		width: 100px;
		height: 100px;
		margin-bottom: 1rem;
	}

	.founder-name {
		font-size: 1.25rem;
	}

	.founder-description {
		font-size: 0.875rem;
	}
}

/* About Us Section */
.about-us-section {
	padding: var(--spacing-xxl) 0;
}

.about-us-header {
	margin-bottom: 4rem;
}

.company-badge {
	margin-bottom: 2rem;
}

.badge-text {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border: 1px solid var(--border);
	border-radius: 4px;
	background: var(--bg);
	color: var(--text);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.about-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 2rem;
	font-family: var(--font-heading);
}

.about-description-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 2rem;
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-description {
	color: var(--muted);
	line-height: 1.8;
	font-size: 1.0625rem;
	margin: 0;
	text-align: left;
}

/* Text Content Section */
.text-content-section {
	margin: 5rem 0;
	padding-top: 4rem;
	border-top: 1px solid var(--border);
}

.text-content-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 2.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	max-width: 900px;
	margin: 0 auto;
}

.text-content {
	color: var(--muted);
	line-height: 1.8;
	font-size: 1.0625rem;
	text-align: left;
}

.text-content p {
	margin: 0 0 1.5rem 0;
}

.text-content p:last-child {
	margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
	margin-top: 5rem;
	padding-top: 4rem;
	border-top: 1px solid var(--border);
}

.gallery-grid {
	display: grid;
	gap: 1.5rem;
	width: 100%;
}

.gallery-grid.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-grid.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-grid.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 1;
	cursor: pointer;
	transition: var(--transition);
}

.gallery-item:hover {
	transform: translateY(-4px);
}

.gallery-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
	transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
	.about-title {
		font-size: 2.25rem;
	}

	.gallery-grid.gallery-columns-4 {
		grid-template-columns: repeat(3, 1fr);
	}

	.gallery-grid.gallery-columns-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.about-us-header {
		margin-bottom: 3rem;
	}

	.about-title {
		font-size: 1.875rem;
	}

	.about-description-card {
		padding: 1.5rem;
	}

	.about-description {
		font-size: 1rem;
	}

	.text-content-section {
		margin: 4rem 0;
		padding-top: 3rem;
	}

	.text-content-card {
		padding: 1.5rem;
	}

	.text-content {
		font-size: 1rem;
	}

	.gallery-section {
		margin-top: 4rem;
		padding-top: 3rem;
	}

	.gallery-grid {
		gap: 1rem;
	}

	.gallery-grid.gallery-columns-4,
	.gallery-grid.gallery-columns-3,
	.gallery-grid.gallery-columns-2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.gallery-grid.gallery-columns-4,
	.gallery-grid.gallery-columns-3,
	.gallery-grid.gallery-columns-2 {
		grid-template-columns: 1fr;
	}
}

/* Contact Page Widget */
.contact-page-section {
	padding: var(--spacing-xxl) 0;
	scroll-behavior: smooth;
}

.contact-page-form-wrapper {
	scroll-margin-top: 2rem;
}

.contact-page-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	margin-bottom: var(--spacing-xxl);
}

.contact-page-left {
	color: var(--text);
}

.contact-page-title {
	font-size: var(--font-size-4xl);
	font-weight: 700;
	margin-bottom: var(--spacing-lg);
	color: var(--text);
	line-height: var(--line-height-heading);
}

.contact-page-description {
	font-size: var(--font-size-base);
	color: var(--muted);
	line-height: var(--line-height-base);
	margin-bottom: var(--spacing-md);
}

.contact-page-social {
	margin-top: var(--spacing-xl);
}

.contact-page-social-title {
	color: var(--text);
	font-weight: 500;
	margin-bottom: var(--spacing-md);
}

.contact-page-social-icons {
	display: flex;
	gap: var(--spacing-md);
}

.contact-page-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: var(--transition);
}

.contact-page-social-icon:hover {
	background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(167, 139, 250, 0.4);
}

.contact-page-social-icon svg {
	width: 20px;
	height: 20px;
}

.contact-page-right {
	position: relative;
}

.contact-page-form-wrapper {
	background-color: var(--bg-light);
	border-radius: var(--radius-lg);
	padding: var(--spacing-xl);
	position: relative;
	overflow: hidden;
}

.contact-page-form {
	position: relative;
	z-index: 2;
}

.contact-page-submit {
	width: 100%;
	padding: var(--spacing-md);
	font-size: var(--font-size-lg);
	font-weight: 600;
	background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
	border: none;
	color: white;
	border-radius: var(--radius);
	cursor: pointer;
	transition: var(--transition);
}

.contact-page-submit:hover {
	background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
	box-shadow: 0 4px 12px rgba(167, 139, 250, 0.4);
	transform: translateY(-2px);
}

.contact-page-form-decoration {
	position: absolute;
	top: -20px;
	left: -40px;
	opacity: 0.1;
	z-index: 1;
	pointer-events: none;
}

.contact-page-bottom {
	margin-top: var(--spacing-xxl);
	padding-top: var(--spacing-xxl);
	border-top: 1px solid var(--border);
}

.contact-page-bottom-title {
	font-size: var(--font-size-4xl);
	font-weight: 700;
	margin-bottom: var(--spacing-lg);
	color: var(--text);
	text-align: center;
	line-height: var(--line-height-heading);
}

.contact-page-bottom-description {
	font-size: var(--font-size-base);
	color: var(--muted);
	line-height: var(--line-height-base);
	margin-bottom: var(--spacing-xl);
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.contact-page-service-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
}

.contact-page-service-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--bg-light);
	border-radius: var(--radius-lg);
	padding: var(--spacing-xl);
	text-decoration: none;
	color: var(--text);
	transition: var(--transition);
	border: 1px solid var(--border);
}

.contact-page-service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: #7C3AED;
}

.contact-page-service-card-content {
	flex: 1;
}

.contact-page-service-card-title {
	font-size: var(--font-size-xl);
	font-weight: 600;
	margin-bottom: var(--spacing-sm);
	color: var(--text);
}

.contact-page-service-card-description {
	font-size: var(--font-size-base);
	color: var(--muted);
	line-height: var(--line-height-base);
}

.contact-page-service-card-arrow {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--text);
	transition: var(--transition);
}

.contact-page-service-card:hover .contact-page-service-card-arrow {
	color: #7C3AED;
	transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
	.contact-page-top {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
	}

	.contact-page-title {
		font-size: var(--font-size-3xl);
	}

	.contact-page-bottom-title {
		font-size: var(--font-size-3xl);
	}

	.contact-page-service-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.contact-page-section {
		padding: var(--spacing-xl) 0;
	}

	.contact-page-title {
		font-size: var(--font-size-2xl);
	}

	.contact-page-bottom-title {
		font-size: var(--font-size-2xl);
	}

	.contact-page-form-wrapper {
		padding: var(--spacing-lg);
	}

	.contact-page-service-card {
		padding: var(--spacing-lg);
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-md);
	}

	.contact-page-service-card-arrow {
		align-self: flex-end;
	}
}

/* Services List Sidebar */
.services-list-sidebar-section {
	padding: var(--spacing-xxl) 0;
}

.services-list-sidebar-wrapper {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 3rem;
	align-items: start;
}

.services-list-content {
	width: 100%;
}

.services-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.service-item {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	position: relative;
}

.service-item:hover {
	border-color: rgba(167, 139, 250, 0.5);
	transform: translateY(-4px);
	box-shadow: 
		0 0 0 2px rgba(167, 139, 250, 0.3),
		0 0 0 4px rgba(167, 139, 250, 0.2),
		0 12px 40px rgba(167, 139, 250, 0.25), 
		0 4px 12px rgba(167, 139, 250, 0.2);
}

.service-item-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-title {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 1.3;
}

.service-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.service-title a:hover {
	background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-excerpt {
	color: #6c757d;
	line-height: 1.7;
	font-size: 1rem;
}

.service-item .btn {
	margin-top: 0.5rem;
	align-self: flex-start;
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.service-item .btn:hover {
	transform: translateX(4px);
}

.no-services {
	text-align: center;
	padding: 3rem;
	color: var(--muted);
	font-size: 1.125rem;
}

.services-list-sidebar {
	position: sticky;
	top: 100px;
	align-self: start;
}

.services-list-sidebar .sidebar-content {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: 
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
	position: relative;
	overflow: hidden;
	transition: var(--transition);
	font-size: 0.875rem;
}

.services-list-sidebar .sidebar-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}


.services-list-sidebar .sidebar-content:hover {
	box-shadow: 
		0 10px 15px -3px rgba(0, 0, 0, 0.15),
		0 4px 6px -2px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}


.services-list-sidebar .sidebar-cta {
	margin: 0;
	padding: 0;
}

.services-list-sidebar .cta-header {
	text-align: center;
	margin-bottom: 2.5rem;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid rgba(167, 139, 250, 0.2);
	position: relative;
}

.services-list-sidebar .cta-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: 2px;
}


.services-list-sidebar .cta-header h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.625rem 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}


.services-list-sidebar .cta-subtitle {
	font-size: 0.75rem;
	color: var(--muted);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}


.services-list-sidebar .cta-item {
	display: flex;
	gap: 1.125rem;
	margin-bottom: 1.5rem;
	padding: 1.125rem;
	background: rgba(167, 139, 250, 0.05);
	border: 1px solid rgba(167, 139, 250, 0.2);
	border-radius: var(--radius);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.services-list-sidebar .cta-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
	transform: scaleY(0);
	transition: transform 0.3s ease;
	transform-origin: bottom;
}

.services-list-sidebar .cta-item:hover {
	background: rgba(167, 139, 250, 0.1);
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
	transform: translateX(3px);
}

.services-list-sidebar .cta-item:hover::before {
	transform: scaleY(1);
}



.services-list-sidebar .cta-item:last-of-type {
	margin-bottom: 0;
}

.services-list-sidebar .cta-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
	border-radius: var(--radius);
	color: #1a1a1a;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(167, 139, 250, 0.3);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.services-list-sidebar .cta-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
}

.services-list-sidebar .cta-item:hover .cta-icon {
	transform: scale(1.08) rotate(5deg);
	box-shadow: 0 4px 12px rgba(167, 139, 250, 0.4);
}

.services-list-sidebar .cta-item:hover .cta-icon::before {
	left: 100%;
}

.services-list-sidebar .cta-icon svg {
	width: 22px;
	height: 22px;
	position: relative;
	z-index: 1;
}



.services-list-sidebar .cta-content {
	flex: 1;
	min-width: 0;
}

.services-list-sidebar .cta-content strong {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
	color: var(--text);
	opacity: 0.8;
}


.services-list-sidebar .cta-content p {
	margin: 0.375rem 0;
	font-size: 0.75rem;
	color: var(--muted);
	line-height: 1.5;
}


.services-list-sidebar .cta-content a {
	color: var(--text);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

.services-list-sidebar .cta-content a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
	transition: width 0.3s ease;
}

.services-list-sidebar .cta-content a:hover {
	color: var(--primary);
	transform: translateX(2px);
}

.services-list-sidebar .cta-content a:hover::after {
	width: 100%;
}



.services-list-sidebar .office-address {
	margin-bottom: 0.875rem;
	padding: 1rem;
	background: rgba(167, 139, 250, 0.08);
	border: 1px solid rgba(167, 139, 250, 0.2);
	border-radius: var(--radius);
	transition: all 0.3s ease;
}

.services-list-sidebar .office-address:hover {
	background: rgba(167, 139, 250, 0.12);
	border-color: var(--primary);
	transform: translateX(2px);
}



.services-list-sidebar .office-address:last-child {
	margin-bottom: 0;
}

.services-list-sidebar .office-city {
	font-weight: 700;
	font-size: 0.75rem;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.services-list-sidebar .office-city::before {
	content: '📍';
	font-size: 0.875rem;
}


.services-list-sidebar .office-address p:last-child {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--muted);
}


@media (max-width: 992px) {
	.services-list-sidebar-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-list-sidebar {
		position: relative;
		top: 0;
		order: 2;
	}

	.services-list-content {
		order: 1;
	}

	.service-item {
		padding: 1.5rem;
	}

	.service-title {
		font-size: 1.5rem;
	}

	.services-list-sidebar .sidebar-content {
		padding: 2rem;
		font-size: 1rem;
	}

	.services-list-sidebar .cta-header {
		margin-bottom: 2rem;
		padding-bottom: 1.5rem;
	}

	.services-list-sidebar .cta-header h3 {
		font-size: 1.375rem;
	}

	.services-list-sidebar .cta-subtitle {
		font-size: 0.9375rem;
	}

	.services-list-sidebar .cta-content strong {
		font-size: 0.875rem;
	}

	.services-list-sidebar .cta-content p {
		font-size: 0.9375rem;
	}

	.services-list-sidebar .cta-item {
		padding: 1rem;
		margin-bottom: 1rem;
	}

	.services-list-sidebar .cta-icon {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}

	.services-list-sidebar .cta-icon svg {
		width: 18px;
		height: 18px;
	}
}

/* Services Sidebar - Services List */
.sidebar-services-list {
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: 
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
}

.sidebar-services-list::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}


.sidebar-header {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(167, 139, 250, 0.3);
}

.sidebar-header h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
	color: #1a1a1a;
	background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}


.sidebar-services-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-service-item {
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(167, 139, 250, 0.2);
	padding-bottom: 1rem;
}

.sidebar-service-item:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.sidebar-service-item a {
	display: block;
	text-decoration: none;
	color: #1a1a1a;
	transition: all 0.3s ease;
	padding: 0.75rem;
	border-radius: var(--radius);
	position: relative;
}

.sidebar-service-item a::before {
	content: '→';
	position: absolute;
	left: -10px;
	opacity: 0;
	transition: all 0.3s ease;
	color: #7C3AED;
	font-weight: bold;
}

.sidebar-service-item a:hover {
	background: rgba(167, 139, 250, 0.1);
	padding-left: 1.5rem;
	transform: translateX(5px);
}

.sidebar-service-item a:hover::before {
	opacity: 1;
	left: 0.75rem;
}



.service-link-title {
	display: block;
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.5rem;
	line-height: 1.4;
}

.sidebar-service-item a:hover .service-link-title {
	color: #7C3AED;
}

.service-link-excerpt {
	display: block;
	font-size: 0.875rem;
	color: #6c757d;
	line-height: 1.5;
	margin-top: 0.25rem;
}


/* Page Content Styles */
.page-content-wrapper {
	width: 100%;
	max-width: 100%;
	background: #ffffff;
	border-radius: var(--radius-lg);
	padding: 3rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow-x: hidden;
	box-sizing: border-box;
}


.page-header {
	margin-bottom: 3rem;
	padding-bottom: 1.5rem;
	border-bottom: 3px solid rgba(167, 139, 250, 0.2);
	position: relative;
}

.page-header::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #7C3AED 0%, #A78BFA 100%);
	border-radius: 2px;
}

.page-title {
	font-size: 2.75rem;
	font-weight: 700;
	margin: 0;
	color: #1a1a1a;
	line-height: 1.2;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, #1a1a1a 0%, #666666 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}


.page-content {
	font-size: 1.125rem;
	line-height: 1.9;
	color: #2d3748;
	text-align: justify;
	text-justify: inter-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
	max-width: 100%;
	overflow-x: auto;
}


.page-content p {
	margin-bottom: 1.75rem;
	font-size: 1.0625rem;
	line-height: 1.9;
	text-align: justify;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
	max-width: 100%;
	overflow-x: auto;
}

.page-content p:first-of-type {
	font-size: 1.1875rem;
	font-weight: 400;
	color: #4a5568;
	line-height: 1.85;
	margin-bottom: 2rem;
}


.page-content h2 {
	margin-top: 3rem;
	margin-bottom: 1.25rem;
	font-weight: 700;
	font-size: 2rem;
	color: #1a1a1a;
	line-height: 1.3;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid rgba(167, 139, 250, 0.3);
	position: relative;
}

.page-content h2::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #7C3AED 0%, #A78BFA 100%);
}


.page-content h3 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 1.625rem;
	color: #2d3748;
	line-height: 1.4;
}


.page-content h4 {
	margin-top: 2rem;
	margin-bottom: 0.875rem;
	font-weight: 600;
	font-size: 1.375rem;
	color: #374151;
	line-height: 1.4;
}


.page-content h5,
.page-content h6 {
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	font-weight: 600;
	color: #4b5563;
}


.page-content a {
	color: #7C3AED;
	text-decoration: none;
	border-bottom: 1px solid rgba(167, 139, 250, 0.3);
	transition: all 0.3s ease;
	font-weight: 500;
}

.page-content a:hover {
	color: #7C3AED;
	border-bottom-color: #7C3AED;
}

.page-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 2.5rem auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	display: block;
}


.page-content ul,
.page-content ol {
	margin: 2rem 0;
	padding-left: 0;
	list-style: none;
}

.page-content ul li,
.page-content ol li {
	margin-bottom: 1rem;
	padding-left: 2rem;
	position: relative;
	line-height: 1.8;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
	max-width: 100%;
}

.page-content ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: #7C3AED;
	font-weight: bold;
	font-size: 1.25rem;
}

.page-content ol {
	counter-reset: item;
}

.page-content ol li {
	counter-increment: item;
}

.page-content ol li::before {
	content: counter(item) '.';
	position: absolute;
	left: 0;
	color: #7C3AED;
	font-weight: 700;
	font-size: 1rem;
}

.page-content blockquote {
	margin: 2.5rem 0;
	padding: 1.5rem 2rem;
	border-left: 4px solid #7C3AED;
	background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(167, 139, 250, 0.05) 100%);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
	color: #4a5568;
	font-size: 1.125rem;
	line-height: 1.8;
	position: relative;
}


.page-content blockquote::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 15px;
	font-size: 4rem;
	color: rgba(167, 139, 250, 0.3);
	font-family: Georgia, serif;
	line-height: 1;
}

.page-content code {
	background: rgba(167, 139, 250, 0.1);
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	font-size: 0.9em;
	color: #7C3AED;
	font-family: 'Courier New', monospace;
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-all;
	max-width: 100%;
	display: inline-block;
}

.page-content pre {
	background: #f8f9fa;
	color: #1a1a1a;
	padding: 1.5rem;
	border-radius: var(--radius);
	overflow-x: auto;
	overflow-y: hidden;
	margin: 2rem 0;
	border: 1px solid rgba(167, 139, 250, 0.2);
	max-width: 100%;
	word-wrap: break-word;
	white-space: pre-wrap;
}


.page-content table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	border-radius: var(--radius);
	overflow: hidden;
	overflow-x: auto;
	display: block;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-content table th,
.page-content table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(167, 139, 250, 0.2);
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 300px;
}

.page-content table th {
	background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
	color: #1a1a1a;
	font-weight: 600;
}

.page-content table tr:hover {
	background: rgba(167, 139, 250, 0.05);
}



.page-content hr {
	border: none;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.5), transparent);
	margin: 3rem 0;
}

.page-content strong {
	font-weight: 700;
	color: #1a1a1a;
}


.page-content em {
	font-style: italic;
	color: #4a5568;
}


.no-content {
	text-align: center;
	padding: 3rem;
	color: var(--muted);
	font-size: 1.125rem;
}

@media (max-width: 992px) {
	.page-content-wrapper {
		padding: 2rem;
	}

	.page-title {
		font-size: 2rem;
	}

	.page-header {
		margin-bottom: 2rem;
		padding-bottom: 1rem;
	}

	.page-content {
		font-size: 1rem;
		text-align: left;
	}

	.page-content p {
		font-size: 1rem;
		text-align: left;
	}

	.page-content p:first-of-type {
		font-size: 1.0625rem;
	}

	.page-content h2 {
		font-size: 1.75rem;
		margin-top: 2rem;
	}

	.page-content h3 {
		font-size: 1.5rem;
		margin-top: 2rem;
	}

	.page-content h4 {
		font-size: 1.25rem;
	}

	.page-content img {
		margin: 1.5rem 0;
	}

	.page-content blockquote {
		padding: 1.25rem 1.5rem;
		margin: 2rem 0;
	}

	.sidebar-header h3 {
		font-size: 1.125rem;
	}

	.service-link-title {
		font-size: 0.9375rem;
	}

	.service-link-excerpt {
		font-size: 0.8125rem;
	}
}

@media (max-width: 768px) {
	.page-content-wrapper {
		padding: 1.5rem;
	}

	.page-title {
		font-size: 1.75rem;
	}

	.page-content {
		font-size: 0.9375rem;
	}

	.page-content p {
		font-size: 0.9375rem;
	}

	.page-content h2 {
		font-size: 1.5rem;
	}

	.page-content h3 {
		font-size: 1.25rem;
	}

	.page-content h4 {
		font-size: 1.125rem;
	}
}

button.hero-slider-nav {
	transform: translateY(calc(-50% - 1cm)) !important;
}

div.header-main {
	border-radius: 12px;
}

/* Posts Layout with Sidebar */
.posts-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: var(--spacing-xl);
	align-items: start;
	padding-top: var(--spacing-xl);
}

.posts-content {
	min-width: 0;
}

.posts-sidebar {
	min-width: 0;
}

/* Posts Grid Styles */
.posts-grid {
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-xl);
}

.post-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-color: rgba(167, 139, 250, 0.3);
}


.post-card .post-thumbnail {
	position: relative;
	overflow: hidden;
	height: 220px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}


.post-card .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-thumbnail img {
	transform: scale(1.08);
}

.post-card .post-thumbnail::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(167, 139, 250, 0.15) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.post-card:hover .post-thumbnail::after {
	opacity: 1;
}

.post-card .card-body {
	padding: var(--spacing-lg);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.post-card .card-body h2 {
	margin: 0 0 var(--spacing-sm) 0;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.3;
}

.post-card .card-body h2 a {
	color: var(--text);
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.post-card .card-body h2 a:hover {
	color: #7C3AED;
	background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.post-card .entry-meta {
	color: var(--muted);
	font-size: 0.875rem;
	margin-bottom: var(--spacing-md);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.post-card .entry-meta time {
	color: var(--muted);
}

.post-card .entry-excerpt {
	color: var(--text);
	line-height: 1.7;
	margin-bottom: var(--spacing-md);
	flex: 1;
	font-size: 0.9375rem;
}

.post-card .entry-excerpt p {
	margin-bottom: 0.5rem;
}

.post-card .entry-excerpt p:last-child {
	margin-bottom: 0;
}

.post-card .btn {
	margin-top: auto;
	align-self: flex-start;
}

/* Sidebar Styles */
.posts-sidebar .widget {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--spacing-lg);
	margin-bottom: var(--spacing-lg);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


.posts-sidebar .widget:last-child {
	margin-bottom: 0;
}

.posts-sidebar .widget-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 var(--spacing-md) 0;
	padding-bottom: var(--spacing-sm);
	border-bottom: 2px solid rgba(167, 139, 250, 0.3);
	color: var(--text);
}

.posts-sidebar .widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.posts-sidebar .widget ul li {
	padding: var(--spacing-sm) 0;
	border-bottom: 1px solid var(--border);
}

.posts-sidebar .widget ul li:last-child {
	border-bottom: none;
}

.posts-sidebar .widget ul li a {
	color: var(--text);
	text-decoration: none;
	transition: color 0.3s ease;
}

.posts-sidebar .widget ul li a:hover {
	color: #7C3AED;
	padding-left: 0.5rem;
}

.posts-sidebar .widget p {
	margin-bottom: var(--spacing-sm);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.posts-sidebar .widget p:last-child {
	margin-bottom: 0;
}

/* Posts Sidebar CTA Styles */
.posts-sidebar .sidebar-cta-widget {
	padding: var(--spacing-lg);
	margin-bottom: var(--spacing-lg);
}

.posts-sidebar .sidebar-cta {
	margin: 0;
	padding: 0;
}

.posts-sidebar .cta-header {
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--border);
	position: relative;
}

.posts-sidebar .cta-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.posts-sidebar .cta-header .widget-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	padding-bottom: 0;
	border-bottom: none;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.posts-sidebar .cta-subtitle {
	font-size: 0.75rem;
	color: var(--muted);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.posts-sidebar .cta-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--bg-light);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.posts-sidebar .cta-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
	transform: scaleY(0);
	transition: transform 0.3s ease;
	transform-origin: bottom;
}

.posts-sidebar .cta-item:hover {
	background: rgba(167, 139, 250, 0.1);
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
	transform: translateX(3px);
}

.posts-sidebar .cta-item:hover::before {
	transform: scaleY(1);
}



.posts-sidebar .cta-item:last-of-type {
	margin-bottom: 0;
}

.posts-sidebar .cta-icon {
	width: 45px;
	height: 45px;
	min-width: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(167, 139, 250, 0.1) 100%);
	border-radius: var(--radius);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.posts-sidebar .cta-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.3), transparent);
	transition: left 0.5s ease;
}

.posts-sidebar .cta-item:hover .cta-icon {
	transform: scale(1.05);
}

.posts-sidebar .cta-item:hover .cta-icon::before {
	left: 100%;
}

.posts-sidebar .cta-icon svg {
	width: 20px;
	height: 20px;
	position: relative;
	z-index: 1;
	color: var(--primary);
}

.posts-sidebar .cta-content {
	flex: 1;
	min-width: 0;
}

.posts-sidebar .cta-content strong {
	display: block;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.posts-sidebar .cta-content p {
	margin: 0 0 0.25rem 0;
	font-size: 0.875rem;
	line-height: 1.5;
}

.posts-sidebar .cta-content p:last-child {
	margin-bottom: 0;
}

.posts-sidebar .cta-content a {
	color: var(--text);
	text-decoration: none;
	transition: color 0.3s ease;
}

.posts-sidebar .cta-content a:hover {
	color: var(--primary);
}

/* Posts Sidebar List Styles */
.posts-sidebar .widget ul li {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.posts-sidebar .widget ul li a {
	color: var(--text);
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.posts-sidebar .widget ul li a:hover {
	color: var(--primary);
	padding-left: 0;
}

.posts-sidebar .post-date {
	font-size: 0.8125rem;
	color: var(--muted);
	font-style: italic;
}

.posts-sidebar .cat-count {
	font-size: 0.8125rem;
	color: var(--muted);
	margin-left: 0.25rem;
}

/* Responsive Posts Layout */
@media (max-width: 992px) {
	.posts-layout {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	.posts-sidebar {
		order: -1;
	}

	.posts-sidebar .widget {
		padding: var(--spacing-md);
	}

	.posts-sidebar .sidebar-cta-widget {
		padding: var(--spacing-md);
	}
}

@media (max-width: 768px) {
	.posts-grid {
		gap: var(--spacing-md);
	}

	.post-card .post-thumbnail {
		height: 180px;
	}

	.post-card .card-body {
		padding: var(--spacing-md);
	}

	.post-card .card-body h2 {
		font-size: 1.25rem;
	}

	.posts-sidebar .widget-title {
		font-size: 1.125rem;
	}
}

@media (max-width: 480px) {
	.posts-layout {
		gap: var(--spacing-md);
	}

	.posts-grid {
		gap: var(--spacing-sm);
	}

	.post-card .post-thumbnail {
		height: 160px;
	}

	.post-card .card-body {
		padding: var(--spacing-sm);
	}

	.post-card .card-body h2 {
		font-size: 1.125rem;
	}

	.posts-sidebar .widget {
		padding: var(--spacing-sm);
	}

	.posts-sidebar .sidebar-cta-widget {
		padding: var(--spacing-sm);
	}

	.posts-sidebar .cta-item {
		padding: 0.875rem;
	}

	.posts-sidebar .cta-icon {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}

	.posts-sidebar .cta-icon svg {
		width: 18px;
		height: 18px;
	}
}

/* Sticky Logo */
.sticky-logo-wrapper {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 9999;
	opacity: 0.9;
	transition: all 0.3s ease;
	width: auto;
	height: auto;
}

.sticky-logo-wrapper:hover {
	opacity: 1;
	transform: scale(1.05);
}

.sticky-logo-link {
	display: block;
	text-decoration: none;
	line-height: 0;
}

.sticky-logo {
	max-width: 80px;
	width: auto;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	object-fit: contain;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.sticky-logo-wrapper:hover .sticky-logo {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
	.sticky-logo-wrapper {
		bottom: 15px;
		left: 15px;
	}

	.sticky-logo {
		max-width: 75px;
	}
}

@media (max-width: 480px) {
	.sticky-logo-wrapper {
		bottom: 10px;
		left: 10px;
	}

	.sticky-logo {
		max-width: 65px;
	}
}