/**
 * webfizzlab Theme Styles - Modern Dark Theme with Green Accents
 *
 * @package webfizzlab
 * @version 1.0.0
 */

/* ============================================
   CSS Variables & Base Styles
   ============================================ */

:root {
	--primary-color: #00ff88;
	--primary-dark: #00cc6f;
	--secondary-color: #6c757d;
	--bg-dark: #0a0a0a;
	--bg-dark-secondary: #1a1a1a;
	--bg-card: #1f1f1f;
	--text-primary: #ffffff;
	--text-secondary: #b0b0b0;
	--text-muted: #6c757d;
	--border-color: #2a2a2a;
	--shadow-sm: 0 2px 8px rgba(0, 255, 136, 0.1);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Header & Navigation
   ============================================ */

.site-header {
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	padding: 1.25rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
}

.site-header.scrolled {
	background: rgba(10, 10, 10, 0.98);
	box-shadow: var(--shadow-md);
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.75rem;
	color: var(--text-primary) !important;
	text-decoration: none;
	letter-spacing: -0.5px;
	transition: var(--transition);
}

.navbar-brand:hover {
	color: var(--primary-color) !important;
}

.navbar-brand img {
	max-height: 50px;
	width: auto;
}

.navbar-nav .nav-link {
	font-weight: 500;
	padding: 0.5rem 1.25rem !important;
	color: var(--text-secondary) !important;
	transition: var(--transition);
	position: relative;
	font-size: 0.95rem;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transform: translateX(-50%);
	transition: var(--transition);
}

.navbar-nav .nav-link:hover {
	color: var(--text-primary) !important;
}

.navbar-nav .nav-link:hover::after {
	width: calc(100% - 2.5rem);
}

.navbar-toggler {
	border: 1px solid var(--border-color);
	color: var(--text-primary);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-cta .btn-primary {
	background: var(--primary-color);
	border: none;
	color: var(--bg-dark);
	font-weight: 600;
	padding: 0.625rem 1.5rem;
	border-radius: 8px;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
}

.header-cta .btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 0.5rem 0;
	margin-top: 0.5rem;
	box-shadow: var(--shadow-lg);
	min-width: 200px;
}

.navbar-nav .dropdown-item {
	color: var(--text-secondary);
	padding: 0.625rem 1.25rem;
	font-size: 0.9rem;
	transition: var(--transition);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
	background: rgba(0, 255, 136, 0.1);
	color: var(--primary-color);
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
	background: var(--primary-color);
	color: var(--bg-dark);
}

.navbar-nav .dropdown-toggle::after {
	margin-left: 0.5rem;
	vertical-align: 0.15em;
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
	transform: rotate(180deg);
}

/* Mobile Dropdown */
@media (max-width: 991.98px) {
	.navbar-nav .dropdown-menu {
		background: transparent;
		border: none;
		box-shadow: none;
		padding-left: 1.5rem;
		margin-top: 0;
	}

	.navbar-nav .dropdown-item {
		padding: 0.5rem 1rem;
	}
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
	padding: 120px 0 100px;
	background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

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

.hero-content {
	max-width: 800px;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	letter-spacing: -1px;
}

.hero-title .highlight {
	color: var(--primary-color);
}

.hero-subtitle {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	margin-bottom: 2.5rem;
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 600px;
}

.hero-cta {
	margin-bottom: 3rem;
}

.hero-cta .btn {
	font-size: 1.125rem;
	font-weight: 600;
	padding: 1rem 2.5rem;
	border-radius: 12px;
	transition: var(--transition);
	border: none;
}

.hero-cta .btn-primary {
	background: var(--primary-color);
	color: var(--bg-dark);
	box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.hero-cta .btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 6px 30px rgba(0, 255, 136, 0.4);
}

.hero-image {
	position: relative;
}

.hero-image img {
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	max-width: 100%;
	height: auto;
}

/* Trusted Brands Section */
.trusted-brands {
	padding: 3rem 0;
	border-top: 1px solid var(--border-color);
}

.trusted-brands-title {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	text-align: center;
	position: relative;
	display: inline-block;
	padding: 0 2rem;
}

.trusted-brands-line {
	position: absolute;
	top: 50%;
	width: 1.5rem;
	height: 1px;
	background: var(--text-secondary);
}

.trusted-brands-line-left {
	left: 0;
}

.trusted-brands-line-right {
	right: 0;
}

.brands-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem;
	background: var(--bg-card);
	border-radius: 12px;
	border: 1px solid var(--border-color);
}

.brand-item {
	transition: var(--transition);
	flex: 0 0 auto;
}

.brand-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	border-radius: 8px;
	text-decoration: none;
	color: var(--text-primary);
	transition: var(--transition);
	background: transparent;
	border: 1px solid transparent;
}

.brand-link:hover {
	background: rgba(0, 255, 136, 0.05);
	border-color: var(--border-color);
	color: var(--text-primary);
	transform: translateY(-2px);
}

.brand-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.brand-icon {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.8;
	transition: var(--transition);
}

.brand-link:hover .brand-icon {
	opacity: 1;
	filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(120deg);
}

.brand-name {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-primary);
	white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.brands-grid {
		flex-direction: column;
		gap: 1rem;
		padding: 1.5rem;
	}

	.brand-item {
		width: 100%;
	}

	.brand-link {
		justify-content: center;
		width: 100%;
	}
}

/* ============================================
   Section Styles
   ============================================ */

.section-header {
	margin-bottom: 4rem;
}

.section-label {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 600;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: -1px;
}

.section-subtitle {
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	color: var(--text-secondary);
	line-height: 1.7;
	max-width: 700px;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
	padding: 100px 0;
	background: var(--bg-dark-secondary);
}

.service-card {
	background: var(--bg-card);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	height: 100%;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary-color);
	transform: scaleX(0);
	transition: var(--transition);
	z-index: 3;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	transition: var(--transition);
	z-index: 1;
}

.service-card:hover .service-overlay {
	background: rgba(0, 0, 0, 0.6);
}

.service-icon {
	position: relative;
	z-index: 2;
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	display: inline-block;
}

.service-content {
	position: relative;
	z-index: 2;
}

.service-image {
	margin-bottom: 1.5rem;
	border-radius: 12px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: auto;
	transition: var(--transition);
}

.service-card:hover .service-image img {
	transform: scale(1.05);
}

.service-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.service-title a {
	color: var(--text-primary);
	text-decoration: none;
	transition: var(--transition);
}

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

.service-description {
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.7;
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.why-choose-image {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.why-choose-image img {
	width: 100%;
	height: auto;
	transition: var(--transition);
}

.why-choose-features {
	margin-top: 2rem;
}

.why-choose-item {
	padding: 1.5rem;
	background: var(--bg-card);
	border-radius: 12px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.why-choose-item:hover {
	border-color: var(--primary-color);
	transform: translateX(8px);
	box-shadow: var(--shadow-md);
}

.why-choose-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 255, 136, 0.1);
	border-radius: 10px;
	color: var(--primary-color);
	font-size: 1.5rem;
	flex-shrink: 0;
}

.why-choose-item-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.why-choose-item-description {
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
}

/* ============================================
   Portfolio Section
   ============================================ */

.portfolio-section {
	padding: 100px 0;
	background: var(--bg-dark-secondary);
}

.portfolio-card {
	background: var(--bg-card);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.portfolio-card-highlighted {
	border: 2px solid var(--primary-color);
	box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.portfolio-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.portfolio-card-highlighted:hover {
	box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.portfolio-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 320px;
	background: var(--bg-dark);
	border-radius: 16px 16px 0 0;
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.portfolio-card:hover .portfolio-image img {
	transform: scale(1.05);
}

.portfolio-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.portfolio-category-badge {
	display: inline-block;
	background: rgba(0, 255, 136, 0.15);
	color: var(--text-primary);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
	width: fit-content;
	border: 1px solid rgba(0, 255, 136, 0.3);
}

.portfolio-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
	line-height: 1.3;
}

.portfolio-title a {
	color: var(--text-primary);
	text-decoration: none;
	transition: var(--transition);
}

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

.portfolio-description {
	color: var(--text-secondary);
	line-height: 1.7;
	margin: 0;
	font-size: 0.95rem;
}

.portfolio-cta {
	margin-top: auto;
	padding-top: 1rem;
}

.portfolio-cta-button {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	color: var(--bg-dark);
	border-radius: 50%;
	text-decoration: none;
	transition: var(--transition);
	font-size: 1.25rem;
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.portfolio-cta-button:hover {
	background: var(--primary-dark);
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 255, 136, 0.4);
	color: var(--bg-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.why-choose-item {
		padding: 1rem;
	}

	.why-choose-icon {
		width: 40px;
		height: 40px;
		font-size: 1.25rem;
	}

	.portfolio-image {
		height: 240px;
	}

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

	.portfolio-category-badge {
		font-size: 0.7rem;
		padding: 0.4rem 0.875rem;
	}
}

/* ============================================
   Process/Workflow Section
   ============================================ */

.process-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.process-step {
	text-align: center;
	padding: 2rem;
}

.process-icon {
	width: 80px;
	height: 80px;
	background: var(--bg-card);
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: var(--primary-color);
	transition: var(--transition);
}

.process-step:hover .process-icon {
	background: var(--primary-color);
	color: var(--bg-dark);
	transform: scale(1.1);
}

.process-number {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: var(--bg-dark);
	border-radius: 50%;
	line-height: 40px;
	font-weight: 700;
	margin-bottom: 1rem;
}

.process-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.process-description {
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
	padding: 100px 0;
	background: var(--bg-dark-secondary);
}

.pricing-card {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 3rem 2.5rem;
	position: relative;
	border: 2px solid var(--border-color);
	transition: var(--transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
}

.pricing-card-featured {
	border-color: var(--primary-color);
	background: linear-gradient(180deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.05) 100%);
}

.pricing-badge {
	position: absolute;
	top: -15px;
	right: 30px;
	background: var(--primary-color);
	color: var(--bg-dark);
	padding: 0.5rem 1.25rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pricing-header {
	text-align: center;
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-color);
}

.pricing-name {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	margin-top: 0.5rem;
	color: var(--text-primary);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.pricing-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.5rem;
}

.price-amount {
	font-size: 1.25rem;
	font-weight: 900;
	color: var(--primary-color);
	line-height: 1;
}

.price-period {
	font-size: 1rem;
	color: var(--text-secondary);
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2.5rem 0;
	flex-grow: 1;
}

.pricing-features li {
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-secondary);
}

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

.pricing-features li::before {
	content: '✓';
	color: var(--primary-color);
	font-weight: 700;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.pricing-footer {
	margin-top: auto;
}

.pricing-footer .btn {
	width: 100%;
	padding: 1rem;
	font-weight: 600;
	border-radius: 12px;
	border: none;
	transition: var(--transition);
}

.pricing-footer .btn-primary {
	background: var(--primary-color);
	color: var(--bg-dark);
}

.pricing-footer .btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.pricing-footer .btn-outline-primary {
	background: transparent;
	color: var(--text-primary);
	border: 2px solid var(--primary-color);
}

.pricing-footer .btn-outline-primary:hover {
	background: var(--primary-color);
	color: var(--bg-dark);
}

/* Pricing Section - Responsive */
@media (max-width: 991.98px) {
	.pricing-name {
		font-size: 2.25rem;
		margin-bottom: 1.25rem;
	}

	.price-amount {
		font-size: 2rem;
	}
}

@media (max-width: 767.98px) {
	.pricing-card {
		padding: 2.5rem 2rem;
	}

	.pricing-name {
		font-size: 2rem;
		margin-bottom: 1rem;
		margin-top: 0.25rem;
	}

	.price-amount {
		font-size: 1.75rem;
	}

	.price-period {
		font-size: 0.9375rem;
	}
}

@media (max-width: 575.98px) {
	.pricing-card {
		padding: 2rem 1.5rem;
	}

	.pricing-name {
		font-size: 1.75rem;
		margin-bottom: 0.875rem;
	}

	.price-amount {
		font-size: 1.5rem;
	}

	.price-period {
		font-size: 0.875rem;
	}
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.testimonial-card {
	background: var(--bg-card);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	height: 100%;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
}

.testimonial-rating {
	margin-bottom: 1.5rem;
	display: flex;
	gap: 0.25rem;
}

.testimonial-rating i {
	color: var(--primary-color);
	font-size: 1rem;
}

.testimonial-rating i.text-muted {
	color: var(--text-muted);
}

.testimonial-text {
	font-size: 1.125rem;
	font-style: italic;
	margin-bottom: 2rem;
	color: var(--text-secondary);
	line-height: 1.7;
	border-left: 3px solid var(--primary-color);
	padding-left: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.author-image {
	flex-shrink: 0;
}

.author-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--primary-color);
}

.author-name {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.author-role {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin: 0;
}

/* ============================================
   FAQs Section
   ============================================ */

.faqs-section {
	padding: 100px 0;
	background: var(--bg-dark-secondary);
}

.accordion-item {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px !important;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: var(--transition);
}

.accordion-item:hover {
	border-color: var(--primary-color);
}

.accordion-button {
	background: var(--bg-card);
	color: var(--text-primary);
	border: none;
	padding: 1.5rem;
	font-weight: 600;
	font-size: 1.125rem;
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	background: var(--bg-card);
	color: var(--primary-color);
	box-shadow: none;
}

.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff88'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff88'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e");
	transform: rotate(180deg);
}

.accordion-body {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

/* Material UI Contact Form */
.contact-section .contact-form,
.contact-section form {
	position: relative;
}

.contact-section .form-group,
.contact-section .form-field {
	position: relative;
	margin-bottom: 2rem;
}

.contact-section label {
	color: var(--text-secondary);
	position: absolute;
	left: 0;
	top: 18px;
	font-size: 1rem;
	pointer-events: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: left top;
	background: transparent;
	padding: 0 4px;
	margin-left: 12px;
	z-index: 1;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section input[type="tel"],
.contact-section input[type="number"],
.contact-section input[type="url"],
.contact-section select,
.contact-section textarea {
	width: 100%;
	padding: 18px 12px 10px 12px;
	background: transparent;
	border: none;
	border-bottom: 2px solid var(--border-color);
	border-radius: 0;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	box-sizing: border-box;
}

.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section input[type="tel"]:focus,
.contact-section input[type="number"]:focus,
.contact-section input[type="url"]:focus,
.contact-section select:focus,
.contact-section textarea:focus {
	border-bottom-color: var(--primary-color);
	box-shadow: 0 1px 0 0 var(--primary-color);
}

.contact-section input[type="text"]:focus + label,
.contact-section input[type="email"]:focus + label,
.contact-section input[type="tel"]:focus + label,
.contact-section input[type="number"]:focus + label,
.contact-section input[type="url"]:focus + label,
.contact-section select:focus + label,
.contact-section textarea:focus + label,
.contact-section input[type="text"]:not(:placeholder-shown) + label,
.contact-section input[type="email"]:not(:placeholder-shown) + label,
.contact-section input[type="tel"]:not(:placeholder-shown) + label,
.contact-section input[type="number"]:not(:placeholder-shown) + label,
.contact-section input[type="url"]:not(:placeholder-shown) + label,
.contact-section select:not([value=""]) + label,
.contact-section textarea:not(:placeholder-shown) + label,
.contact-section label.active {
	top: -8px;
	left: 0;
	font-size: 0.75rem;
	color: var(--primary-color);
	transform: translateY(0) scale(0.85);
	background: var(--bg-dark);
	padding: 0 8px;
}

.contact-section label.focused {
	color: var(--primary-color);
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
	color: transparent;
}

.contact-section select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 40px;
	cursor: pointer;
}

.contact-section textarea {
	resize: vertical;
	min-height: 100px;
	padding-top: 18px;
}

.contact-section input[type="text"]:hover,
.contact-section input[type="email"]:hover,
.contact-section input[type="tel"]:hover,
.contact-section input[type="number"]:hover,
.contact-section input[type="url"]:hover,
.contact-section select:hover,
.contact-section textarea:hover {
	border-bottom-color: var(--primary-color);
}

.contact-section .helper-text {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: 4px;
	margin-left: 12px;
	display: block;
}

.contact-section .error-text {
	color: #ff5722;
}

.contact-section input[type="checkbox"],
.contact-section input[type="radio"] {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	cursor: pointer;
	accent-color: var(--primary-color);
}

.contact-section input[type="checkbox"] + label,
.contact-section input[type="radio"] + label {
	position: static;
	transform: none;
	color: var(--text-primary);
	cursor: pointer;
	margin-left: 0;
}

.contact-section button[type="submit"],
.contact-section input[type="submit"],
.contact-section .btn-submit {
	background: var(--primary-color);
	color: var(--bg-dark);
	padding: 14px 32px;
	border-radius: 8px;
	display: inline-block;
	text-align: center;
	font-weight: bold;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 1rem;
}

.contact-section button[type="submit"]:hover,
.contact-section input[type="submit"]:hover,
.contact-section .btn-submit:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

/* ============================================
   Material UI Form Components (Universal)
   ============================================ */

.mui-field {
	position: relative;
	margin-bottom: 24px;
}

.mui-field label {
	position: absolute;
	top: 12px;
	left: 14px;
	color: #aaa;
	font-size: 14px;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	background: transparent;
	z-index: 1;
	padding: 0 4px;
}

.mui-input,
.mui-textarea,
.mui-select {
	width: 100%;
	padding: 16px 14px;
	border-radius: 12px;
	background: #1a1a1a;
	border: 1px solid #333;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	box-sizing: border-box;
	font-family: inherit;
}

.mui-input:focus,
.mui-textarea:focus,
.mui-select:focus {
	border-color: #00ff88;
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.mui-input:focus + label,
.mui-input:not(:placeholder-shown) + label,
.mui-textarea:focus + label,
.mui-textarea:not(:placeholder-shown) + label,
.mui-select:focus + label,
.mui-select:not([value=""]) + label {
	top: -10px;
	left: 10px;
	background: #0a0a0a;
	padding: 0 6px;
	color: #00ff88;
	font-size: 12px;
	transform: scale(0.9);
}

.mui-input::placeholder,
.mui-textarea::placeholder {
	color: transparent;
}

.mui-textarea {
	resize: vertical;
	min-height: 120px;
	padding-top: 16px;
}

.mui-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}

.mui-field.mui-error .mui-input,
.mui-field.mui-error .mui-textarea,
.mui-field.mui-error .mui-select {
	border-color: #ff5555;
}

.mui-field.mui-error .mui-input:focus,
.mui-field.mui-error .mui-textarea:focus,
.mui-field.mui-error .mui-select:focus {
	border-color: #ff5555;
	box-shadow: 0 0 10px rgba(255, 85, 85, 0.4);
}

.mui-field.mui-error label {
	color: #ff5555;
}

.mui-helper-text {
	display: block;
	font-size: 12px;
	color: #6c757d;
	margin-top: 6px;
	margin-left: 14px;
}

.mui-error-text {
	display: block;
	font-size: 12px;
	color: #ff5555;
	margin-top: 6px;
	margin-left: 14px;
}

/* Material UI Button */
.neon-button,
.mui-button {
	background: #00ff88;
	color: #000;
	padding: 14px 32px;
	border-radius: 12px;
	display: inline-block;
	text-align: center;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	font-size: 16px;
	font-family: inherit;
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.neon-button:hover,
.mui-button:hover {
	background: #00cc6f;
	color: #000;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.neon-button:active,
.mui-button:active {
	transform: translateY(0);
}

.neon-button:disabled,
.mui-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Apply Material UI to all form elements globally */
input[type="text"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]),
input[type="email"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]),
input[type="tel"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]),
input[type="number"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]),
input[type="url"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]),
input[type="password"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]),
textarea:not(.mui-textarea):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]),
select:not(.mui-select):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]) {
	width: 100%;
	padding: 16px 14px;
	border-radius: 12px;
	background: #1a1a1a;
	border: 1px solid #333;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	box-sizing: border-box;
	font-family: inherit;
}
input[type="text"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]):focus,
input[type="email"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]):focus,
input[type="tel"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]):focus,
input[type="number"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]):focus,
input[type="url"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]):focus,
input[type="password"]:not(.mui-input):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]):focus,
textarea:not(.mui-textarea):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]):focus,
select:not(.mui-select):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]):focus {
	border-color: #00ff88;
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

select:not(.mui-select):not([class*="admin"]):not([class*="regular-text"]):not([class*="large-text"]) {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}

.contact-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: var(--bg-card);
	border-radius: 12px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.contact-item:hover {
	border-color: var(--primary-color);
	transform: translateX(5px);
}

.contact-icon {
	font-size: 2rem;
	color: var(--primary-color);
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 255, 136, 0.1);
	border-radius: 12px;
}

.contact-details h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact-details a {
	color: var(--text-primary);
	text-decoration: none;
	transition: var(--transition);
}

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

.contact-details p {
	color: var(--text-secondary);
	margin: 0;
}

/* ============================================
   Footer Styles
   ============================================ */

.site-footer {
	background: var(--bg-dark-secondary);
	border-top: 1px solid var(--border-color);
	padding: 4rem 0 2rem;
	margin-top: 4rem;
}

.footer-widget {
	margin-bottom: 2.5rem;
}

.footer-logo img {
	max-height: 50px;
	margin-bottom: 1.5rem;
}

.footer-description {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.widget-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

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

.footer-menu li {
	margin-bottom: 0.75rem;
}

.footer-menu a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
}

.footer-menu a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: var(--bg-card);
	color: var(--text-primary);
	border-radius: 12px;
	text-decoration: none;
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.social-link:hover {
	background: var(--primary-color);
	color: var(--bg-dark);
	border-color: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: var(--shadow-sm);
}

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: 2rem;
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.footer-copyright p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 0.875rem;
}

.footer-menu-inline {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-menu-inline a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
	font-size: 0.875rem;
}

.footer-menu-inline a:hover {
	color: var(--primary-color);
}

/* ============================================
   Utility Classes
   ============================================ */

.bg-dark {
	background-color: var(--bg-dark) !important;
}

.bg-dark-secondary {
	background-color: var(--bg-dark-secondary) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}

.text-secondary {
	color: var(--text-secondary) !important;
}

/* ============================================
   Responsive Styles
   ============================================ */

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

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.125rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.pricing-card-featured {
		transform: scale(1);
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.brands-grid {
		gap: 1.5rem;
	}

	.service-card,
	.testimonial-card,
	.pricing-card {
		margin-bottom: 1.5rem;
	}
}

/* ============================================
   Animations
   ============================================ */

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

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Accessibility
   ============================================ */

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary-color);
	color: var(--bg-dark);
	padding: 8px;
	text-decoration: none;
	z-index: 10000;
}

.skip-link:focus {
	top: 0;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* ============================================
   Archive, Search & Blog Pages
   ============================================ */

.archive-page-section,
.single-post-section {
	background: var(--bg-dark);
	min-height: 60vh;
}

.page-header {
	margin-bottom: 3rem;
}

.page-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.page-title span {
	color: var(--primary-color);
}

.page-description {
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.7;
}

.archive-post-card,
.single-post-card {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.archive-post-card:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.post-thumbnail {
	border-radius: 12px;
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	transition: var(--transition);
}

.archive-post-card:hover .post-thumbnail img {
	transform: scale(1.05);
}

.entry-title {
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.entry-title a {
	color: var(--text-primary);
	text-decoration: none;
	transition: var(--transition);
}

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

.entry-meta {
	color: var(--text-secondary);
	font-size: 0.9rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.entry-meta i {
	color: var(--primary-color);
}

.entry-summary {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.entry-content {
	color: var(--text-secondary);
	line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	color: var(--text-primary);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

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

.entry-content a {
	color: var(--primary-color);
	text-decoration: none;
}

.entry-content a:hover {
	text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

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

.btn-read-more {
	display: inline-flex;
	align-items: center;
	background: var(--primary-color);
	color: var(--bg-dark);
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	border: none;
}

.btn-read-more:hover {
	background: var(--primary-dark);
	transform: translateX(4px);
	color: var(--bg-dark);
}

.entry-footer {
	border-top: 1px solid var(--border-color);
	padding-top: 1.5rem;
	margin-top: 2rem;
}

.cat-links,
.tags-links {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.cat-links a,
.tags-links a {
	color: var(--primary-color);
	text-decoration: none;
	margin-right: 0.5rem;
}

.cat-links a:hover,
.tags-links a:hover {
	text-decoration: underline;
}

/* Pagination */
.wp-pagenavi,
.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.page-numbers a,
.page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0.5rem 1rem;
	background: var(--bg-card);
	color: var(--text-primary);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	text-decoration: none;
	transition: var(--transition);
}

.page-numbers a:hover {
	background: var(--primary-color);
	color: var(--bg-dark);
	border-color: var(--primary-color);
}

.page-numbers .current {
	background: var(--primary-color);
	color: var(--bg-dark);
	border-color: var(--primary-color);
}

.post-navigation {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.post-navigation a {
	display: block;
	padding: 1rem;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	text-decoration: none;
	color: var(--text-primary);
	transition: var(--transition);
	margin-bottom: 1rem;
}

.post-navigation a:hover {
	border-color: var(--primary-color);
	background: rgba(0, 255, 136, 0.05);
}

.nav-subtitle {
	display: block;
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-bottom: 0.25rem;
}

.nav-title {
	display: block;
	font-weight: 600;
	color: var(--text-primary);
}

/* No Results */
.no-results {
	text-align: center;
	padding: 3rem;
	background: var(--bg-card);
	border-radius: 16px;
	border: 1px solid var(--border-color);
}

.no-results-icon {
	font-size: 4rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.no-results h2 {
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.no-results p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

/* ============================================
   404 Error Page
   ============================================ */

.error-404-section {
	background: var(--bg-dark);
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.error-404-content {
	padding: 3rem;
	background: var(--bg-card);
	border-radius: 16px;
	border: 1px solid var(--border-color);
}

.error-icon {
	font-size: 5rem;
	color: var(--primary-color);
}

.error-code {
	font-size: 6rem;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: 1rem;
}

.error-title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.error-description {
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.error-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.error-search {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.error-search h3 {
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.error-search .search-form {
	max-width: 400px;
	margin: 0 auto;
}

/* ============================================
   Sidebar - Modern Dark Mode
   ============================================ */

.widget-area {
	padding-left: 2rem;
}

.widget {
	background: #1a1a1a;
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}

.widget:hover {
	box-shadow: 
		0 4px 16px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(0, 255, 136, 0.1);
	transform: translateY(-2px);
}

.widget-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #f5f5f5;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #00ff88;
}

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

.widget li {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-color);
}

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

.widget a {
	color: rgba(245, 245, 245, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.widget a:hover {
	color: #00ff88;
}

.widget ul li {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.widget ul li a {
	display: block;
	padding: 0.5rem 0;
}

/* Recent Posts Widget */
.widget_recent_entries ul li {
	padding: 0.75rem 0;
}

.widget_recent_entries ul li a {
	font-weight: 500;
}

/* Categories Widget */
.widget_categories ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.widget_categories ul li a::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	margin-left: 12px;
}

/* Recent Comments Widget */
.widget_recent_comments ul li {
	padding: 0.75rem 0;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.widget_recent_comments ul li a {
	color: #00ff88;
	font-weight: 500;
}

/* Material UI Search Form */
.material-search-form {
	position: relative;
	margin-bottom: 1rem;
}

.material-search-field {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.material-search-field label {
	color: var(--text-secondary);
	position: absolute;
	left: 0;
	top: 18px;
	font-size: 1rem;
	pointer-events: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: left top;
	background: transparent;
	padding: 0 4px;
	margin-left: 12px;
	z-index: 1;
}

.material-search-field input[type="search"] {
	flex: 1;
	padding: 18px 50px 10px 12px;
	background: transparent;
	border: none;
	border-bottom: 2px solid var(--border-color);
	border-radius: 0;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	box-sizing: border-box;
}

.material-search-field input[type="search"]:focus {
	border-bottom-color: var(--primary-color);
	box-shadow: 0 1px 0 0 var(--primary-color);
}

.material-search-field input[type="search"]:focus ~ label,
.material-search-field input[type="search"]:not(:placeholder-shown) ~ label,
.material-search-field label.active {
	top: -8px;
	left: 0;
	font-size: 0.75rem;
	color: var(--primary-color);
	transform: translateY(0) scale(0.85);
	background: var(--bg-dark);
	padding: 0 8px;
}

.material-search-field input[type="search"]::placeholder {
	color: transparent;
}

.material-search-field .search-submit {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: var(--text-secondary);
	padding: 0.5rem;
	cursor: pointer;
	transition: var(--transition);
	z-index: 2;
}

.material-search-field .search-submit:hover {
	color: var(--primary-color);
}

.material-search-field .search-submit i {
	font-size: 1.125rem;
}

/* Widget search form - Material UI */
.widget .search-form {
	position: relative;
	margin-bottom: 0;
}

/* Override default WordPress search widget styles */
.widget_search form,
.widget.widget_search .search-form {
	position: relative;
	margin-bottom: 0;
	display: block;
}

/* Hide default WordPress search widget elements if Material UI form is present */
.widget_search .material-search-form ~ input[type="search"],
.widget_search .material-search-form ~ input[type="text"],
.widget_search .material-search-form ~ .search-submit,
.widget_search .material-search-form ~ input[type="submit"] {
	display: none !important;
}

/* Ensure Material UI form is visible */
.widget_search .material-search-form {
	display: block !important;
}

.widget .material-search-form {
	margin-bottom: 0;
}

.widget .material-search-field {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.widget .material-search-field label {
	color: var(--text-secondary);
	position: absolute;
	left: 0;
	top: 18px;
	font-size: 1rem;
	pointer-events: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: left top;
	background: transparent;
	padding: 0 4px;
	margin-left: 12px;
	z-index: 1;
}

.widget .material-search-field input[type="search"] {
	flex: 1;
	padding: 18px 50px 10px 12px;
	background: transparent;
	border: none;
	border-bottom: 2px solid var(--border-color);
	border-radius: 0;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	box-sizing: border-box;
	width: 100%;
}

.widget .material-search-field input[type="search"]:focus {
	border-bottom-color: var(--primary-color);
	box-shadow: 0 1px 0 0 var(--primary-color);
}

.widget .material-search-field input[type="search"]:focus ~ label,
.widget .material-search-field input[type="search"]:not(:placeholder-shown) ~ label,
.widget .material-search-field label.active {
	top: -8px;
	left: 0;
	font-size: 0.75rem;
	color: var(--primary-color);
	transform: translateY(0) scale(0.85);
	background: var(--bg-card);
	padding: 0 8px;
}

.widget .material-search-field input[type="search"]::placeholder {
	color: transparent;
}

.widget .material-search-field .search-submit {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: var(--text-secondary);
	padding: 0.5rem;
	cursor: pointer;
	transition: var(--transition);
	z-index: 2;
}

.widget .material-search-field .search-submit:hover {
	color: var(--primary-color);
}

.widget .material-search-field .search-submit i {
	font-size: 1.125rem;
}

/* ============================================
   Modern Blog Section (home.php)
   ============================================ */

.modern-blog-section {
	background: #111;
	min-height: 100vh;
	padding: 40px 0;
}

.blog-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Blog Search Wrapper */
.blog-search-wrapper {
	margin-bottom: 60px;
}

/* Modern Search Form - Material Design */
.modern-search-form {
	width: 100%;
	position: relative;
}

.modern-search-label {
	display: block;
	color: #f5f5f5;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	opacity: 0.9;
}

.modern-search-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: #1a1a1a;
	border-radius: 12px;
	padding: 4px;
	box-shadow: 
		inset 0 2px 4px rgba(0, 0, 0, 0.3),
		0 4px 12px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-search-wrapper:focus-within {
	box-shadow: 
		inset 0 2px 4px rgba(0, 0, 0, 0.3),
		0 6px 20px rgba(0, 255, 136, 0.2),
		0 0 0 2px rgba(0, 255, 136, 0.3);
	transform: translateY(-2px);
}

.modern-search-input {
	flex: 1;
	background: transparent;
	border: none;
	color: #f5f5f5;
	font-size: 1rem;
	padding: 16px 20px;
	outline: none;
	width: 100%;
}

.modern-search-input::placeholder {
	color: rgba(245, 245, 245, 0.4);
}

.modern-search-button {
	background: #00ff88;
	border: none;
	border-radius: 8px;
	color: #111;
	cursor: pointer;
	padding: 12px 20px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 48px;
	margin-right: 4px;
}

.modern-search-button:hover {
	background: #00e677;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.modern-search-button:active {
	transform: scale(0.98);
}

.modern-search-button i {
	font-size: 1.125rem;
}

/* Blog Header */
.blog-header {
	margin-bottom: 40px;
	text-align: center;
}

.blog-title {
	color: #f5f5f5;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	margin: 0;
	letter-spacing: -1px;
}

/* Blog Grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
	background: #1a1a1a;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 
		0 12px 32px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(0, 255, 136, 0.2),
		0 0 20px rgba(0, 255, 136, 0.1);
}

/* Blog Card Image */
.blog-card-image {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
	overflow: hidden;
	background: #111;
}

.blog-card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.1);
}

.blog-card-image a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* Blog Card Content */
.blog-card-content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-category {
	margin-bottom: 12px;
}

.blog-card-category a {
	display: inline-block;
	background: rgba(0, 255, 136, 0.15);
	color: #00ff88;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 6px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.blog-card-category a:hover {
	background: rgba(0, 255, 136, 0.25);
	transform: translateY(-1px);
}

.blog-card-title {
	margin: 0 0 12px 0;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
}

.blog-card-title a {
	color: #f5f5f5;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-card-title a:hover {
	color: #00ff88;
}

.blog-card-excerpt {
	color: rgba(245, 245, 245, 0.7);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 20px;
	flex: 1;
}

.blog-card-footer {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #00ff88;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.blog-card-read-more:hover {
	color: #00e677;
	gap: 12px;
}

.blog-card-read-more i {
	font-size: 0.875rem;
	transition: transform 0.3s ease;
}

.blog-card-read-more:hover i {
	transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}

.blog-pagination .page-numbers {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.blog-pagination .page-numbers li {
	margin: 0;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	background: #1a1a1a;
	color: #f5f5f5;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-pagination .page-numbers a:hover {
	background: #00ff88;
	color: #111;
	border-color: #00ff88;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.blog-pagination .page-numbers .current {
	background: #00ff88;
	color: #111;
	border-color: #00ff88;
	font-weight: 600;
}

/* No Posts */
.blog-no-posts {
	text-align: center;
	padding: 80px 20px;
}

.blog-no-posts-icon {
	font-size: 4rem;
	color: rgba(245, 245, 245, 0.3);
	margin-bottom: 24px;
}

.blog-no-posts h2 {
	color: #f5f5f5;
	font-size: 2rem;
	margin-bottom: 12px;
}

.blog-no-posts p {
	color: rgba(245, 245, 245, 0.7);
	font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 767.98px) {
	.modern-blog-section {
		padding: 30px 0;
	}

	.blog-container {
		padding: 0 16px;
	}

	.blog-search-wrapper {
		margin-bottom: 40px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.blog-card-content {
		padding: 20px;
	}

	.blog-title {
		font-size: 2rem;
	}

	.blog-pagination .page-numbers {
		gap: 6px;
	}

	.blog-pagination .page-numbers a,
	.blog-pagination .page-numbers span {
		min-width: 40px;
		height: 40px;
		padding: 0 12px;
		font-size: 0.875rem;
	}
}

/* ============================================
   Search Results Section (search.php)
   ============================================ */

.search-results-section {
	background: #111;
	min-height: 100vh;
	padding: 40px 0;
}

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

.search-results-search-wrapper {
	margin-bottom: 40px;
}

.search-results-layout {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 40px;
	align-items: start;
}

.search-results-main {
	flex: 1;
}

.search-results-header {
	margin-bottom: 40px;
}

.search-results-title {
	color: #f5f5f5;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	margin: 0 0 12px 0;
	letter-spacing: -1px;
}

.search-results-title .search-query {
	color: #00ff88;
}

.search-results-count {
	color: rgba(245, 245, 245, 0.7);
	font-size: 1rem;
	margin: 0;
}

/* Search Results Grid */
.search-results-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

/* Search Result Card */
.search-result-card {
	background: #1a1a1a;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
}

.search-result-card:hover {
	transform: translateY(-8px);
	box-shadow: 
		0 12px 32px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(0, 255, 136, 0.2),
		0 0 20px rgba(0, 255, 136, 0.1);
}

.search-result-image {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
	overflow: hidden;
	background: #111;
}

.search-result-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-result-card:hover .search-result-image img {
	transform: scale(1.1);
}

.search-result-image a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.search-result-content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.search-result-category {
	margin-bottom: 12px;
}

.search-result-category a {
	display: inline-block;
	background: rgba(0, 255, 136, 0.15);
	color: #00ff88;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 6px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.search-result-category a:hover {
	background: rgba(0, 255, 136, 0.25);
	transform: translateY(-1px);
}

.search-result-title {
	margin: 0 0 12px 0;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.3;
}

.search-result-title a {
	color: #f5f5f5;
	text-decoration: none;
	transition: color 0.3s ease;
}

.search-result-title a:hover {
	color: #00ff88;
}

.search-result-meta {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	font-size: 0.875rem;
	color: rgba(245, 245, 245, 0.6);
}

.search-result-meta i {
	color: #00ff88;
	margin-right: 6px;
}

.search-result-excerpt {
	color: rgba(245, 245, 245, 0.7);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 20px;
	flex: 1;
}

.search-result-footer {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #00ff88;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.search-result-read-more:hover {
	color: #00e677;
	gap: 12px;
}

.search-result-read-more i {
	font-size: 0.875rem;
	transition: transform 0.3s ease;
}

.search-result-read-more:hover i {
	transform: translateX(4px);
}

/* Search Results Sidebar */
.search-results-sidebar {
	position: sticky;
	top: 20px;
}

/* Search No Results */
.search-no-results {
	text-align: center;
	padding: 80px 20px;
}

.search-no-results-icon {
	font-size: 4rem;
	color: rgba(245, 245, 245, 0.3);
	margin-bottom: 24px;
}

.search-no-results h2 {
	color: #f5f5f5;
	font-size: 2rem;
	margin-bottom: 12px;
}

.search-no-results p {
	color: rgba(245, 245, 245, 0.7);
	font-size: 1.125rem;
}

/* Search Results Pagination */
.search-results-pagination {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}

.search-results-pagination .page-numbers {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.search-results-pagination .page-numbers li {
	margin: 0;
}

.search-results-pagination .page-numbers a,
.search-results-pagination .page-numbers span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	background: #1a1a1a;
	color: #f5f5f5;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-results-pagination .page-numbers a:hover {
	background: #00ff88;
	color: #111;
	border-color: #00ff88;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.search-results-pagination .page-numbers .current {
	background: #00ff88;
	color: #111;
	border-color: #00ff88;
	font-weight: 600;
}

/* ============================================
   Archive Results Section (archive.php)
   ============================================ */

.archive-results-section {
	background: #111;
	min-height: 100vh;
	padding: 40px 0;
}

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

.archive-results-layout {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 40px;
	align-items: start;
}

.archive-results-main {
	flex: 1;
}

.archive-results-header {
	margin-bottom: 40px;
	text-align: center;
	padding-bottom: 30px;
	border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

.archive-results-title {
	color: #f5f5f5;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	margin: 0 0 16px 0;
	letter-spacing: -1px;
}

.archive-results-description {
	color: rgba(245, 245, 245, 0.7);
	font-size: 1.125rem;
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
}

/* Archive Results Grid */
.archive-results-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

/* Archive Result Card */
.archive-result-card {
	background: #1a1a1a;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 2px 8px rgba(0, 0, 0, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
}

.archive-result-card:hover {
	transform: translateY(-8px);
	box-shadow: 
		0 12px 32px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(0, 255, 136, 0.2),
		0 0 20px rgba(0, 255, 136, 0.1);
}

.archive-result-image {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
	overflow: hidden;
	background: #111;
}

.archive-result-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-result-card:hover .archive-result-image img {
	transform: scale(1.1);
}

.archive-result-image a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.archive-result-content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.archive-result-category {
	margin-bottom: 12px;
}

.archive-result-category a {
	display: inline-block;
	background: rgba(0, 255, 136, 0.15);
	color: #00ff88;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 6px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.archive-result-category a:hover {
	background: rgba(0, 255, 136, 0.25);
	transform: translateY(-1px);
}

.archive-result-title {
	margin: 0 0 12px 0;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.3;
}

.archive-result-title a {
	color: #f5f5f5;
	text-decoration: none;
	transition: color 0.3s ease;
}

.archive-result-title a:hover {
	color: #00ff88;
}

.archive-result-meta {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	font-size: 0.875rem;
	color: rgba(245, 245, 245, 0.6);
}

.archive-result-meta i {
	color: #00ff88;
	margin-right: 6px;
}

.archive-result-excerpt {
	color: rgba(245, 245, 245, 0.7);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 20px;
	flex: 1;
}

.archive-result-footer {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-result-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #00ff88;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.archive-result-read-more:hover {
	color: #00e677;
	gap: 12px;
}

.archive-result-read-more i {
	font-size: 0.875rem;
	transition: transform 0.3s ease;
}

.archive-result-read-more:hover i {
	transform: translateX(4px);
}

/* Archive Results Sidebar */
.archive-results-sidebar {
	position: sticky;
	top: 20px;
}

/* Archive No Results */
.archive-no-results {
	text-align: center;
	padding: 80px 20px;
}

.archive-no-results-icon {
	font-size: 4rem;
	color: rgba(245, 245, 245, 0.3);
	margin-bottom: 24px;
}

.archive-no-results h2 {
	color: #f5f5f5;
	font-size: 2rem;
	margin-bottom: 12px;
}

.archive-no-results p {
	color: rgba(245, 245, 245, 0.7);
	font-size: 1.125rem;
}

/* Archive Results Pagination */
.archive-results-pagination {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}

.archive-results-pagination .page-numbers {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.archive-results-pagination .page-numbers li {
	margin: 0;
}

.archive-results-pagination .page-numbers a,
.archive-results-pagination .page-numbers span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	background: #1a1a1a;
	color: #f5f5f5;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-results-pagination .page-numbers a:hover {
	background: #00ff88;
	color: #111;
	border-color: #00ff88;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.archive-results-pagination .page-numbers .current {
	background: #00ff88;
	color: #111;
	border-color: #00ff88;
	font-weight: 600;
}

/* Responsive Design for Search & Archive */
@media (max-width: 991.98px) {
	.search-results-layout,
	.archive-results-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.search-results-sidebar,
	.archive-results-sidebar {
		position: static;
	}

	.search-results-grid,
	.archive-results-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 767.98px) {
	.search-results-section,
	.archive-results-section {
		padding: 30px 0;
	}

	.search-results-container,
	.archive-results-container {
		padding: 0 16px;
	}

	.search-results-search-wrapper {
		margin-bottom: 30px;
	}

	.search-results-header,
	.archive-results-header {
		margin-bottom: 30px;
		padding-bottom: 20px;
	}

	.search-results-title,
	.archive-results-title {
		font-size: 1.75rem;
	}

	.search-results-grid,
	.archive-results-grid {
		gap: 20px;
	}

	.search-result-content,
	.archive-result-content {
		padding: 20px;
	}
}

/* ============================================
   WordPress Block Search - Material Design
   ============================================ */

.wp-block-search {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	padding: 0;
}

.wp-block-search__label {
	display: none;
	color: rgba(245, 245, 245, 0.7);
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0.9;
	position: relative;
	z-index: 1;
}

.wp-block-search__inside-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: #1a1a1a;
	border-radius: 12px;
	padding: 4px;
	box-shadow: 
		inset 0 2px 4px rgba(0, 0, 0, 0.3),
		0 4px 12px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-search__inside-wrapper:focus-within {
	box-shadow: 
		inset 0 2px 4px rgba(0, 0, 0, 0.3),
		0 6px 20px rgba(0, 255, 136, 0.2),
		0 0 0 2px rgba(0, 255, 136, 0.3);
	transform: translateY(-2px);
}

.wp-block-search__input {
	flex: 1;
	background: transparent;
	border: none;
	color: #f5f5f5;
	font-size: 1rem;
	padding: 16px 20px;
	outline: none;
	width: 100%;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-search__input::placeholder {
	color: rgba(245, 245, 245, 0.4);
	opacity: 1;
}

.wp-block-search__input:focus {
	outline: none;
}

.wp-block-search__input:focus::placeholder {
	color: rgba(245, 245, 245, 0.2);
}

/* Floating Label Effect */
.wp-block-search:has(.wp-block-search__input:focus) .wp-block-search__label,
.wp-block-search:has(.wp-block-search__input:not(:placeholder-shown)) .wp-block-search__label,
.wp-block-search:has(.wp-block-search__input[value]:not([value=""])) .wp-block-search__label {
	color: #00ff88;
	font-size: 0.75rem;
	transform: translateY(-2px);
	opacity: 1;
	font-weight: 600;
}

/* Material Design Button */
.wp-block-search__button {
	background: #00ff88;
	border: none;
	border-radius: 8px;
	color: #111;
	cursor: pointer;
	padding: 12px 24px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 600;
	font-size: 0.9375rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-left: 8px;
	box-shadow: 
		0 2px 4px rgba(0, 0, 0, 0.2),
		0 0 0 0 rgba(0, 255, 136, 0);
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wp-block-search__button:hover {
	background: #00e677;
	transform: translateY(-1px);
	box-shadow: 
		0 4px 12px rgba(0, 255, 136, 0.3),
		0 0 0 0 rgba(0, 255, 136, 0);
}

.wp-block-search__button:active {
	transform: translateY(0);
	box-shadow: 
		0 2px 4px rgba(0, 0, 0, 0.2),
		0 0 0 0 rgba(0, 255, 136, 0);
}

.wp-block-search__button:focus {
	outline: none;
	box-shadow: 
		0 4px 12px rgba(0, 255, 136, 0.3),
		0 0 0 3px rgba(0, 255, 136, 0.2);
}

/* Button Outside Variant */
.wp-block-search__button-outside .wp-block-search__inside-wrapper {
	padding: 4px;
}

.wp-block-search__button-outside .wp-block-search__button {
	margin-left: 12px;
}

/* Text Button Variant */
.wp-block-search__text-button .wp-block-search__button {
	background: transparent;
	color: #00ff88;
	border: 2px solid #00ff88;
	box-shadow: none;
}

.wp-block-search__text-button .wp-block-search__button:hover {
	background: rgba(0, 255, 136, 0.1);
	border-color: #00e677;
	color: #00e677;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.wp-block-search__text-button .wp-block-search__button:active {
	background: rgba(0, 255, 136, 0.2);
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 767.98px) {
	.wp-block-search {
		max-width: 100%;
	}

	.wp-block-search__inside-wrapper {
		flex-direction: column;
		gap: 12px;
		padding: 12px;
	}

	.wp-block-search__input {
		width: 100%;
		padding: 14px 16px;
	}

	.wp-block-search__button {
		width: 100%;
		margin-left: 0;
		margin-top: 8px;
	}

	.wp-block-search__button-outside .wp-block-search__button {
		margin-left: 0;
		margin-top: 8px;
	}
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
	.widget-area {
		padding-left: 0;
		margin-top: 3rem;
	}

	.archive-post-card,
	.single-post-card {
		padding: 1.5rem;
	}

	.error-code {
		font-size: 4rem;
	}

	.error-actions {
		flex-direction: column;
	}

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

/* ============================================
   WordPress Comments - Material Design
   ============================================ */

.material-comments-section {
	padding: 40px 0;
	margin-top: 40px;
}

/* Comments Header */
.comments-header {
	margin-bottom: 2.5rem;
}

.comments-title {
	font-size: 2rem;
	font-weight: 600;
	color: #f5f5f5;
	margin: 0 0 1rem 0;
	padding-bottom: 1rem;
	border-bottom: 2px solid #00ff88;
}

.no-comments {
	color: rgba(245, 245, 245, 0.7);
	font-size: 1rem;
	padding: 2rem;
	text-align: center;
	background: #1a1a1a;
	border-radius: 12px;
}

/* Comments List */
.material-comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 3rem 0;
}

.material-comment-list .material-comment {
	margin-bottom: 1.5rem;
	list-style: none;
}

.material-comment-body {
	position: relative;
}

.material-comment-inner {
	display: flex;
	gap: 1.5rem;
	background: #1a1a1a;
	border-radius: 14px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.material-comment-inner:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
	transform: translateY(-2px);
	border-color: rgba(0, 255, 136, 0.1);
}

/* Comment Avatar */
.material-comment-avatar {
	flex-shrink: 0;
}

.material-comment-avatar img {
	border-radius: 50%;
	width: 60px;
	height: 60px;
	object-fit: cover;
	border: 2px solid rgba(0, 255, 136, 0.3);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Comment Content */
.material-comment-content {
	flex: 1;
	min-width: 0;
}

.material-comment-header {
	margin-bottom: 0.5rem;
}

.material-comment-author {
	font-weight: 600;
	font-size: 1.125rem;
	color: #f5f5f5;
	font-style: normal;
	display: block;
	margin-bottom: 0.25rem;
}

.material-comment-author a {
	color: #f5f5f5;
	text-decoration: none;
	transition: color 0.3s ease;
}

.material-comment-author a:hover {
	color: #00ff88;
}

.comment-awaiting-moderation {
	color: #ffa500;
	font-size: 0.875rem;
	font-style: italic;
	display: block;
	margin-top: 0.5rem;
}

.material-comment-meta {
	margin-bottom: 1rem;
}

.material-comment-date {
	font-size: 0.875rem;
	color: #aaaaaa;
	text-decoration: none;
	display: inline-block;
}

.material-comment-text {
	color: rgba(245, 245, 245, 0.9);
	line-height: 1.7;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.material-comment-text p {
	margin: 0 0 1rem 0;
}

.material-comment-text p:last-child {
	margin-bottom: 0;
}

.material-comment-footer {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.material-comment-footer .reply {
	margin: 0;
}

.material-comment-footer .reply a {
	display: inline-block;
	padding: 8px 16px;
	background: transparent;
	border: 2px solid #00ff88;
	color: #00ff88;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.material-comment-footer .reply a:hover {
	background: #00ff88;
	color: #111;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.material-comment-footer .edit-link {
	margin-left: auto;
}

.material-comment-footer .edit-link a {
	color: rgba(245, 245, 245, 0.6);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s ease;
}

.material-comment-footer .edit-link a:hover {
	color: #00ff88;
}

/* Nested Comments */
.material-comment-list .children {
	list-style: none;
	margin: 1.5rem 0 0 0;
	padding: 0;
	padding-left: 2rem;
	position: relative;
}

.material-comment-list .children::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, rgba(0, 255, 136, 0.3), rgba(0, 255, 136, 0.1));
	border-radius: 2px;
}

.material-comment-list .children .material-comment-inner {
	margin-left: 1rem;
}

/* Comment Form */
.material-comment-form {
	margin-top: 3rem;
	padding: 2.5rem;
	background: #1a1a1a;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-form-header {
	margin-bottom: 2rem;
}

.comment-form-title {
	font-size: 1.75rem;
	font-weight: 600;
	color: #f5f5f5;
	margin: 0 0 0.5rem 0;
}

.cancel-reply-link {
	margin-left: 1rem;
}

.cancel-reply-link a {
	color: rgba(245, 245, 245, 0.6);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.3s ease;
}

.cancel-reply-link a:hover {
	color: #00ff88;
}

/* Material Form Groups */
.material-form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

.material-form-label {
	display: block;
	color: rgba(245, 245, 245, 0.7);
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0.9;
}

.material-form-label .required {
	color: #ff4444;
	margin-left: 4px;
}

.material-form-input,
.material-form-textarea {
	width: 100%;
	background: #111;
	border: 1px solid #333;
	border-radius: 12px;
	padding: 16px 20px;
	color: #f5f5f5;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	box-shadow: 
		inset 0 2px 4px rgba(0, 0, 0, 0.2),
		0 0 0 0 rgba(0, 255, 136, 0);
}

.material-form-input::placeholder,
.material-form-textarea::placeholder {
	color: rgba(245, 245, 245, 0.4);
	opacity: 1;
}

.material-form-input:focus,
.material-form-textarea:focus {
	border-color: #00ff88;
	box-shadow: 
		inset 0 2px 4px rgba(0, 0, 0, 0.2),
		0 0 0 3px rgba(0, 255, 136, 0.2);
	background: #1a1a1a;
}

.material-form-input:focus::placeholder,
.material-form-textarea:focus::placeholder {
	color: rgba(245, 245, 245, 0.2);
}

.material-form-textarea {
	resize: vertical;
	min-height: 150px;
	line-height: 1.6;
}

/* Floating Label Effect */
.material-form-group:has(.material-form-input:focus) .material-form-label,
.material-form-group:has(.material-form-input:not(:placeholder-shown)) .material-form-label,
.material-form-group:has(.material-form-textarea:focus) .material-form-label,
.material-form-group:has(.material-form-textarea:not(:placeholder-shown)) .material-form-label {
	color: #00ff88;
	font-size: 0.75rem;
	transform: translateY(-2px);
	opacity: 1;
	font-weight: 600;
}

/* Submit Button */
.form-submit {
	margin-top: 2rem;
}

.material-comment-submit {
	background: #00ff88;
	border: none;
	border-radius: 10px;
	color: #111;
	cursor: pointer;
	padding: 14px 32px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 600;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 
		0 2px 4px rgba(0, 0, 0, 0.2),
		0 0 0 0 rgba(0, 255, 136, 0);
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
}

.material-comment-submit:hover {
	background: #00e677;
	transform: translateY(-2px);
	box-shadow: 
		0 6px 20px rgba(0, 255, 136, 0.3),
		0 0 0 0 rgba(0, 255, 136, 0);
}

.material-comment-submit:active {
	transform: translateY(0);
	box-shadow: 
		0 2px 4px rgba(0, 0, 0, 0.2),
		0 0 0 0 rgba(0, 255, 136, 0);
}

.material-comment-submit:focus {
	outline: none;
	box-shadow: 
		0 6px 20px rgba(0, 255, 136, 0.3),
		0 0 0 3px rgba(0, 255, 136, 0.2);
}

/* Comments Pagination */
.comments-pagination {
	margin: 2rem 0;
}

.comments-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.comments-pagination .nav-links a,
.comments-pagination .nav-links span {
	display: inline-block;
	padding: 10px 20px;
	background: #1a1a1a;
	color: #f5f5f5;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-pagination .nav-links a:hover {
	background: #00ff88;
	color: #111;
	border-color: #00ff88;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.comments-pagination .nav-links .current {
	background: #00ff88;
	color: #111;
	border-color: #00ff88;
}

/* Responsive Design */
@media (max-width: 767.98px) {
	.material-comments-section {
		padding: 30px 0;
		margin-top: 30px;
	}

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

	.material-comment-inner {
		flex-direction: column;
		gap: 1rem;
		padding: 16px;
	}

	.material-comment-avatar img {
		width: 50px;
		height: 50px;
	}

	.material-comment-list .children {
		padding-left: 1rem;
		margin-left: 0;
	}

	.material-comment-list .children::before {
		left: -0.5rem;
	}

	.material-comment-form {
		padding: 1.5rem;
	}

	.comment-form-title {
		font-size: 1.5rem;
	}

	.material-form-input,
	.material-form-textarea {
		padding: 14px 16px;
		font-size: 0.9375rem;
	}

	.material-comment-submit {
		width: 100%;
		padding: 12px 24px;
	}

	.material-comment-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.material-comment-footer .edit-link {
		margin-left: 0;
	}
}

@media (max-width: 575.98px) {
	.material-comment-inner {
		padding: 12px;
	}

	.material-comment-avatar img {
		width: 40px;
		height: 40px;
	}

	.material-comment-author {
		font-size: 1rem;
	}

	.material-comment-text {
		font-size: 0.9375rem;
	}

	.material-comment-form {
		padding: 1rem;
	}
}


