/**
 * SNC Services Plugin Styles
 *
 * This stylesheet provides all the necessary styling for the services grid,
 * search filters, single service pages, and archive pages.
 *
 * @package SNC_Services
 */

/* ==========================================================================
   1. General Styles
   ========================================================================== */

.snc-services-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* ==========================================================================
   2. Search & Filter Bar
   ========================================================================== */

.snc-search-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.snc-search-container {
	flex: 1;
	min-width: 250px;
	position: relative;
}

.snc-search-input {
	width: 100%;
	padding: 12px 50px 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.snc-search-input:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.snc-search-button {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #2271b1 0%, #1a5a8a 100%);
	color: #fff;
	border: none;
	padding: 10px 15px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 40px;
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.25);
	font-weight: 600;
	letter-spacing: 0.3px;
}

.snc-search-button:hover {
	background: linear-gradient(135deg, #1a5a8a 0%, #135072 100%);
	transform: translateY(-50%) translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.35);
}

.snc-search-button:active {
	transform: translateY(-50%) translateY(0);
	box-shadow: 0 2px 6px rgba(34, 113, 177, 0.3);
}

.snc-search-button .dashicons {
	width: 20px;
	height: 20px;
	font-size: 20px;
	line-height: 20px;
}

.snc-search-button::before {
	content: '';
	display: inline-block;
}

.snc-search-text {
	margin-left: 6px;
	font-size: 14px;
	font-weight: 600;
}

/* Hide text on small screens, show icon */
@media (max-width: 480px) {
	.snc-search-text {
		display: none;
	}
	
	.snc-search-button {
		min-width: 40px;
		padding: 10px;
	}
}

.snc-filter-container {
	flex: 0 0 auto;
	min-width: 200px;
}

.snc-category-filter {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.snc-category-filter:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

/* ==========================================================================
   3. Services Grid
   ========================================================================== */

.snc-services-grid {
	display: grid;
	gap: 30px;
	margin-bottom: 30px;
}

/* Dynamic columns based on data attribute */
.snc-services-grid[data-columns="1"] {
	grid-template-columns: 1fr;
}

.snc-services-grid[data-columns="2"] {
	grid-template-columns: repeat(2, 1fr);
}

.snc-services-grid[data-columns="3"] {
	grid-template-columns: repeat(3, 1fr);
}

.snc-services-grid[data-columns="4"] {
	grid-template-columns: repeat(4, 1fr);
}

/* Responsive grid adjustments */
@media (max-width: 992px) {
	.snc-services-grid[data-columns="3"],
	.snc-services-grid[data-columns="4"] {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.snc-services-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ==========================================================================
   4. Service Card
   ========================================================================== */

.snc-service-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.snc-service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	background: #f9f9f9;
}

.snc-service-card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.snc-service-image-wrapper {
	position: relative;
	overflow: hidden;
	background: #f0f0f0;
	height: 200px;
}

.snc-service-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

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

/* Service Placeholder with Watermark */
.snc-service-placeholder {
	width: 100%;
	height: 100%;
	min-height: 200px;
	background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.snc-service-placeholder::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 10px,
		rgba(255, 255, 255, 0.1) 10px,
		rgba(255, 255, 255, 0.1) 20px
	);
}

.snc-placeholder-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	z-index: 1;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.snc-service-card:hover .snc-placeholder-content {
	opacity: 0.7;
}

.snc-placeholder-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	background: #fff;
	padding: 4px;
}

.snc-placeholder-text {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.snc-service-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.snc-service-categories {
	margin-bottom: 10px;
	font-size: 13px;
}

.snc-service-categories a {
	color: #2271b1;
	text-decoration: none;
	font-weight: 500;
}

.snc-service-categories a:hover {
	text-decoration: underline;
}

.snc-service-title {
	margin: 0 0 12px 0;
	font-size: 18px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 4.2em;
}

.snc-service-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.snc-service-title a:hover {
	color: #2271b1;
}

.snc-service-rating-wrapper {
	margin-bottom: 15px;
}

.snc-service-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
}

.snc-service-rating .star {
	color: #ddd;
	font-size: 16px;
}

.snc-service-rating .star.filled {
	color: #ffa500;
}

.snc-service-rating .star.half {
	color: #ffa500;
	opacity: 0.6;
}

.snc-service-rating .rating-value {
	font-weight: 600;
	color: #333;
	margin-left: 5px;
}

.snc-service-rating .rating-count {
	color: #999;
	font-size: 13px;
}

.snc-service-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.snc-service-price {
	display: flex;
	flex-direction: column;
}

.snc-price-label {
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
}

.snc-price-value {
	font-size: 20px;
	font-weight: 700;
	color: #2271b1;
}

.snc-service-button {
	padding: 11px 22px;
	background: linear-gradient(135deg, #2271b1 0%, #1a5a8a 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.25);
	letter-spacing: 0.3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.snc-service-button:hover {
	background: linear-gradient(135deg, #1a5a8a 0%, #135072 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.35);
	color: #fff;
}

.snc-service-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(34, 113, 177, 0.3);
}

/* ==========================================================================
   5. No Services Found
   ========================================================================== */

.snc-no-services {
	text-align: center;
	padding: 60px 20px;
	background: #f8f9fa;
	border-radius: 8px;
	grid-column: 1 / -1;
}

.snc-no-services p {
	font-size: 16px;
	color: #666;
	margin: 0;
}

/* ==========================================================================
   6. Loading Indicator
   ========================================================================== */

.snc-loading {
	text-align: center;
	padding: 40px;
}

.snc-spinner {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-left-color: #2271b1;
	border-radius: 50%;
	animation: snc-spin 1s linear infinite;
}

@keyframes snc-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* ==========================================================================
   7. Single Service Page
   ========================================================================== */

.snc-single-service {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
	background: #f8f9fa;
}

/* Action Buttons for Marketplace Style */
.snc-action-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}

.snc-continue-btn {
	width: 100%;
	padding: 15px 20px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.snc-continue-btn:hover {
	background: #333;
	transform: translateY(-2px);
}

.snc-contact-btn {
	width: 100%;
	padding: 15px 20px;
	background: #fff;
	color: #000;
	border: 1px solid #000;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.snc-contact-btn:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
}

/* Service Header - Modern Design */
.snc-single-header {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 50px 20px;
	margin-bottom: 0;
	border-bottom: 1px solid #e8eaed;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.snc-header-content {
	max-width: 1200px;
	margin: 0 auto;
}

.snc-single-title {
	font-size: 42px;
	margin-bottom: 20px;
	color: #1a1a1a;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.snc-single-meta {
	display: flex;
	gap: 35px;
	flex-wrap: wrap;
	margin-bottom: 25px;
	font-size: 15px;
}

.snc-single-meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.snc-single-meta-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.snc-meta-label {
	font-weight: 600;
	color: #555;
}

.snc-meta-value {
	color: #1a1a1a;
}

.snc-single-short-description {
	font-size: 18px;
	line-height: 1.7;
	color: #444;
	padding: 30px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 12px;
	margin-top: 25px;
	border: 1px solid #e8eaed;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.snc-single-short-description p {
	margin: 0;
}

/* Package Comparison Section - Modern Design */
.snc-package-comparison-section {
	background: #fff;
	padding: 50px 20px;
	margin-bottom: 0;
	border-bottom: 1px solid #e8eaed;
}

.snc-package-comparison-section .snc-fiverr-comparison-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.snc-package-comparison-section .snc-fiverr-comparison-table {
	width: 100%;
	overflow-x: auto;
}

/* Service Details Section - Modern Design */
.snc-service-details-section {
	background: #fafbfc;
	padding: 50px 20px;
}

.snc-service-details-layout {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
}

.snc-service-main {
	background: #fff;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
}

.snc-service-featured-image {
	margin-bottom: 40px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.snc-service-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}

.snc-service-description {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 40px;
}

.snc-service-description h2 {
	font-size: 32px;
	margin-bottom: 25px;
	color: #1a1a1a;
	font-weight: 700;
	letter-spacing: -0.3px;
	position: relative;
	padding-bottom: 15px;
}

.snc-service-description h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #2271b1 0%, #5ca3d9 100%);
	border-radius: 2px;
}

.snc-service-sidebar {
	position: sticky;
	top: 20px;
	align-self: start;
}

.snc-sidebar-widget {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 20px;
	border: 1px solid #e8eaed;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.snc-sidebar-widget:last-child {
	margin-bottom: 0;
}

.snc-sidebar-widget h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 15px 0;
	padding-bottom: 12px;
	border-bottom: 2px solid #e8eaed;
}

.snc-sidebar-widget .snc-skills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.snc-sidebar-widget .snc-skill-tag {
	display: inline-block;
	padding: 5px 12px;
	background: linear-gradient(135deg, #2271b1 0%, #1a5a8a 100%);
	color: #fff;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.3s ease;
	line-height: 1.4;
}

.snc-sidebar-widget .snc-skill-tag:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.3);
}

/* Hidden Skills */
.snc-skill-tag.snc-skill-hidden {
	display: none;
}

.snc-skills-list.expanded .snc-skill-tag.snc-skill-hidden {
	display: inline-block;
}

/* Toggle Skills Button */
.snc-toggle-skills {
	width: 100%;
	padding: 10px 14px;
	margin-top: 12px;
	background: #fff;
	border: 2px dashed #d0d0d0;
	border-radius: 8px;
	color: #2271b1;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.snc-toggle-skills:hover {
	background: #f0f7ff;
	border-color: #2271b1;
	border-style: solid;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.15);
}

.snc-toggle-skills:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(34, 113, 177, 0.1);
}

/* Keywords List */
.snc-sidebar-widget .snc-keywords-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.snc-sidebar-widget .snc-keyword-tag {
	display: inline-block;
	padding: 5px 12px;
	background: #f8f9fa;
	color: #555;
	border: 1px solid #e0e0e0;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.3s ease;
	line-height: 1.4;
}

.snc-sidebar-widget .snc-keyword-tag:hover {
	background: #e8eaed;
	border-color: #2271b1;
	color: #2271b1;
	transform: translateY(-1px);
}

/* Hidden Keywords */
.snc-keyword-tag.snc-keyword-hidden {
	display: none;
}

.snc-keywords-list.expanded .snc-keyword-tag.snc-keyword-hidden {
	display: inline-block;
}

/* Toggle Keywords Button */
.snc-toggle-keywords {
	width: 100%;
	padding: 10px 14px;
	margin-top: 12px;
	background: #fff;
	border: 2px dashed #d0d0d0;
	border-radius: 8px;
	color: #2271b1;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.snc-toggle-keywords:hover {
	background: #f0f7ff;
	border-color: #2271b1;
	border-style: solid;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.15);
}

.snc-toggle-keywords:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(34, 113, 177, 0.1);
}

/* ==========================================================================
   8. Pricing Table
   ========================================================================== */

.snc-pricing-table {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 25px;
	border: 1px solid #e0e0e0;
}

.snc-pricing-table h3 {
	margin-top: 0;
	margin-bottom: 25px;
	font-size: 24px;
	color: #333;
	font-weight: 600;
}

.snc-pricing-package {
	padding: 25px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	background: #fff;
}

.snc-pricing-package:hover {
	border-color: #2271b1;
	background: #f8f9ff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(34, 113, 177, 0.15);
}

.snc-pricing-package-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.snc-package-title {
	font-size: 20px;
	font-weight: 700;
	color: #333;
}

.snc-package-price {
	font-size: 28px;
	font-weight: 700;
	color: #2271b1;
}

.snc-package-description {
	color: #666;
	font-size: 15px;
	line-height: 1.6;
}

/* Service Info Box */
.snc-service-info-box {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 30px;
	border-radius: 16px;
	border: 1px solid #e8eaed;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.snc-service-info-box:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.snc-service-info-box h4 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 22px;
	color: #1a1a1a;
	font-weight: 700;
	letter-spacing: -0.3px;
}

.snc-service-info-box p {
	margin-bottom: 12px;
	font-size: 15px;
	color: #444;
	line-height: 1.6;
}

.snc-service-info-box p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   9. Modern Archive Page
   ========================================================================== */

.snc-modern-archive {
	background: #fafbfc;
	min-height: 100vh;
}

.snc-archive-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
}

.snc-archive-header {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	padding: 40px 20px 30px;
	text-align: center;
	border-bottom: 1px solid #e8eaed;
}

.snc-archive-header-content {
	max-width: 800px;
	margin: 0 auto;
}

.snc-archive-title {
	font-size: 36px;
	margin-bottom: 12px;
	color: #1a1a1a;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.snc-archive-description {
	font-size: 16px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 25px;
}



.snc-archive-content-wrapper .snc-services-wrapper {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 20px;
	align-items: start;
}

/* Modern Archive Sidebar */
.snc-archive-sidebar {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 16px;
	padding: 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	border: 1px solid #e8eaed;
	position: sticky;
	top: 20px;
	overflow: hidden;
}

.snc-sidebar-section {
	padding: 20px;
	border-bottom: 1px solid #e8eaed;
}

.snc-sidebar-section:last-child {
	border-bottom: none;
}

.snc-sidebar-title {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 15px 0;
	letter-spacing: -0.3px;
}

/* Sidebar Search */
.snc-archive-sidebar .snc-search-container {
	position: relative;
}

.snc-archive-sidebar .snc-search-input {
	width: 100%;
	padding: 12px 15px;
	padding-right: 50px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.snc-archive-sidebar .snc-search-input:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.snc-archive-sidebar .snc-search-button {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	padding: 8px 12px;
	min-width: auto;
	height: auto;
}

.snc-archive-sidebar .snc-search-text {
	display: none;
}

/* Sidebar Category Filter */
.snc-archive-sidebar .snc-category-filter {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.snc-archive-sidebar .snc-category-filter:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

/* Category List */
.snc-category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.snc-category-list li {
	margin-bottom: 2px;
}

.snc-category-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	color: #555;
}

.snc-category-list a:hover {
	background: #f0f4ff;
	color: #2271b1;
}

.snc-category-list a.active {
	background: linear-gradient(135deg, #2271b1 0%, #3a8fd9 100%);
	color: #fff;
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.3);
}

.snc-category-name {
	font-weight: 600;
	font-size: 14px;
}

.snc-category-count {
	background: rgba(255, 255, 255, 0.2);
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

.snc-category-list a.active .snc-category-count {
	background: rgba(255, 255, 255, 0.3);
}

.snc-category-list a:not(.active) .snc-category-count {
	background: #f0f0f0;
	color: #666;
}

/* Hidden Categories */
.snc-category-list li.snc-category-hidden {
	display: none;
}

.snc-category-list.expanded li.snc-category-hidden {
	display: block;
}

/* Toggle Categories Button */
.snc-toggle-categories {
	width: 100%;
	padding: 12px 16px;
	margin-top: 15px;
	background: #fff;
	border: 2px dashed #d0d0d0;
	border-radius: 8px;
	color: #2271b1;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.snc-toggle-categories:hover {
	background: #f0f7ff;
	border-color: #2271b1;
	border-style: solid;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(34, 113, 177, 0.15);
}

.snc-toggle-categories:active {
	transform: translateY(0);
	box-shadow: 0 1px 4px rgba(34, 113, 177, 0.1);
}

/* Archive Main Content */
.snc-archive-main-content {
	min-width: 0;
}

/* Search Bar in Header */
.snc-archive-header .snc-archive-search-bar {
	max-width: 600px;
	margin: 0 auto;
}

.snc-archive-search-bar .snc-search-container {
	display: flex;
	gap: 10px;
	align-items: center;
}

.snc-archive-search-bar .snc-search-input {
	flex: 1;
	padding: 14px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
	background: #fff;
}

.snc-archive-search-bar .snc-search-input:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.snc-archive-search-bar .snc-search-button {
	padding: 14px 30px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.snc-archive-search-bar .snc-search-button:hover {
	background: #1a5a8a;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.snc-archive-search-bar .snc-search-button .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

.snc-search-filter-wrapper {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.snc-dynamic-search {
	flex: 1;
	min-width: 300px;
	position: relative;
}

.snc-archive-search-input {
	width: 100%;
	padding: 14px 45px 14px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 30px;
	font-size: 15px;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.snc-archive-search-input:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 4px rgba(34, 113, 177, 0.1);
}

.snc-search-icon {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	opacity: 0.5;
	pointer-events: none;
}

.snc-dynamic-filters {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.snc-archive-category-select,
.snc-archive-sort-select {
	padding: 14px 18px;
	border: 2px solid #e0e0e0;
	border-radius: 30px;
	font-size: 14px;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 180px;
}

.snc-archive-category-select:focus,
.snc-archive-sort-select:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 4px rgba(34, 113, 177, 0.1);
}

.snc-results-count {
	text-align: center;
	font-size: 15px;
	color: #666;
	font-weight: 500;
}

.snc-results-count span {
	font-weight: 700;
	color: #2271b1;
}

/* Archive Main Content */
.snc-archive-main {
	padding: 40px 20px;
	max-width: 1160px;
	margin: 0 auto;
}

.snc-services-grid.loading {
	opacity: 0.5;
	pointer-events: none;
}

/* Infinite Scroll Loading */
.snc-infinite-loading {
	text-align: center;
	padding: 40px 20px;
}

.snc-loading-spinner {
	width: 40px;
	height: 40px;
	margin: 0 auto 15px;
	border: 4px solid #f0f0f0;
	border-top-color: #2271b1;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.snc-infinite-loading p {
	color: #666;
	font-size: 15px;
	margin: 0;
}

/* Load More Button */
.snc-load-more-container {
	text-align: center;
	padding: 40px 20px;
}

.snc-load-more-btn {
	padding: 16px 40px;
	background: linear-gradient(135deg, #2271b1 0%, #3a8fd9 100%);
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.snc-load-more-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(34, 113, 177, 0.4);
}

.snc-load-more-btn:active {
	transform: translateY(0);
}

/* End of Results */
.snc-end-of-results {
	text-align: center;
	padding: 40px 20px;
	color: #999;
	font-size: 15px;
}

.snc-end-of-results p {
	margin: 0;
	display: inline-block;
	padding: 12px 24px;
	background: #f8f9fa;
	border-radius: 20px;
	border: 1px solid #e0e0e0;
}

/* No Services Found */
.snc-no-services {
	text-align: center;
	padding: 80px 20px;
}

.snc-no-services-icon {
	font-size: 64px;
	margin-bottom: 20px;
	opacity: 0.3;
}

.snc-no-services h3 {
	font-size: 24px;
	color: #333;
	margin-bottom: 10px;
}

.snc-no-services p {
	font-size: 16px;
	color: #666;
	margin: 0;
}

/* Modern Pagination */
.snc-pagination {
	text-align: center;
	padding: 50px 20px;
}

.snc-pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.snc-pagination .page-numbers {
	display: inline-block;
	padding: 12px 18px;
	background: #fff;
	color: #333;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	min-width: 44px;
	text-align: center;
}

.snc-pagination .page-numbers:hover {
	background: #f8f9fa;
	border-color: #2271b1;
	color: #2271b1;
	transform: translateY(-2px);
}

.snc-pagination .page-numbers.current {
	background: linear-gradient(135deg, #2271b1 0%, #3a8fd9 100%);
	color: #fff;
	border-color: #2271b1;
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.snc-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	cursor: default;
}

.snc-pagination .page-numbers.dots:hover {
	transform: none;
}

.snc-archive-sidebar {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	height: fit-content;
	position: sticky;
	top: 20px;
}

.snc-archive-sidebar h3 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 18px;
	color: #333;
}

.snc-sidebar-categories {
	list-style: none;
	padding: 0;
	margin: 0;
}

.snc-sidebar-categories li {
	margin-bottom: 10px;
}

.snc-sidebar-categories a {
	display: flex;
	justify-content: space-between;
	padding: 8px 12px;
	color: #333;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.snc-sidebar-categories a:hover {
	background: #f0f0f0;
	color: #2271b1;
}

.snc-sidebar-categories .count {
	color: #999;
	font-size: 13px;
}

.snc-archive-main {
	min-width: 0;
}

/* ==========================================================================
   10. Service Skills & Keywords (Now in Sidebar - See Sidebar Widget Styles Above)
   ========================================================================== */

.snc-single-short-description {
	font-size: 18px;
	line-height: 1.6;
	color: #555;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 30px;
}

.snc-single-short-description p {
	margin: 0;
}

/* ==========================================================================
   11. Pagination
   ========================================================================== */

.snc-pagination {
	margin-top: 40px;
	text-align: center;
}

.snc-pagination .page-numbers {
	display: inline-block;
	padding: 10px 15px;
	margin: 0 5px;
	background: #fff;
	color: #333;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.snc-pagination .page-numbers:hover,
.snc-pagination .page-numbers.current {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
}

.snc-pagination .prev,
.snc-pagination .next {
	font-weight: 600;
}

/* ==========================================================================
   12. Responsive Adjustments
   ========================================================================== */

@media (max-width: 1200px) {
	.snc-single-service {
		max-width: 100%;
	}
	
	.snc-header-content,
	.snc-service-details-layout {
		max-width: 100%;
		padding: 0 20px;
	}
	
	.snc-services-wrapper {
		padding: 15px;
	}
}

@media (max-width: 992px) {
	.snc-service-details-layout,
	.snc-archive-content-wrapper .snc-services-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.snc-service-sidebar,
	.snc-archive-sidebar {
		position: static;
	}
	
	.snc-archive-sidebar {
		order: -1;
		max-width: 100%;
		margin-bottom: 30px;
	}
	
	.snc-single-header {
		padding: 35px 20px;
	}
	
	.snc-single-title {
		font-size: 32px;
	}
	
	.snc-service-details-section {
		padding: 40px 20px;
	}
	
	.snc-package-comparison-section {
		padding: 40px 20px;
	}
	
	.snc-services-grid[data-columns="2"],
	.snc-services-grid[data-columns="3"],
	.snc-services-grid[data-columns="4"] {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.snc-archive-content-wrapper .snc-services-wrapper {
		padding: 20px 15px;
	}
	
	.snc-service-card {
		min-height: auto;
	}
	
	.snc-service-footer {
		flex-direction: column;
		gap: 15px;
		align-items: stretch;
	}
	
	.snc-service-button {
		width: 100%;
		text-align: center;
		padding: 12px 15px;
	}
}

@media (max-width: 768px) {
	.snc-search-filter-bar {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
	}

	.snc-search-container,
	.snc-filter-container {
		min-width: 100%;
	}
	
	.snc-archive-header {
		padding: 30px 15px 25px;
	}
	
	.snc-archive-title {
		font-size: 28px;
		margin-bottom: 10px;
	}
	
	.snc-archive-description {
		font-size: 15px;
		margin-bottom: 20px;
	}
	
	.snc-archive-filters {
		padding: 15px;
	}
	
	.snc-search-filter-wrapper {
		flex-direction: column;
		gap: 12px;
	}
	
	.snc-dynamic-search {
		min-width: 100%;
	}
	
	.snc-dynamic-filters {
		flex-direction: column;
		width: 100%;
	}
	
	.snc-archive-category-select,
	.snc-archive-sort-select {
		width: 100%;
		min-width: 100%;
	}
	
	.snc-archive-content-wrapper {
		padding: 20px 15px;
	}
	
	.snc-archive-content-wrapper .snc-services-wrapper {
		padding: 0;
	}
	
	.snc-archive-sidebar {
		margin-bottom: 25px;
		border-radius: 12px;
	}
	
	.snc-category-list {
		max-height: none;
		overflow-y: visible;
	}

	.snc-single-title {
		font-size: 26px;
		line-height: 1.3;
		margin-bottom: 15px;
	}

	.snc-archive-title {
		font-size: 24px;
	}
	
	.snc-single-header {
		padding: 25px 15px;
	}
	
	.snc-single-meta {
		gap: 10px;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.snc-single-meta-item {
		width: 100%;
		padding: 10px 14px;
		font-size: 14px;
	}
	
	.snc-single-short-description {
		padding: 18px;
		font-size: 15px;
		margin-top: 20px;
	}
	
	.snc-service-description h2 {
		font-size: 22px;
		margin-bottom: 18px;
	}
	
	.snc-service-details-section {
		padding: 25px 15px;
	}
	
	.snc-package-comparison-section {
		padding: 25px 15px;
	}
	
	.snc-sidebar-widget {
		padding: 18px;
		margin-bottom: 15px;
	}
	
	.snc-sidebar-widget h3 {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.snc-pricing-table {
		padding: 18px;
		margin-bottom: 20px;
	}
	
	.snc-pricing-package {
		padding: 18px;
		margin-bottom: 15px;
	}
	
	.snc-service-info-box {
		padding: 18px;
	}

	.snc-action-buttons {
		margin-top: 15px;
		gap: 10px;
	}

	.snc-continue-btn,
	.snc-contact-btn {
		padding: 12px 15px;
		font-size: 14px;
	}
	
	/* Services Grid */
	.snc-services-grid {
		grid-template-columns: 1fr !important;
		gap: 20px;
	}
	
	.snc-service-card {
		margin-bottom: 0;
	}
	
	.snc-service-image-wrapper {
		height: 220px;
	}
	
	.snc-service-content {
		padding: 18px;
	}
	
	.snc-service-title {
		font-size: 17px;
		margin-bottom: 10px;
	}
	
	.snc-service-price {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 8px;
	}
	
	.snc-price-value {
		font-size: 18px;
	}
	
	.snc-service-footer {
		padding-top: 12px;
		margin-top: 12px;
	}
	
	.snc-pagination {
		padding: 30px 15px;
	}
	
	.snc-pagination .page-numbers {
		padding: 10px 14px;
		min-width: 40px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.snc-single-header {
		padding: 20px 12px;
	}
	
	.snc-service-details-section {
		padding: 20px 12px;
	}
	
	.snc-single-title {
		font-size: 22px;
		margin-bottom: 12px;
	}
	
	.snc-single-short-description {
		padding: 15px;
		font-size: 14px;
		margin-top: 15px;
	}
	
	.snc-single-meta-item {
		padding: 8px 12px;
		font-size: 13px;
	}
	
	.snc-pricing-table {
		padding: 15px;
	}
	
	.snc-pricing-package {
		padding: 15px;
	}
	
	.snc-package-title {
		font-size: 17px;
	}
	
	.snc-package-price {
		font-size: 22px;
	}
	
	.snc-service-description h2 {
		font-size: 20px;
	}
	
	.snc-sidebar-widget {
		padding: 15px;
	}
	
	.snc-sidebar-widget h3 {
		font-size: 15px;
	}
	
	/* Archive Page Mobile */
	.snc-archive-header {
		padding: 25px 12px 20px;
	}
	
	.snc-archive-title {
		font-size: 22px;
	}
	
	.snc-archive-description {
		font-size: 14px;
	}
	
	.snc-archive-content-wrapper {
		padding: 15px 12px;
	}
	
	.snc-archive-search-bar .snc-search-input {
		padding: 12px 15px;
		font-size: 14px;
	}
	
	.snc-archive-search-bar .snc-search-button {
		padding: 12px 20px;
		font-size: 14px;
	}
	
	/* Service Cards Mobile */
	.snc-services-grid {
		gap: 15px;
	}
	
	.snc-service-image-wrapper {
		height: 200px;
	}
	
	.snc-service-content {
		padding: 15px;
	}
	
	.snc-service-title {
		font-size: 16px;
		margin-bottom: 8px;
	}
	
	.snc-service-categories {
		font-size: 12px;
		margin-bottom: 8px;
	}
	
	.snc-service-rating {
		font-size: 13px;
	}
	
	.snc-service-rating .star {
		font-size: 14px;
	}
	
	.snc-price-label {
		font-size: 11px;
	}
	
	.snc-price-value {
		font-size: 17px;
	}
	
	.snc-service-button {
		padding: 10px 12px;
		font-size: 13px;
	}
	
	.snc-pagination {
		padding: 25px 12px;
	}
	
	.snc-pagination .page-numbers {
		padding: 8px 12px;
		min-width: 38px;
		font-size: 13px;
		margin: 3px;
	}
	
	/* Sidebar Mobile */
	.snc-archive-sidebar {
		padding: 18px;
		margin-bottom: 20px;
	}
	
	.snc-sidebar-section {
		padding: 15px;
	}
	
	.snc-sidebar-title {
		font-size: 15px;
	}
	
	.snc-category-list a {
		padding: 10px 12px;
		font-size: 13px;
	}
	
	.snc-category-name {
		font-size: 13px;
	}
	
	.snc-category-count {
		font-size: 11px;
		padding: 3px 8px;
	}
	
	.snc-search-filter-bar {
		padding: 12px;
		gap: 12px;
	}
}

/* Info Tooltip for Property Descriptions */
.snc-info-tooltip {
	display: inline-block;
	margin-left: 6px;
	width: 16px;
	height: 16px;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #666;
	background: #f0f0f0;
	border-radius: 50%;
	cursor: help;
	transition: all 0.2s ease;
	position: relative;
}

.snc-info-tooltip:hover {
	color: #fff;
	background: #2271b1;
	transform: scale(1.1);
}

/* Enhanced tooltip appearance */
.snc-feature-name {
	display: flex;
	align-items: center;
}

/* Select Button in Package Header */
.snc-package-column-header .snc-select-package {
	width: 100%;
	padding: 12px 20px;
	margin-top: 15px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.snc-package-column-header .snc-select-package:hover {
	background: #333;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.snc-package-column-header .snc-select-package:active {
	transform: translateY(0);
}

/* Responsive for Select Buttons */
@media (max-width: 992px) {
	.snc-package-column-header .snc-select-package {
		padding: 14px 18px;
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.snc-package-column-header .snc-select-package {
		padding: 16px 20px;
		font-size: 17px;
		margin-top: 12px;
	}
}

/* Order Request Modal */
.snc-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.snc-modal-container {
	background: #fff;
	border-radius: 12px;
	max-width: 800px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.snc-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 30px;
	border-bottom: 1px solid #eee;
}

.snc-modal-header h2 {
	margin: 0;
	font-size: 24px;
	color: #333;
}

.snc-modal-close {
	background: rgba(0, 0, 0, 0.05);
	border: none;
	font-size: 24px;
	color: #666;
	cursor: pointer;
	padding: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.snc-modal-close::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(220, 53, 69, 0.1);
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snc-modal-close:hover {
	background: rgba(220, 53, 69, 0.1);
	color: #dc3545;
	transform: rotate(90deg);
}

.snc-modal-close:hover::before {
	transform: scale(1);
}

.snc-modal-close:active {
	transform: rotate(90deg) scale(0.95);
	background: rgba(220, 53, 69, 0.15);
}

.snc-modal-body {
	padding: 30px;
}

.snc-order-summary {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 30px;
}

.snc-order-summary h3 {
	margin: 0 0 15px 0;
	font-size: 18px;
	color: #333;
}

.snc-summary-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #e0e0e0;
}

.snc-summary-item:last-child {
	border-bottom: none;
}

.snc-summary-label {
	font-weight: 600;
	color: #666;
}

.snc-summary-value {
	color: #333;
}

.snc-order-form h3 {
	margin: 0 0 20px 0;
	font-size: 18px;
	color: #333;
}

.snc-form-group {
	margin-bottom: 20px;
}

.snc-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
	font-size: 14px;
}

.snc-required {
	color: #d9534f;
}

.snc-form-group input,
.snc-form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.snc-form-group input:focus,
.snc-form-group textarea:focus {
	border-color: #2271b1;
	outline: none;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
}

.snc-form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.snc-field-description {
	font-size: 13px;
	color: #666;
	margin: 5px 0 0 0;
	font-style: italic;
}

/* Country and Phone Input */
.snc-country-select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
	background: #fff;
	cursor: pointer;
}

.snc-country-select:focus {
	border-color: #2271b1;
	outline: none;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
}

.snc-phone-input-wrapper {
	position: relative;
	border: 1px solid #ddd;
	border-radius: 6px;
	transition: all 0.2s ease;
	background: #fff;
}

.snc-phone-input-wrapper:focus-within,
.snc-phone-input-wrapper.focused {
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
}

.snc-phone-display {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	position: relative;
}

.snc-phone-display::after {
	content: '▼';
	position: absolute;
	right: 15px;
	color: #666;
	font-size: 12px;
	pointer-events: none;
	z-index: 1;
}

.snc-phone-flag {
	font-size: 18px;
	margin-right: 8px;
	pointer-events: none;
}

.snc-phone-code-display {
	font-weight: 600;
	color: #333;
	margin-right: 8px;
	pointer-events: none;
}

.snc-phone-separator {
	color: #ccc;
	margin-right: 8px;
	font-weight: 300;
	pointer-events: none;
}

.snc-phone-number {
	flex: 1;
	border: none;
	font-size: 14px;
	background: transparent;
	outline: none;
	color: #333;
	padding: 0;
	margin: 0;
	z-index: 3;
	position: relative;
	min-width: 120px;
	width: 100%;
}

.snc-phone-number::placeholder {
	color: #999;
}

.snc-phone-country-select {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.snc-phone-country-select:hover + .snc-phone-display {
	background: #f8f9fa;
}

/* Social Links Section */
#snc-social-links-container {
	margin-bottom: 12px;
}

.snc-social-link-item {
	display: grid;
	grid-template-columns: 180px 1fr auto;
	gap: 10px;
	margin-bottom: 10px;
	align-items: center;
}

.snc-social-platform {
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s ease;
}

.snc-social-platform:focus {
	border-color: #2271b1;
	outline: none;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.1);
}

.snc-social-link {
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
}

.snc-remove-social-link {
	background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
	color: #fff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(220, 53, 69, 0.25);
	position: relative;
	overflow: hidden;
}

.snc-remove-social-link::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snc-remove-social-link:hover {
	background: linear-gradient(135deg, #bd2130 0%, #a71d2a 100%);
	transform: rotate(90deg) scale(1.1);
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.35);
}

.snc-remove-social-link:hover::before {
	transform: scale(1);
}

.snc-remove-social-link:active {
	transform: rotate(90deg) scale(1);
	box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

.snc-add-social-btn {
	background: #fff;
	color: #2271b1;
	border: 2px dashed #d0d0d0;
	padding: 12px 18px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	letter-spacing: 0.3px;
}

.snc-add-social-btn::before {
	content: '+';
	font-size: 18px;
	font-weight: 700;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snc-add-social-btn:hover {
	background: #f0f7ff;
	border-color: #2271b1;
	border-style: solid;
	color: #1a5a8a;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.15);
}

.snc-add-social-btn:hover::before {
	transform: rotate(90deg);
}

.snc-add-social-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(34, 113, 177, 0.1);
}

/* File Upload Section */
.snc-file-upload-area {
	position: relative;
	border: 2px dashed #ccc;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	background: #fafafa;
	transition: all 0.3s ease;
	cursor: pointer;
}

.snc-file-upload-area:hover {
	border-color: #2271b1;
	background: #f5f8fa;
}

.snc-file-upload-area input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.snc-file-upload-label {
	pointer-events: none;
}

.snc-upload-icon {
	font-size: 32px;
	display: block;
	margin-bottom: 10px;
}

.snc-upload-text {
	font-size: 14px;
	color: #666;
}

.snc-file-list {
	margin-top: 15px;
}

.snc-file-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	margin-bottom: 8px;
}

.snc-file-name {
	flex: 1;
	font-size: 14px;
	color: #333;
}

.snc-file-size {
	font-size: 12px;
	color: #999;
	margin: 0 10px;
}

.snc-remove-file {
	background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
	color: #fff;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(220, 53, 69, 0.25);
	position: relative;
	overflow: hidden;
}

.snc-remove-file::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snc-remove-file:hover {
	background: linear-gradient(135deg, #bd2130 0%, #a71d2a 100%);
	transform: rotate(90deg) scale(1.1);
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.35);
}

.snc-remove-file:hover::before {
	transform: scale(1);
}

.snc-remove-file:active {
	transform: rotate(90deg) scale(1);
	box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

.snc-form-message {
	margin: 20px 0;
	padding: 12px 15px;
	border-radius: 6px;
}

.snc-success-message {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	padding: 12px 15px;
	border-radius: 6px;
}

.snc-error-message {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	padding: 12px 15px;
	border-radius: 6px;
}

.snc-form-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 25px;
}

.snc-btn {
	padding: 13px 26px;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: 0.3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
}

.snc-btn-primary {
	background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.snc-btn-primary::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
	transform: translateX(-100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snc-btn-primary:hover {
	background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.snc-btn-primary:hover::before {
	transform: translateX(0);
}

.snc-btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.snc-btn-primary:disabled {
	background: #999;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
	opacity: 0.6;
}

.snc-btn-secondary {
	background: #fff;
	color: #333;
	border: 2px solid #e0e0e0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.snc-btn-secondary:hover {
	background: #f8f9fa;
	border-color: #2271b1;
	color: #2271b1;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.15);
}

.snc-btn-secondary:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

body.snc-modal-open {
	overflow: hidden;
}

/* Terms and Conditions Checkbox */
.snc-terms-checkbox {
	margin: 25px 0 20px;
	padding: 18px 20px;
	background: #fff;
	border-radius: 8px;
	border: 2px solid #e0e0e0;
	transition: all 0.3s ease;
}

.snc-terms-checkbox:hover {
	border-color: #2271b1;
	box-shadow: 0 2px 12px rgba(34, 113, 177, 0.08);
}

.snc-checkbox-label {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.5;
	margin: 0;
	user-select: none;
}

.snc-checkbox-label input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.snc-checkbox-custom {
	width: 20px;
	height: 20px;
	min-width: 20px;
	border: 2px solid #bbb;
	border-radius: 4px;
	background: #fff;
	position: relative;
	flex-shrink: 0;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.snc-checkbox-custom::before {
	content: '✓';
	position: absolute;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	opacity: 0;
	transform: scale(0);
	transition: all 0.2s ease;
}

.snc-checkbox-label input[type="checkbox"]:checked + .snc-checkbox-custom {
	background: #2271b1;
	border-color: #2271b1;
}

.snc-checkbox-label input[type="checkbox"]:checked + .snc-checkbox-custom::before {
	opacity: 1;
	transform: scale(1);
}

.snc-checkbox-label:hover .snc-checkbox-custom {
	border-color: #2271b1;
}

.snc-checkbox-text {
	color: #333;
	flex: 1;
	font-weight: 400;
}

.snc-checkbox-text strong {
	color: #000;
	font-weight: 600;
}

.snc-terms-link {
	color: #2271b1;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
}

.snc-terms-link:hover {
	color: #135e96;
	text-decoration: underline;
}

.snc-terms-note {
	margin: 8px 0 0 32px;
	font-size: 12px;
	color: #666;
	line-height: 1.4;
}

/* Disabled Submit Button */
.snc-btn:disabled,
.snc-btn.disabled {
	background: #ccc !important;
	color: #666 !important;
	cursor: not-allowed !important;
	opacity: 0.6;
	transform: none !important;
	box-shadow: none !important;
}

.snc-btn:disabled:hover,
.snc-btn.disabled:hover {
	background: #ccc !important;
	color: #666 !important;
	transform: none !important;
	box-shadow: none !important;
}

/* Responsive modal */
@media (max-width: 768px) {
	.snc-modal-overlay {
		padding: 0;
	}
	
	.snc-modal-container {
		max-height: 100vh;
		border-radius: 0;
		margin: 0;
		max-width: 100%;
	}
	
	.snc-modal-header {
		padding: 20px;
	}
	
	.snc-modal-header h2 {
		font-size: 20px;
	}
	
	.snc-modal-body {
		padding: 20px;
	}
	
	.snc-terms-checkbox {
		margin: 20px 0 15px;
		padding: 15px;
	}
	
	.snc-checkbox-label {
		gap: 10px;
		font-size: 14px;
	}
	
	.snc-checkbox-custom {
		width: 18px;
		height: 18px;
		min-width: 18px;
	}
	
	.snc-checkbox-custom::before {
		font-size: 12px;
	}
	
	.snc-terms-note {
		margin: 6px 0 0 28px;
		font-size: 11px;
	}
	
	.snc-order-summary {
		padding: 15px;
	}
	
	.snc-summary-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		padding: 10px 0;
	}
	
	.snc-form-actions {
		flex-direction: column;
	}
	
	.snc-btn {
		width: 100%;
	}
	
	.snc-phone-display {
		padding: 10px 12px;
	}
	
	.snc-phone-flag {
		font-size: 16px;
		margin-right: 6px;
	}
	
	.snc-phone-code-display {
		font-size: 13px;
		margin-right: 6px;
	}
	
	.snc-phone-separator {
		margin-right: 6px;
	}
	
	.snc-phone-number {
		font-size: 13px;
	}
	
	.snc-social-link-item {
		grid-template-columns: 1fr;
		gap: 8px;
		position: relative;
		padding: 40px 10px 10px 10px;
		background: #f9f9f9;
		border-radius: 6px;
	}
	
	.snc-remove-social-link {
		position: absolute;
		right: 10px;
		top: 10px;
	}
	
	.snc-file-upload-area {
		padding: 20px;
	}
	
	.snc-upload-icon {
		font-size: 24px;
	}
	
	.snc-file-item {
		flex-wrap: wrap;
		gap: 8px;
	}
	
	.snc-file-name {
		width: 100%;
	}
	
	/* Archive Page Responsive */
	.snc-archive-header {
		padding: 30px 15px 25px;
	}
	
	.snc-archive-title {
		font-size: 28px;
	}
	
	.snc-archive-description {
		font-size: 14px;
		margin-bottom: 20px;
	}
	
	.snc-archive-header .snc-archive-search-bar {
		max-width: 100%;
	}
	
	.snc-archive-content-wrapper {
		padding: 20px 15px;
	}
	
	.snc-archive-content-wrapper .snc-services-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.snc-archive-sidebar {
		order: 2;
		margin-top: 30px;
	}
	
	.snc-archive-main-content {
		order: 1;
	}
	
	.snc-sidebar-section {
		padding: 15px;
	}
	
	.snc-archive-search-bar .snc-search-container {
		flex-direction: column;
		gap: 10px;
	}
	
	.snc-archive-search-bar .snc-search-button {
		width: 100%;
		justify-content: center;
		padding: 12px 20px;
	}
}


