/**
 * Vibe Niche Engine - Modern Responsive Production Stylesheet
 *
 * @package VibeNicheEngine
 * @version 1.0.0
 */

/* ==========================================================================
   1. CSS VARIABLES & SYSTEM THEMING
   ========================================================================== */
:root {
	/* Brand Colors (Overridden dynamically via WordPress Customizer) */
	--primary-color: #0f4c81;
	--primary-hover: #0a375f;
	--primary-light: #e0f2fe;
	--secondary-color: #f59e0b;
	--secondary-hover: #d97706;
	--accent-color: #10b981;
	--accent-hover: #059669;
	--dark-color: #0f172a;
	--dark-card: #1e293b;
	--light-color: #f8fafc;
	--white: #ffffff;

	/* Glassmorphism & Surface Design Tokens */
	--surface-glass: rgba(255, 255, 255, 0.85);
	--surface-glass-strong: rgba(255, 255, 255, 0.95);
	--surface-glass-dark: rgba(15, 23, 42, 0.82);
	--surface-glass-border: rgba(255, 255, 255, 0.35);
	--backdrop-blur: blur(16px);

	/* Neutral Text & Border Colors */
	--text-main: #1e293b;
	--text-muted: #64748b;
	--text-light: #94a3b8;
	--border-color: #e2e8f0;
	--border-light: #f1f5f9;
	--border-subtle: rgba(226, 232, 240, 0.85);
	--border-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
	--border-gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	--border-gradient-rose: linear-gradient(135deg, #fda4af, #f43f5e, #e11d48);
	--border-gradient-gold: linear-gradient(135deg, #fde68a, #f59e0b, #d97706);

	/* Multi-Tier Elevated Shadow System (4 Tiers + Glow) */
	--shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
	--shadow-sm: 0 2px 5px -1px rgba(15, 23, 42, 0.08), 0 1px 3px -1px rgba(15, 23, 42, 0.04);
	--shadow-md: 0 6px 16px -2px rgba(15, 23, 42, 0.09), 0 3px 6px -2px rgba(15, 23, 42, 0.05);
	--shadow-lg: 0 14px 28px -4px rgba(15, 23, 42, 0.12), 0 6px 12px -3px rgba(15, 23, 42, 0.06);
	--shadow-xl: 0 22px 42px -6px rgba(15, 23, 42, 0.15), 0 10px 20px -5px rgba(15, 23, 42, 0.07);
	--shadow-2xl: 0 30px 60px -12px rgba(15, 23, 42, 0.22);
	--shadow-glow: 0 0 24px rgba(15, 76, 129, 0.32);
	--shadow-glow-secondary: 0 0 24px rgba(245, 158, 11, 0.32);
	--shadow-glow-accent: 0 0 24px rgba(16, 185, 129, 0.35);
	--shadow-glow-rose: 0 0 24px rgba(225, 29, 72, 0.35);

	/* Border Radius */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-xl: 24px;
	--radius-2xl: 32px;
	--radius-full: 9999px;

	/* Transitions */
	--transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

	/* Layout Dimensions */
	--container-width: 1240px;
	--header-height: 80px;
}

/* ==========================================================================
   2. RESET & BASE ELEMENTS
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: var(--text-main);
	background-color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

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

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

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

ul, ol {
	list-style: none;
}

button, input, select, textarea {
	font: inherit;
	color: inherit;
}

button {
	cursor: pointer;
	border: none;
	background: none;
}

.vne-container {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* ==========================================================================
   KEYBOARD ACCESSIBILITY: SCREEN READER TEXT & SKIP LINK
   ========================================================================== */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.vne-skip-link:focus {
	background-color: var(--primary-color, #0f4c81);
	border-radius: 6px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
	clip: auto !important;
	clip-path: none;
	color: #ffffff;
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 15px;
	line-height: normal;
	padding: 12px 22px;
	position: fixed !important;
	top: 15px;
	text-decoration: none;
	width: auto;
	z-index: 100000;
	outline: 3px solid var(--secondary-color, #f59e0b);
	outline-offset: 2px;
}

/* ==========================================================================
   KEYBOARD ACCESSIBILITY: :focus-visible FOCUS RINGS
   ========================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--primary-color, #0f4c81);
	outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.22);
}

.vne-btn:focus-visible,
.vne-btn-primary:focus-visible,
.vne-btn-secondary:focus-visible,
.vne-btn-accent:focus-visible,
.vne-btn-submit-lead:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
	box-shadow: 0 0 0 5px var(--primary-color, #0f4c81);
}

.vne-niche-tab-btn:focus-visible,
.vne-menu-tab-btn:focus-visible {
	outline: 2px solid var(--primary-color, #0f4c81);
	outline-offset: 2px;
}

/* ==========================================================================
   3. TOPBAR & NAVIGATION
   ========================================================================== */
.vne-topbar {
	background-color: var(--dark-color);
	color: #cbd5e1;
	font-size: 13px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vne-topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.vne-topbar-contact,
.vne-topbar-social {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.vne-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #cbd5e1;
}

.vne-topbar-item a {
	color: #f1f5f9;
	font-weight: 500;
}

.vne-topbar-item a:hover {
	color: var(--secondary-color);
}

.vne-topbar-email {
	display: none;
}

@media (min-width: 768px) {
	.vne-topbar-email {
		display: inline-flex;
	}
}

/* Main Header */
.vne-site-header {
	background-color: var(--white);
	height: var(--header-height);
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	z-index: 100;
	transition: all var(--transition-normal);
}

.vne-site-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 70px;
	box-shadow: var(--shadow-md);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	animation: vneSlideDown 0.3s ease-out;
}

@keyframes vneSlideDown {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

.vne-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

/* Brand Logo */
.vne-brand-logo a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--primary-color);
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.02em;
}

.vne-brand-logo img {
	max-height: 52px;
	width: auto;
}

/* Desktop Navigation */
.vne-desktop-nav {
	display: none;
}

@media (min-width: 992px) {
	.vne-desktop-nav {
		display: flex;
		align-items: center;
	}
}

.vne-nav-list {
	display: flex;
	align-items: center;
	gap: 28px;
}

.vne-nav-list li {
	position: relative;
}

.vne-nav-list a {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-main);
	padding: 10px 0;
	display: inline-block;
	position: relative;
}

.vne-nav-list a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width var(--transition-fast);
}

.vne-nav-list a:hover::after,
.vne-nav-list .current-menu-item > a::after {
	width: 100%;
}

.vne-nav-list a:hover,
.vne-nav-list .current-menu-item > a {
	color: var(--primary-color);
}

/* Header Action CTA */
.vne-header-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.vne-btn-header-cta {
	display: none;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	padding: 10px 22px;
	border-radius: var(--radius-full);
	box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
	transition: all var(--transition-normal);
}

.vne-btn-header-cta:hover {
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(15, 76, 129, 0.35);
}

@media (min-width: 768px) {
	.vne-btn-header-cta {
		display: inline-flex;
	}
}

/* Mobile Hamburger Button */
.vne-mobile-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	min-height: 48px;
	border-radius: var(--radius-sm);
	color: var(--dark-color);
	background-color: var(--border-light);
	border: 1px solid var(--border-color);
}

@media (min-width: 992px) {
	.vne-mobile-toggle {
		display: none;
	}
}

/* Mobile Off-canvas Drawer */
.vne-mobile-drawer {
	position: fixed;
	top: 0;
	right: -320px;
	width: 320px;
	height: 100%;
	background-color: var(--white);
	z-index: 1001;
	box-shadow: var(--shadow-xl);
	display: flex;
	flex-direction: column;
	transition: right var(--transition-normal);
	overflow-y: auto;
}

.vne-mobile-drawer.is-active {
	right: 0;
}

.vne-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(4px);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-normal);
}

.vne-drawer-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.vne-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
}

.vne-drawer-close {
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	border-radius: 50%;
	background-color: var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-color);
	transition: background var(--transition-fast), color var(--transition-fast);
}

.vne-drawer-body {
	padding: 20px;
	flex: 1;
}

.vne-drawer-nav ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vne-drawer-nav a {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-main);
	padding: 10px 12px;
	border-radius: var(--radius-sm);
}

.vne-drawer-nav a:hover,
.vne-drawer-nav .current-menu-item > a {
	background-color: var(--primary-light);
	color: var(--primary-color);
}

.vne-drawer-footer {
	padding: 20px;
	background-color: var(--light-color);
	border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   4. BUTTONS & UI UTILITIES
   ========================================================================== */
.vne-btn {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.02em;
	padding: 13px 28px;
	min-height: 48px;
	border-radius: var(--radius-md);
	transition: all var(--transition-normal);
	text-align: center;
	touch-action: manipulation;
	z-index: 1;
	border: 1px solid transparent;
}

/* Subtle Shimmer / Shine wave transition on hover */
.vne-btn::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -120%;
	width: 60%;
	height: 200%;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.28) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: rotate(25deg);
	transition: left 0.75s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	z-index: 2;
}

.vne-btn:hover::after {
	left: 140%;
}

.vne-btn-primary {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
	color: var(--white);
	box-shadow: 0 4px 14px rgba(15, 76, 129, 0.25);
	border-color: rgba(255, 255, 255, 0.15);
}

.vne-btn-primary:hover {
	background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow), 0 8px 22px rgba(15, 76, 129, 0.35);
}

.vne-btn-secondary {
	background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
	color: var(--white);
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.28);
	border-color: rgba(255, 255, 255, 0.2);
}

.vne-btn-secondary:hover {
	background: linear-gradient(135deg, var(--secondary-hover) 0%, var(--secondary-color) 100%);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow-secondary), 0 8px 22px rgba(245, 158, 11, 0.38);
}

.vne-btn-accent {
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
	color: var(--white);
	box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
	border-color: rgba(255, 255, 255, 0.2);
}

.vne-btn-accent:hover {
	background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: var(--shadow-glow-accent), 0 8px 22px rgba(16, 185, 129, 0.38);
}

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

.vne-btn-outline:hover {
	background-color: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.vne-btn-block {
	width: 100%;
}

/* ==========================================================================
   Click Affordance (:active) & Accessibility (:focus-visible) - WCAG AA
   ========================================================================== */
.vne-btn:active,
.vne-sticky-btn:active,
.vne-niche-tab-btn:active,
.vne-menu-tab-btn:active,
.vne-tab-btn:active,
.vne-btn-submit-lead:active,
.vne-quick-tag:active,
.vne-time-chip:active,
.vne-time-slot:active,
button[type="submit"]:active {
	transform: scale(0.98) !important;
	transition: transform 0.08s ease-out !important;
}

.vne-btn:focus-visible,
.vne-sticky-btn:focus-visible,
.vne-niche-tab-btn:focus-visible,
.vne-menu-tab-btn:focus-visible,
.vne-tab-btn:focus-visible,
.vne-btn-submit-lead:focus-visible,
.vne-quick-tag:focus-visible,
.vne-form-input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
	outline: 2px solid var(--primary-color, #0f4c81) !important;
	outline-offset: 3px !important;
	box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.25) !important;
}

/* Number Ticker Animation & Live Calculator Utility */
.vne-ticker-number {
	display: inline-block;
	font-variant-numeric: tabular-nums;
	transition: color 0.25s ease;
	will-change: transform;
}

.vne-ticker-updating {
	color: var(--secondary-color, #f59e0b) !important;
	transform: scale(1.02);
}

.vne-calculator-sync-indicator {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #059669;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	padding: 6px 12px;
	border-radius: var(--radius-sm);
	margin-top: 8px;
	animation: vneFadeIn 0.3s ease-out;
}

/* Glassmorphism Surface Utility */
.vne-glass-card,
.vne-surface-glass {
	background: var(--surface-glass);
	backdrop-filter: var(--backdrop-blur);
	-webkit-backdrop-filter: var(--backdrop-blur);
	border: 1px solid var(--surface-glass-border);
	box-shadow: var(--shadow-md);
}

/* Badges & Trust Pills with Glowing Indicator */
.vne-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 5px 14px;
	border-radius: var(--radius-full);
	line-height: 1.4;
	box-shadow: var(--shadow-xs);
	border: 1px solid transparent;
}

.vne-badge-primary {
	background-color: var(--primary-light);
	color: var(--primary-color);
	border-color: rgba(15, 76, 129, 0.12);
}

.vne-badge-secondary {
	background-color: #fef3c7;
	color: #92400e;
	border-color: rgba(245, 158, 11, 0.2);
}

.vne-badge-accent {
	background-color: #d1fae5;
	color: #065f46;
	border-color: rgba(16, 185, 129, 0.2);
}

/* Trust Pill Component */
.vne-trust-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: var(--radius-full);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	background: var(--surface-glass);
	backdrop-filter: var(--backdrop-blur);
	-webkit-backdrop-filter: var(--backdrop-blur);
	border: 1px solid var(--border-subtle);
	box-shadow: var(--shadow-xs);
	color: var(--text-main);
	transition: all var(--transition-fast);
}

.vne-trust-pill:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	border-color: var(--primary-color);
}

/* Glowing dot indicator for badges and pills */
.vne-trust-pill::before,
.vne-badge-live::before,
.vne-pulse-dot {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	min-width: 8px;
	border-radius: 50%;
	background-color: #10b981;
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	animation: vneGlowPulse 2s infinite ease-in-out;
}

@keyframes vneGlowPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.75);
		transform: scale(0.95);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
		transform: scale(1.1);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
		transform: scale(0.95);
	}
}

@keyframes vneGlowPulseRed {
	0% {
		box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.8);
		transform: scale(0.95);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
		transform: scale(1.1);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
		transform: scale(0.95);
	}
}

@keyframes vneGlowPulseGold {
	0% {
		box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.8);
		transform: scale(0.95);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
		transform: scale(1.1);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
		transform: scale(0.95);
	}
}

@keyframes vneGlowPulseRose {
	0% {
		box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.8);
		transform: scale(0.95);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(225, 29, 72, 0);
		transform: scale(1.1);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
		transform: scale(0.95);
	}
}

.vne-section {
	padding: 80px 0;
}

@media (max-width: 768px) {
	.vne-section {
		padding: 50px 0;
	}
}

.vne-section-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 50px;
}

.vne-section-title {
	font-size: 32px;
	font-weight: 800;
	color: var(--dark-color);
	margin-top: 10px;
	margin-bottom: 15px;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

@media (min-width: 768px) {
	.vne-section-title {
		font-size: 40px;
	}
}

.vne-section-subtitle {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ==========================================================================
   5. HERO SECTION & QUICK SEARCH/FILTER
   ========================================================================== */
.vne-hero-section {
	position: relative;
	background: linear-gradient(135deg, #092c4c 0%, #0f4c81 50%, #1e293b 100%);
	color: var(--white);
	padding: 90px 0 120px;
	overflow: hidden;
}

.vne-hero-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.18;
	pointer-events: none;
}

.vne-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.vne-hero-badge {
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: var(--backdrop-blur);
	-webkit-backdrop-filter: var(--backdrop-blur);
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #ffffff;
	padding: 7px 20px;
	border-radius: var(--radius-full);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transition: all var(--transition-fast);
}

.vne-hero-badge:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-2px);
}

/* Glowing dot indicator inside Hero Badge */
.vne-hero-badge::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	min-width: 8px;
	border-radius: 50%;
	background-color: #10b981;
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	animation: vneGlowPulse 2s infinite ease-in-out;
}

.vne-hero-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	letter-spacing: -0.03em;
	color: var(--white);
}

@media (min-width: 768px) {
	.vne-hero-title {
		font-size: 52px;
	}
}

.vne-hero-subtitle {
	font-size: 17px;
	color: #e2e8f0;
	line-height: 1.7;
	margin-bottom: 40px;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

/* Quick Search / Filter Bar */
.vne-search-box-wrapper {
	position: relative;
	z-index: 10;
	margin-top: -60px;
	margin-bottom: 40px;
}

.vne-search-box {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	padding: 24px;
	border: 1px solid var(--border-color);
}

.vne-search-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 768px) {
	.vne-search-form {
		grid-template-columns: 1.2fr 1fr 1fr auto;
		align-items: end;
	}
}

.vne-filter-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: left;
}

.vne-filter-group label {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-main);
	display: flex;
	align-items: center;
	gap: 6px;
}

.vne-filter-group select,
.vne-filter-group input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	background-color: var(--light-color);
	font-size: 14px;
	color: var(--text-main);
	outline: none;
	transition: border-color var(--transition-fast);
}

.vne-filter-group select:focus,
.vne-filter-group input:focus {
	border-color: var(--primary-color);
	background-color: var(--white);
}

.vne-btn-filter-submit {
	padding: 12px 28px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 700;
	border-radius: var(--radius-sm);
	background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
	color: var(--white);
	transition: all var(--transition-normal);
}

.vne-btn-filter-submit:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* ==========================================================================
   6. PROJECTS GRID & REAL ESTATE CARDS
   ========================================================================== */
.vne-projects-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 640px) {
	.vne-projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.vne-projects-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.vne-project-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
	display: flex;
	flex-direction: column;
}

.vne-project-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
	border-color: rgba(15, 76, 129, 0.28);
}

.vne-card-media {
	position: relative;
	width: 100%;
	padding-top: 62%;
	overflow: hidden;
	background-color: var(--border-color);
}

.vne-card-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.vne-project-card:hover .vne-card-media img {
	transform: scale(1.06);
}

.vne-card-badge-status {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	background: rgba(15, 23, 42, 0.82);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--white);
	font-size: 11.5px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.vne-card-badge-status.is-hot {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
}

.vne-card-badge-status.is-hot::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #fef08a;
	animation: vneGlowPulseGold 1.5s infinite ease-in-out;
}

.vne-card-price-tag {
	position: absolute;
	bottom: 14px;
	right: 14px;
	z-index: 2;
	background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
	color: var(--dark-color);
	font-weight: 800;
	font-size: 14px;
	padding: 5px 12px;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
}

.vne-card-body {
	padding: 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vne-card-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
}

.vne-card-title a {
	color: var(--dark-color);
}

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

.vne-card-address {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 16px;
}

.vne-card-address svg {
	flex-shrink: 0;
	color: var(--primary-color);
	margin-top: 2px;
}

.vne-card-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 12px 0;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
	margin-bottom: 18px;
	font-size: 13px;
}

.vne-spec-item {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--text-muted);
}

.vne-spec-item svg {
	color: var(--primary-color);
}

.vne-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
}

.vne-btn-view-detail {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-color);
}

.vne-btn-card-quote {
	font-size: 12px;
	font-weight: 700;
	padding: 8px 14px;
	background-color: var(--primary-light);
	color: var(--primary-color);
	border-radius: var(--radius-sm);
	transition: all var(--transition-fast);
}

.vne-btn-card-quote:hover {
	background-color: var(--primary-color);
	color: var(--white);
}

/* ==========================================================================
   7. WHY CHOOSE US & PROCESS ROADMAP
   ========================================================================== */
.vne-features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

@media (min-width: 640px) {
	.vne-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.vne-features-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.vne-feature-card {
	background: var(--white);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
	box-shadow: var(--shadow-sm);
}

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

.vne-feature-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--primary-light), #bae6fd);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: var(--shadow-xs);
	transition: transform var(--transition-fast);
}

.vne-feature-card:hover .vne-feature-icon {
	transform: scale(1.08);
}

.vne-feature-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 10px;
}

.vne-feature-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Process Roadmap */
.vne-process-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	position: relative;
}

@media (min-width: 768px) {
	.vne-process-steps {
		grid-template-columns: repeat(4, 1fr);
	}
}

.vne-step-card {
	background: var(--white);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 30px 20px;
	position: relative;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

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

.vne-step-number {
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
	color: #cbd5e1;
	margin-bottom: 12px;
	transition: color var(--transition-fast);
}

.vne-step-card:hover .vne-step-number {
	color: var(--secondary-color);
}

.vne-step-title {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--dark-color);
}

.vne-step-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ==========================================================================
   8. TESTIMONIALS SECTION
   ========================================================================== */
.vne-testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 768px) {
	.vne-testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.vne-testimonial-card {
	background: var(--white);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.vne-testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(15, 76, 129, 0.25);
}

.vne-stars-row {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
}

.vne-testimonial-text {
	font-size: 15px;
	color: #475569;
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 24px;
}

.vne-user-meta {
	display: flex;
	align-items: center;
	gap: 14px;
}

.vne-user-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--primary-light);
}

.vne-user-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--dark-color);
}

.vne-user-role {
	font-size: 12px;
	color: var(--text-muted);
}

/* ==========================================================================
   9. HIGH-CONVERTING CTA LEAD CAPTURE SECTION
   ========================================================================== */
.vne-lead-section {
	background: linear-gradient(135deg, var(--dark-color) 0%, #1e293b 100%);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.vne-lead-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
	align-items: center;
}

@media (min-width: 992px) {
	.vne-lead-layout {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.vne-lead-info .vne-badge {
	margin-bottom: 16px;
}

.vne-lead-title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--white);
	margin-bottom: 16px;
}

@media (min-width: 768px) {
	.vne-lead-title {
		font-size: 42px;
	}
}

.vne-lead-subtitle {
	font-size: 16px;
	color: #cbd5e1;
	line-height: 1.7;
	margin-bottom: 30px;
}

.vne-lead-bullets {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.vne-bullet-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: #f1f5f9;
}

.vne-bullet-item svg {
	color: var(--accent-color);
	flex-shrink: 0;
}

/* Lead Form Box */
.vne-lead-form-box {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 34px;
	box-shadow: var(--shadow-xl);
	color: var(--text-main);
}

.vne-lead-form-header {
	text-align: center;
	margin-bottom: 24px;
}

.vne-lead-form-header h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--dark-color);
	margin-bottom: 6px;
}

.vne-lead-form-header p {
	font-size: 13px;
	color: var(--text-muted);
}

.vne-form-field {
	margin-bottom: 16px;
}

.vne-form-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-main);
	margin-bottom: 6px;
}

.vne-form-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	font-size: 14px;
	color: var(--text-main);
	background-color: var(--white);
	outline: none;
	transition: all var(--transition-fast);
}

.vne-form-input:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.15);
}

.vne-btn-submit-lead {
	width: 100%;
	padding: 14px;
	font-size: 15px;
	font-weight: 700;
	border-radius: var(--radius-sm);
	background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
	color: var(--dark-color);
	transition: all var(--transition-normal);
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.vne-btn-submit-lead:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}

.vne-btn-submit-lead:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* ==========================================================================
   10. MOBILE STICKY QUICK CONTACT BAR (HIGH CONVERSION VN)
   ========================================================================== */
.vne-mobile-sticky-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
	border-top: 1px solid var(--border-color);
	padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
	.vne-mobile-sticky-bar {
		display: grid;
		grid-template-columns: 1fr 1fr 1.3fr;
		gap: 8px;
		align-items: center;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	body.vne-modal-open .vne-mobile-sticky-bar {
		transform: translateY(100%);
		opacity: 0;
		pointer-events: none;
	}

	body {
		padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); /* Prevent sticky bar from overlapping content */
	}

	.vne-back-to-top {
		bottom: calc(85px + env(safe-area-inset-bottom, 0px)); /* Ensure back to top doesn't get covered by sticky bar */
	}
}

.vne-sticky-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px 4px;
	min-height: 48px; /* WCAG touch target 48px+ */
	border-radius: var(--radius-sm);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.2s ease;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
}

.vne-sticky-btn:active {
	transform: scale(0.92);
}

/* Call Button with Gentle Eye-Friendly Breathing Glow */
.vne-sticky-call {
	background: linear-gradient(135deg, #10b981, #059669);
	color: var(--white) !important;
	position: relative;
	box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
	animation: vneGentleBreathing 3s ease-in-out infinite;
	will-change: transform, box-shadow;
}

@keyframes vneGentleBreathing {
	0%, 100% {
		transform: translateY(0) scale(1);
		box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
	}
	50% {
		transform: translateY(-1.5px) scale(1.02);
		box-shadow: 0 6px 18px rgba(16, 185, 129, 0.5), 0 0 0 4px rgba(16, 185, 129, 0.15);
	}
}

/* Zalo Button */
.vne-sticky-zalo {
	background: #0068ff;
	color: var(--white) !important;
	box-shadow: 0 2px 8px rgba(0, 104, 255, 0.35);
}

/* Register CTA Button */
.vne-sticky-quote {
	background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
	color: var(--dark-color) !important;
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

/* ==========================================================================
   11. MODAL POP-UP SYSTEM
   ========================================================================== */
.vne-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-normal);
}

.vne-modal.is-active {
	opacity: 1;
	visibility: visible;
}

.vne-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(6px);
}

.vne-modal-container {
	position: relative;
	z-index: 2;
	background: var(--white);
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 500px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-xl);
	transform: scale(0.95);
	transition: transform var(--transition-normal);
	padding: 30px;
}

.vne-modal.is-active .vne-modal-container {
	transform: scale(1);
}

.vne-modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	border-radius: 50%;
	background: var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	transition: background var(--transition-fast), color var(--transition-fast);
}

.vne-modal-close:hover {
	background: var(--border-color);
	color: var(--dark-color);
}

/* Toast Notification - Floating Top Center Banner */
.vne-toast {
	position: fixed;
	top: 24px;
	left: 50%;
	transform: translate(-50%, -35px);
	z-index: 9999;
	background: #ffffff;
	border-radius: 12px;
	padding: 14px 20px;
	box-shadow: 0 12px 35px -4px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 90vw;
	width: auto;
	min-width: 320px;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
	border-left: 5px solid #10b981;
	cursor: pointer;
}

.vne-toast.is-show,
.vne-toast.is-visible {
	transform: translate(-50%, 0);
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.vne-toast.is-error {
	border-left-color: #ef4444;
}

.vne-toast-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(16, 185, 129, 0.12);
	color: #10b981;
	flex-shrink: 0;
}

.vne-toast.is-error .vne-toast-icon {
	background: rgba(239, 68, 68, 0.12);
	color: #ef4444;
}

.vne-toast-message {
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.45;
}

/* Form Shake Animation for Missing / Invalid Fields */
@keyframes vneFormShake {
	0%, 100% { transform: translateX(0); }
	15%, 45%, 75% { transform: translateX(-8px); }
	30%, 60%, 90% { transform: translateX(8px); }
}

.vne-form-shake {
	animation: vneFormShake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Invalid Input Highlighting with Smooth Transition */
.vne-form-input.is-invalid,
.vne-calc-input.is-invalid,
.vne-calc-select.is-invalid,
input.is-invalid,
select.is-invalid,
textarea.is-invalid {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Button Loading Spinner State */
.vne-btn.is-loading,
.vne-btn-submit-lead.is-loading,
button[type="submit"].is-loading {
	pointer-events: none !important;
	cursor: not-allowed !important;
	opacity: 0.88;
}

@keyframes vneSpin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.vne-spinner {
	animation: vneSpin 0.85s linear infinite;
	vertical-align: middle;
	margin-right: 8px;
	display: inline-block;
}

/* ==========================================================================
   12. SINGLE POST, ARCHIVES & FOOTER
   ========================================================================== */
.vne-site-footer {
	background-color: var(--dark-color);
	color: #94a3b8;
	padding: 70px 0 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vne-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-bottom: 50px;
}

@media (min-width: 640px) {
	.vne-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.vne-footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	}
}

.vne-footer-widget-title {
	color: var(--white);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.vne-footer-widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 36px;
	height: 2px;
	background-color: var(--secondary-color);
}

.vne-footer-links li {
	margin-bottom: 10px;
}

.vne-footer-links a {
	color: #94a3b8;
	font-size: 14px;
}

.vne-footer-links a:hover {
	color: var(--secondary-color);
	padding-left: 4px;
}

.vne-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 25px;
	text-align: center;
	font-size: 13px;
	color: #64748b;
}

/* Back to top */
.vne-back-to-top {
	position: fixed;
	bottom: 85px;
	right: 20px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-fast);
	box-shadow: var(--shadow-md);
}

.vne-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.vne-back-to-top:hover {
	background-color: var(--primary-hover);
	color: var(--white);
	transform: translateY(-3px);
}

/* Single Project Details */
.vne-single-project-hero {
	background-color: var(--light-color);
	padding: 40px 0;
	border-bottom: 1px solid var(--border-color);
}

.vne-single-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 40px;
}

@media (min-width: 992px) {
	.vne-single-layout {
		grid-template-columns: 2fr 1fr;
	}
}

.vne-specs-table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	background: var(--white);
	border-radius: var(--radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-xs);
}

.vne-specs-table td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-light);
	font-size: 14px;
}

.vne-specs-table td:first-child {
	font-weight: 600;
	color: var(--text-muted);
	width: 40%;
	background-color: var(--light-color);
}

/* ==========================================================================
   13. MULTI-NICHE INTERACTIVE COMPONENTS & SPECIALIZED UI
   ========================================================================== */

/* --------------------------------------------------------------------------
   A. RESTAURANT & FINE DINING BISTRO MENU
   -------------------------------------------------------------------------- */
.vne-menu-section {
	padding: 80px 0;
	background-color: #fafaf9;
}

/* Menu Category Tabs */
.vne-menu-tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 45px;
}

.vne-menu-tab-btn,
.vne-tab-btn {
	padding: 10px 24px;
	border-radius: var(--radius-full);
	background: var(--white);
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-fast);
	box-shadow: var(--shadow-xs);
}

.vne-menu-tab-btn:hover,
.vne-tab-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	transform: translateY(-1px);
}

.vne-menu-tab-btn.is-active,
.vne-tab-btn.is-active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white);
	box-shadow: 0 4px 12px rgba(185, 28, 28, 0.25);
}

/* Menu Grid */
.vne-menu-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

@media (min-width: 992px) {
	.vne-menu-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 40px;
	}
}

/* Menu Item Card */
.vne-menu-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 18px 20px;
	background: var(--white);
	border-radius: var(--radius-md);
	border: 1px solid #f1f5f9;
	box-shadow: var(--shadow-xs);
	transition: all var(--transition-normal);
}

.vne-menu-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
	border-color: rgba(185, 28, 28, 0.2);
}

.vne-menu-thumb {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	position: relative;
}

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

.vne-menu-item:hover .vne-menu-thumb img {
	transform: scale(1.08);
}

.vne-menu-info {
	flex: 1;
	min-width: 0;
}

.vne-menu-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 6px;
	gap: 8px;
}

.vne-menu-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark-color);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Elegant Dotted Leader line linking Dish Name to Price */
.vne-menu-dots {
	flex: 1;
	border-bottom: 2px dotted #cbd5e1;
	height: 1px;
	margin: 0 4px;
	min-width: 20px;
}

.vne-menu-price {
	font-size: 16px;
	font-weight: 800;
	color: #b91c1c;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.vne-menu-desc {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.5;
	margin-bottom: 8px;
}

.vne-menu-badges {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.vne-menu-badge-chef {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	background: #fef3c7;
	color: #92400e;
	border: 1px solid #fde68a;
}

.vne-menu-badge-popular {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

/* --------------------------------------------------------------------------
   B. SPA PRICING & INTERACTIVE BEFORE / AFTER SLIDER
   -------------------------------------------------------------------------- */
.vne-spa-pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-bottom: 50px;
}

@media (min-width: 768px) {
	.vne-spa-pricing-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.vne-spa-pricing-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 35px 25px;
	text-align: center;
	border: 1px solid #fce7f3;
	box-shadow: 0 4px 20px rgba(190, 24, 93, 0.05);
	position: relative;
	transition: all var(--transition-normal);
}

.vne-spa-pricing-card.is-featured {
	border: 2px solid #be185d;
	box-shadow: 0 10px 30px rgba(190, 24, 93, 0.12);
	transform: scale(1.03);
}

.vne-spa-pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(190, 24, 93, 0.12);
}

.vne-spa-pricing-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #be185d, #f43f5e);
	color: var(--white);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: var(--radius-full);
	letter-spacing: 0.5px;
}

.vne-spa-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #1e1b4b;
	margin-bottom: 12px;
}

.vne-spa-card-price {
	font-size: 32px;
	font-weight: 800;
	color: #be185d;
	margin-bottom: 20px;
}

.vne-spa-card-price small {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-muted);
}

.vne-spa-features-list {
	text-align: left;
	margin: 25px 0;
	border-top: 1px dashed #fce7f3;
	padding-top: 20px;
}

.vne-spa-features-list li {
	font-size: 14px;
	color: #475569;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Before / After Interactive Comparison Slider */
.vne-ba-container {
	max-width: 800px;
	margin: 40px auto;
}

.vne-before-after,
.vne-ba-slider {
	position: relative;
	width: 100%;
	height: 420px;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	user-select: none;
	-webkit-user-select: none;
	touch-action: pan-y;
	cursor: ew-resize;
	background: #0f172a;
}

@media (max-width: 640px) {
	.vne-before-after,
	.vne-ba-slider {
		height: 280px;
	}
}

.vne-ba-after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.vne-ba-after img,
.vne-ba-before img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.vne-ba-before {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
	z-index: 2;
}

.vne-ba-before img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: none;
	height: 100%;
}

/* Slider Drag Handle */
.vne-ba-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background: var(--white);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	z-index: 3;
	pointer-events: none;
	transform: translateX(-50%);
}

.vne-ba-knob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--white);
	color: #0f172a;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -1px;
}

.vne-ba-label-before,
.vne-ba-label-after {
	position: absolute;
	bottom: 16px;
	padding: 4px 12px;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(4px);
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: var(--radius-full);
	letter-spacing: 0.5px;
	z-index: 4;
	pointer-events: none;
}

.vne-ba-label-before {
	left: 16px;
}

.vne-ba-label-after {
	right: 16px;
}

/* --------------------------------------------------------------------------
   C. DOCTOR & CLINIC CARDS (NHA KHOA & Y TẾ)
   -------------------------------------------------------------------------- */
.vne-doctors-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 640px) {
	.vne-doctors-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.vne-doctors-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.vne-doctor-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 30px 20px;
	text-align: center;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-normal);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.vne-doctor-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: #0284c7;
}

.vne-doctor-avatar-wrap {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	padding: 4px;
	background: linear-gradient(135deg, #0284c7, #06b6d4);
	margin-bottom: 18px;
	box-shadow: 0 6px 18px rgba(2, 132, 199, 0.2);
}

.vne-doctor-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	background: #f1f5f9;
}

.vne-doctor-degree {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
	background: #e0f2fe;
	color: #0369a1;
	margin-bottom: 8px;
}

.vne-doctor-name {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 4px;
}

.vne-doctor-specialty {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.vne-doctor-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 16px;
	font-size: 13px;
	font-weight: 600;
	color: #475569;
}

.vne-doctor-stars {
	color: #f59e0b;
	display: inline-flex;
}

.vne-doctor-cta {
	width: 100%;
	padding: 10px 16px;
	background: #0284c7;
	color: var(--white);
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	transition: background var(--transition-fast);
	margin-top: auto;
}

.vne-doctor-cta:hover {
	background: #0369a1;
	color: var(--white);
}

/* --------------------------------------------------------------------------
   D. HOTEL & RESORT ROOM CARDS
   -------------------------------------------------------------------------- */
.vne-hotel-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 768px) {
	.vne-hotel-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.vne-hotel-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.vne-hotel-room-card {
	background: var(--white);
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-normal);
	display: flex;
	flex-direction: column;
}

.vne-hotel-room-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.vne-hotel-thumb-wrap {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.vne-hotel-thumb-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-normal);
}

.vne-hotel-room-card:hover .vne-hotel-thumb-wrap img {
	transform: scale(1.06);
}

.vne-hotel-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(4px);
	color: var(--white);
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.vne-hotel-content {
	padding: 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vne-hotel-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 8px;
}

.vne-hotel-specs {
	display: flex;
	gap: 15px;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 16px;
}

.vne-hotel-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.vne-hotel-amenity-tag {
	font-size: 12px;
	padding: 3px 8px;
	background: #f1f5f9;
	border-radius: 4px;
	color: #475569;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.vne-hotel-price-bar {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.vne-hotel-price {
	font-size: 20px;
	font-weight: 800;
	color: #4338ca;
}

.vne-hotel-price small {
	font-size: 12px;
	font-weight: 500;
	color: var(--text-muted);
}

.vne-hotel-book-btn {
	padding: 8px 18px;
	background: #4338ca;
	color: var(--white);
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 600;
	transition: background var(--transition-fast);
}

.vne-hotel-book-btn:hover {
	background: #3730a3;
	color: var(--white);
}

/* --------------------------------------------------------------------------
   E. INTERACTIVE CONSTRUCTION COST CALCULATOR
   -------------------------------------------------------------------------- */
.vne-calc-section {
	padding: 70px 0;
	background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
}

.vne-calc-box {
	background: var(--white);
	border-radius: var(--radius-xl);
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid #e4e4e7;
}

@media (max-width: 640px) {
	.vne-calc-box {
		padding: 24px 16px;
	}
}

.vne-calc-header {
	text-align: center;
	margin-bottom: 35px;
}

.vne-calc-title {
	font-size: 26px;
	font-weight: 800;
	color: #18181b;
	margin-bottom: 8px;
}

.vne-calc-subtitle {
	font-size: 15px;
	color: var(--text-muted);
}

.vne-calc-body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 35px;
}

@media (min-width: 992px) {
	.vne-calc-body {
		grid-template-columns: 1.2fr 1fr;
		align-items: start;
	}
}

/* Range Slider Group */
.vne-calc-group {
	margin-bottom: 28px;
}

.vne-calc-label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.vne-calc-label {
	font-size: 15px;
	font-weight: 700;
	color: #27272a;
}

.vne-calc-val-pill {
	background: #ffedd5;
	color: #c2410c;
	font-size: 15px;
	font-weight: 800;
	padding: 4px 14px;
	border-radius: var(--radius-full);
	border: 1px solid #fed7aa;
}

/* Modern HTML5 Range Slider Styling */
.vne-calc-slider,
input[type="range"].vne-calc-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 8px;
	border-radius: 6px;
	background: #e4e4e7;
	outline: none;
	transition: background var(--transition-fast);
}

.vne-calc-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #ea580c;
	cursor: pointer;
	border: 3px solid #ffffff;
	box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
	transition: transform 0.1s ease;
}

.vne-calc-slider::-webkit-slider-thumb:hover {
	transform: scale(1.15);
}

.vne-calc-slider::-moz-range-thumb {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #ea580c;
	cursor: pointer;
	border: 3px solid #ffffff;
	box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
}

/* Package Radio Cards */
.vne-calc-package-selector {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-top: 20px;
}

.vne-calc-pkg-label {
	display: block;
	cursor: pointer;
}

.vne-calc-pkg-label input[type="radio"] {
	display: none;
}

.vne-calc-pkg-card {
	padding: 15px;
	border: 2px solid #e4e4e7;
	border-radius: var(--radius-md);
	text-align: center;
	transition: all var(--transition-fast);
	background: #fafafa;
}

.vne-calc-pkg-label input[type="radio"]:checked + .vne-calc-pkg-card {
	border-color: #ea580c;
	background: #fff7ed;
	box-shadow: 0 4px 14px rgba(234, 88, 12, 0.15);
}

.vne-calc-pkg-card strong {
	display: block;
	font-size: 15px;
	color: #18181b;
	margin-bottom: 4px;
}

.vne-calc-pkg-card span {
	font-size: 12px;
	color: var(--text-muted);
}

/* Calculator Result Panel */
.vne-calc-result-box {
	background: #18181b;
	border-radius: var(--radius-lg);
	padding: 30px;
	color: var(--white);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vne-calc-result-title {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #a1a1aa;
	margin-bottom: 6px;
}

.vne-calc-result-number {
	font-size: 34px;
	font-weight: 800;
	color: #f97316;
	margin-bottom: 20px;
	line-height: 1.1;
}

.vne-calc-breakdown {
	border-top: 1px solid #27272a;
	padding-top: 18px;
	margin-bottom: 25px;
}

.vne-calc-breakdown-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #d4d4d8;
	margin-bottom: 10px;
}

.vne-calc-breakdown-row strong {
	color: var(--white);
}

/* --------------------------------------------------------------------------
   F. EMERGENCY REPAIR SHAKE & PULSE ANIMATION
   -------------------------------------------------------------------------- */
.vne-emergency-box {
	background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
	border-radius: var(--radius-xl);
	padding: 40px 30px;
	color: var(--white);
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(185, 28, 28, 0.25);
}

.vne-btn-emergency {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 36px;
	background: #ef4444;
	color: var(--white);
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: var(--radius-full);
	box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
	position: relative;
	animation: vneEmergencyPulse 1.8s infinite, vneEmergencyShake 4s ease-in-out infinite;
	will-change: transform;
	transition: background var(--transition-fast);
}

.vne-btn-emergency:hover {
	background: #dc2626;
	color: var(--white);
}

/* Emergency Shake Animation */
@keyframes vneEmergencyShake {
	0%, 80%, 100% {
		transform: translateX(0) scale(1);
	}
	82%, 86%, 90% {
		transform: translateX(-4px) scale(1.02);
	}
	84%, 88%, 92% {
		transform: translateX(4px) scale(1.02);
	}
}

/* Emergency Radar Pulse Animation */
@keyframes vneEmergencyPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
	}
	70% {
		box-shadow: 0 0 0 18px rgba(239, 68, 68, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
	}
}

/* --------------------------------------------------------------------------
   G. FITNESS / GYM & YOGA TIMETABLE
   -------------------------------------------------------------------------- */
.vne-timetable-container {
	overflow-x: auto;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
	margin: 30px 0;
	-webkit-overflow-scrolling: touch;
}

.vne-timetable {
	width: 100%;
	min-width: 800px;
	border-collapse: collapse;
}

.vne-timetable th {
	background: #0f172a;
	color: var(--white);
	padding: 16px 12px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.vne-timetable td {
	padding: 14px 10px;
	border: 1px solid var(--border-light);
	vertical-align: top;
	height: 110px;
	background: #fafafa;
}

.vne-timetable-time-col {
	background: #f1f5f9 !important;
	font-weight: 700;
	color: #334155;
	font-size: 13px;
	text-align: center;
	width: 110px;
}

.vne-timetable-card {
	padding: 10px;
	border-radius: var(--radius-sm);
	font-size: 12px;
	margin-bottom: 6px;
	box-shadow: var(--shadow-xs);
	transition: transform var(--transition-fast);
}

.vne-timetable-card:hover {
	transform: scale(1.03);
}

.vne-timetable-card.is-yoga {
	background: #fce7f3;
	border-left: 3px solid #be185d;
	color: #831843;
}

.vne-timetable-card.is-boxing {
	background: #fee2e2;
	border-left: 3px solid #dc2626;
	color: #7f1d1d;
}

.vne-timetable-card.is-pilates {
	background: #e0e7ff;
	border-left: 3px solid #4338ca;
	color: #312e81;
}

.vne-timetable-card.is-hiit {
	background: #ffedd5;
	border-left: 3px solid #ea580c;
	color: #7c2d12;
}

.vne-timetable-class-name {
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 2px;
}

.vne-timetable-trainer {
	font-size: 11px;
	opacity: 0.85;
}

/* --------------------------------------------------------------------------
   H. MULTI-NICHE FORM UI & QUICK TIME CHIPS
   -------------------------------------------------------------------------- */
.vne-form-row-2col {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

@media (min-width: 640px) {
	.vne-form-row-2col {
		grid-template-columns: 1fr 1fr;
	}
}

.vne-time-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 6px;
}

.vne-time-chip,
.vne-time-slot {
	padding: 6px 14px;
	background: #f1f5f9;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	font-size: 12px;
	font-weight: 600;
	color: #334155;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.vne-time-chip:hover,
.vne-time-slot:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.vne-time-chip.is-active,
.vne-time-slot.is-active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white);
}

/* Invalid input shake feedback */
.vne-form-input.is-invalid {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
	animation: vneInputShake 0.3s ease-in-out;
}

@keyframes vneInputShake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-4px); }
	75% { transform: translateX(4px); }
}

/* Button Loading State */
.vne-btn.is-loading,
button[type="submit"].is-loading {
	opacity: 0.85;
	cursor: not-allowed;
	pointer-events: none;
}

/* ==========================================================================
   I. RESTAURANT & F&B SPECIALIZED COMPONENTS
   ========================================================================== */

/* Gold Badges & Buttons */
.vne-badge-gold {
	background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
	color: var(--white);
	font-weight: 700;
	font-size: 12px;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.vne-badge-gold-dark {
	background: #fef3c7;
	color: #92400e;
	font-weight: 700;
	font-size: 12px;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	border: 1px solid #fde68a;
}

.vne-btn-gold {
	background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
	color: var(--white);
	font-weight: 700;
	border-radius: var(--radius-full);
	padding: 14px 28px;
	box-shadow: 0 4px 15px rgba(217, 119, 6, 0.35);
	transition: all var(--transition-fast);
}

.vne-btn-gold:hover {
	background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
	color: var(--white);
}

.vne-btn-outline-light {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	font-weight: 700;
	border-radius: var(--radius-full);
	padding: 13px 26px;
	transition: all var(--transition-fast);
}

.vne-btn-outline-light:hover {
	background: var(--white);
	color: #0f172a;
	border-color: var(--white);
	transform: translateY(-2px);
}

/* Restaurant Hero */
.vne-restaurant-hero {
	background-color: #1c1917;
	color: var(--white);
	padding: 90px 0 65px;
	min-height: 560px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	position: relative;
}

.vne-restaurant-hero-inner {
	text-align: center;
	max-width: 880px;
	margin: 0 auto;
}

.vne-restaurant-hero-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.25;
	color: var(--white);
	margin: 20px 0 15px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.vne-restaurant-hero-subtitle {
	font-size: clamp(16px, 2vw, 19px);
	color: #e2e8f0;
	line-height: 1.7;
	margin-bottom: 30px;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.vne-hero-cta-group {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 35px;
}

.vne-restaurant-quick-strip {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.vne-quick-strip-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #cbd5e1;
	text-align: left;
	font-size: 13px;
}

.vne-quick-strip-item svg {
	color: #f59e0b;
	flex-shrink: 0;
}

.vne-quick-strip-item strong {
	display: block;
	color: var(--white);
	font-size: 13.5px;
}

.vne-quick-strip-item a {
	color: #f59e0b;
	font-weight: 700;
}

/* Menu Tabs Component */
.vne-menu-section {
	padding: 75px 0;
	background-color: var(--white);
}

.vne-menu-tabs-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 30px 0 45px;
}

.vne-menu-tab-btn {
	padding: 12px 24px;
	border-radius: var(--radius-full);
	background: #f8fafc;
	color: #334155;
	font-size: 15px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all var(--transition-fast);
	border: 1.5px solid var(--border-color);
	cursor: pointer;
}

.vne-menu-tab-btn:hover {
	background: #f1f5f9;
	color: #0f172a;
	border-color: #cbd5e1;
}

.vne-menu-tab-btn.is-active {
	background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
	color: var(--white);
	border-color: #b91c1c;
	box-shadow: 0 4px 14px rgba(185, 28, 28, 0.35);
}

.vne-menu-tabs-content {
	min-height: 400px;
}

.vne-menu-tab-pane {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vne-menu-tab-pane.is-active {
	display: block;
	opacity: 1;
	animation: vneFadeIn 0.35s ease forwards;
}

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

/* Food Card Grid */
.vne-food-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}

.vne-food-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: all var(--transition-normal);
}

.vne-food-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: rgba(185, 28, 28, 0.2);
}

.vne-food-thumb {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #0f172a;
}

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

.vne-food-card:hover .vne-food-thumb img {
	transform: scale(1.08);
}

.vne-food-badge-sig {
	position: absolute;
	top: 12px;
	left: 12px;
	background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
	color: var(--white);
	font-size: 11px;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-md);
	letter-spacing: 0.3px;
	z-index: 2;
}

.vne-food-badge-hot {
	position: absolute;
	top: 12px;
	left: 12px;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: var(--white);
	font-size: 11px;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-md);
	z-index: 2;
}

.vne-food-details {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.vne-food-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 8px;
}

.vne-food-name {
	font-size: 17px;
	font-weight: 700;
	color: #1c1917;
	line-height: 1.35;
	flex: 1;
}

.vne-food-price {
	font-size: 16px;
	font-weight: 800;
	color: #b91c1c;
	white-space: nowrap;
}

.vne-food-desc {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 16px;
	flex-grow: 1;
}

.vne-food-footer {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px dashed var(--border-light);
}

.vne-btn-order-dish {
	width: 100%;
	padding: 9px 14px;
	background: #fff1f2;
	color: #b91c1c;
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid #fecdd3;
	transition: all var(--transition-fast);
	cursor: pointer;
}

.vne-btn-order-dish:hover {
	background: #b91c1c;
	color: var(--white);
	border-color: #b91c1c;
}

.vne-menu-bottom-cta {
	text-align: center;
	margin-top: 45px;
	padding: 25px;
	background: #fffbeb;
	border-radius: var(--radius-md);
	border: 1px dashed #fcd34d;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.vne-menu-bottom-cta p {
	font-size: 15px;
	font-weight: 600;
	color: #92400e;
}

/* Spaces & Ambience Grid */
.vne-spaces-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 26px;
}

.vne-space-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--white);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: all var(--transition-normal);
}

.vne-space-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
}

.vne-space-media {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
}

.vne-space-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.vne-space-card:hover .vne-space-media img {
	transform: scale(1.06);
}

.vne-space-tag {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(0, 0, 0, 0.75);
	color: #fef08a;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	backdrop-filter: blur(4px);
}

.vne-space-body {
	padding: 22px;
}

.vne-space-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #1e293b;
}

.vne-space-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Reservation Booking Section */
.vne-booking-section {
	background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
	color: var(--white);
	padding: 80px 0;
}

.vne-booking-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

@media (min-width: 992px) {
	.vne-booking-layout {
		grid-template-columns: 1fr 1fr;
		gap: 55px;
	}
}

.vne-booking-title {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 800;
	line-height: 1.3;
	color: var(--white);
	margin: 15px 0 12px;
}

.vne-booking-subtitle {
	font-size: 15px;
	color: #cbd5e1;
	line-height: 1.7;
	margin-bottom: 25px;
}

.vne-booking-perks {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 30px;
}

.vne-perk-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.vne-perk-icon {
	color: #f59e0b;
	flex-shrink: 0;
	margin-top: 2px;
}

.vne-perk-item strong {
	font-size: 15px;
	color: #fef08a;
	display: block;
	margin-bottom: 2px;
}

.vne-perk-item p {
	font-size: 13.5px;
	color: #94a3b8;
	line-height: 1.5;
}

.vne-booking-emergency {
	padding: 18px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.vne-hotline-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #f59e0b;
	font-size: 14px;
	margin-top: 6px;
}

.vne-hotline-pill:hover {
	color: #fbbf24;
}

.vne-booking-form-box {
	background: var(--white);
	color: var(--text-main);
	border-radius: var(--radius-xl);
	padding: 35px 30px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.vne-booking-form-header {
	text-align: center;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-color);
}

.vne-booking-form-header h3 {
	font-size: 20px;
	font-weight: 800;
	color: #1e293b;
}

.vne-booking-form-header p {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 4px;
}

.vne-guests-pill-group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 6px;
}

.vne-guest-pill {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border: 1.5px solid var(--border-color);
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	cursor: pointer;
	transition: all var(--transition-fast);
	text-align: center;
}

.vne-guest-pill input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.vne-guest-pill:has(input:checked) {
	border-color: #b91c1c;
	background: #fff1f2;
	color: #b91c1c;
	font-weight: 700;
	box-shadow: 0 0 0 1px #b91c1c;
}

.vne-form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

@media (min-width: 576px) {
	.vne-form-row {
		grid-template-columns: 1fr 1fr;
	}
}

.vne-form-security-note {
	font-size: 11px;
	text-align: center;
	color: var(--text-muted);
	margin-top: 14px;
	line-height: 1.5;
}

/* Elevated Testimonial Card */
.vne-card-elevated {
	background: var(--white);
	border: 1px solid var(--border-light);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.vne-card-elevated:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}


/* ==========================================================================
   J. SPA & BEAUTY CLINIC SPECIALIZED COMPONENTS
   ========================================================================== */

/* Spa Badges & Buttons */
.vne-badge-spa {
	background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
	color: var(--white);
	font-weight: 700;
	font-size: 12px;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	box-shadow: 0 2px 8px rgba(190, 24, 93, 0.3);
}

.vne-btn-spa {
	background: linear-gradient(135deg, #be185d 0%, #9d174d 100%);
	color: var(--white);
	font-weight: 700;
	border-radius: var(--radius-full);
	padding: 14px 28px;
	box-shadow: 0 4px 15px rgba(190, 24, 93, 0.35);
	transition: all var(--transition-fast);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.vne-btn-spa:hover {
	background: linear-gradient(135deg, #9d174d 0%, #831843 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(190, 24, 93, 0.45);
	color: var(--white);
}

.vne-btn-spa-sm {
	background: #fdf2f8;
	color: #be185d;
	border: 1.5px solid #fbcfe8;
	font-weight: 700;
	font-size: 13px;
	padding: 8px 18px;
	border-radius: var(--radius-full);
	transition: all var(--transition-fast);
	cursor: pointer;
}

.vne-btn-spa-sm:hover {
	background: #be185d;
	color: var(--white);
	border-color: #be185d;
}

/* Spa Hero */
.vne-spa-hero {
	background-color: #1e1b4b;
	color: var(--white);
	padding: 90px 0 65px;
	min-height: 560px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	position: relative;
}

.vne-spa-hero-inner {
	text-align: center;
	max-width: 860px;
	margin: 0 auto;
}

.vne-spa-hero-title {
	font-size: clamp(32px, 5vw, 50px);
	font-weight: 800;
	line-height: 1.25;
	color: var(--white);
	margin: 20px 0 15px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vne-spa-hero-subtitle {
	font-size: clamp(16px, 2vw, 18px);
	color: #fbcfe8;
	line-height: 1.7;
	margin-bottom: 30px;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.vne-spa-trust-strip {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin-top: 10px;
}

.vne-spa-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fce7f3;
	font-size: 13px;
	text-align: left;
}

.vne-spa-trust-item svg {
	color: #f43f5e;
	flex-shrink: 0;
}

.vne-spa-trust-item strong {
	display: block;
	color: var(--white);
	font-size: 13.5px;
}

/* Treatment Catalog Grid */
.vne-treatments-section {
	padding: 75px 0;
}

.vne-treatments-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
}

.vne-treatment-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid #fce7f3;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: all var(--transition-normal);
}

.vne-treatment-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(190, 24, 93, 0.12);
	border-color: #f472b6;
}

.vne-treatment-media {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #0f172a;
}

.vne-treatment-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.vne-treatment-card:hover .vne-treatment-media img {
	transform: scale(1.07);
}

.vne-duration-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(4px);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	z-index: 2;
}

.vne-discount-tag {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #ef4444;
	color: var(--white);
	font-size: 12px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
	z-index: 2;
}

.vne-treatment-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.vne-treatment-title {
	font-size: 18px;
	font-weight: 700;
	color: #1e1b4b;
	line-height: 1.35;
	margin-bottom: 8px;
}

.vne-treatment-desc {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 16px;
}

.vne-treatment-guarantee {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 10px 12px;
	background: #fdf2f8;
	border-radius: var(--radius-sm);
	font-size: 12.5px;
	color: #9d174d;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 18px;
	border-left: 3px solid #be185d;
}

.vne-treatment-guarantee svg {
	flex-shrink: 0;
	color: #be185d;
	margin-top: 2px;
}

.vne-treatment-pricing {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding-top: 14px;
	border-top: 1px solid #f1f5f9;
}

.vne-price-group {
	display: flex;
	flex-direction: column;
}

.vne-price-old {
	font-size: 13px;
	text-decoration: line-through;
	color: var(--text-light);
}

.vne-price-sale {
	font-size: 20px;
	font-weight: 800;
	color: #be185d;
}

/* Before / After Showcase */
.vne-ba-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.vne-ba-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-normal);
}

.vne-ba-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.vne-ba-comparison {
	display: flex;
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: #f1f5f9;
}

.vne-ba-item {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.vne-ba-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-ba-divider {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--white);
	border: 2px solid #be185d;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 900;
	color: #be185d;
	z-index: 2;
	box-shadow: var(--shadow-md);
}

.vne-ba-label {
	position: absolute;
	bottom: 8px;
	font-size: 10px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: var(--radius-sm);
	letter-spacing: 0.5px;
}

.vne-label-before {
	left: 8px;
	background: rgba(15, 23, 42, 0.75);
	color: var(--white);
}

.vne-label-after {
	right: 8px;
	background: #be185d;
	color: var(--white);
}

.vne-ba-content {
	padding: 18px;
}

.vne-ba-content h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1e1b4b;
	margin-bottom: 6px;
}

.vne-ba-client {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.vne-ba-quote {
	font-size: 13px;
	font-style: italic;
	color: #475569;
	line-height: 1.5;
}

/* Spa Booking Section */
.vne-spa-booking-section {
	background: linear-gradient(135deg, #2e1065 0%, #1e1b4b 100%);
	color: var(--white);
	padding: 80px 0;
}

.vne-spa-booking-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

@media (min-width: 992px) {
	.vne-spa-booking-layout {
		grid-template-columns: 1fr 1fr;
		gap: 55px;
	}
}

.vne-spa-booking-title {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 800;
	line-height: 1.3;
	color: var(--white);
	margin: 15px 0 12px;
}

.vne-spa-booking-subtitle {
	font-size: 15px;
	color: #fbcfe8;
	line-height: 1.7;
	margin-bottom: 20px;
}

.vne-voucher-box {
	background: linear-gradient(135deg, rgba(190, 24, 93, 0.25), rgba(244, 63, 94, 0.15));
	border: 2px dashed #f472b6;
	border-radius: var(--radius-md);
	padding: 20px;
	margin: 20px 0;
	text-align: center;
}

.vne-voucher-badge {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fbcfe8;
	text-transform: uppercase;
}

.vne-voucher-code {
	font-size: 32px;
	font-weight: 900;
	letter-spacing: 4px;
	color: #fef08a;
	margin: 6px 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.vne-voucher-desc {
	font-size: 13px;
	color: #fdf2f8;
	line-height: 1.5;
}

.vne-spa-perks {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vne-spa-perk {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	color: #fce7f3;
	line-height: 1.5;
}

.vne-spa-perk svg {
	color: #f43f5e;
	flex-shrink: 0;
	margin-top: 2px;
}

.vne-spa-form-box {
	background: var(--white);
	color: var(--text-main);
	border-radius: var(--radius-xl);
	padding: 35px 30px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.vne-spa-form-header {
	text-align: center;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-color);
}

.vne-spa-form-header h3 {
	font-size: 20px;
	font-weight: 800;
	color: #1e1b4b;
}

.vne-spa-form-header p {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 4px;
}


/* ==========================================================================
   K. CLINIC & HEALTHCARE SPECIALIZED COMPONENTS
   ========================================================================== */

/* Clinic Badges & Buttons */
.vne-badge-clinic {
	background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
	color: var(--white);
	font-weight: 700;
	font-size: 12px;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

.vne-btn-clinic {
	background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
	color: var(--white);
	font-weight: 700;
	border-radius: var(--radius-full);
	padding: 14px 28px;
	box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
	transition: all var(--transition-fast);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.vne-btn-clinic:hover {
	background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
	color: var(--white);
}

.vne-btn-clinic-sm {
	background: #f0f9ff;
	color: #0284c7;
	border: 1.5px solid #bae6fd;
	font-weight: 700;
	font-size: 13px;
	padding: 8px 18px;
	border-radius: var(--radius-full);
	transition: all var(--transition-fast);
	cursor: pointer;
}

.vne-btn-clinic-sm:hover {
	background: #0284c7;
	color: var(--white);
	border-color: #0284c7;
}

/* Clinic Hero */
.vne-clinic-hero {
	background-color: #0f172a;
	color: var(--white);
	padding: 90px 0 65px;
	min-height: 560px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	position: relative;
}

.vne-clinic-hero-inner {
	text-align: center;
	max-width: 880px;
	margin: 0 auto;
}

.vne-clinic-hero-title {
	font-size: clamp(32px, 5vw, 50px);
	font-weight: 800;
	line-height: 1.25;
	color: var(--white);
	margin: 20px 0 15px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.vne-clinic-hero-subtitle {
	font-size: clamp(16px, 2vw, 18px);
	color: #bae6fd;
	line-height: 1.7;
	margin-bottom: 30px;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.vne-clinic-stats-strip {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin-top: 10px;
}

.vne-clinic-stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.vne-stat-number {
	font-size: 32px;
	font-weight: 900;
	color: #38bdf8;
	line-height: 1.1;
}

.vne-stat-label {
	font-size: 13px;
	color: #cbd5e1;
	font-weight: 600;
	margin-top: 4px;
}

/* Dental Treatments Grid */
.vne-dental-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}

.vne-dental-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: all var(--transition-normal);
}

.vne-dental-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-xl);
	border-color: #0284c7;
}

.vne-dental-media {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #0f172a;
}

.vne-dental-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.vne-dental-card:hover .vne-dental-media img {
	transform: scale(1.07);
}

.vne-badge-warranty {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: linear-gradient(135deg, #059669 0%, #047857 100%);
	color: var(--white);
	font-size: 12px;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: var(--shadow-md);
	z-index: 2;
}

.vne-dental-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.vne-dental-badges-top {
	margin-bottom: 10px;
}

.vne-installment-pill {
	display: inline-block;
	background: #fef3c7;
	color: #b45309;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	border: 1px solid #fde68a;
}

.vne-dental-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.35;
	margin-bottom: 10px;
}

.vne-dental-desc {
	font-size: 13.5px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 16px;
}

.vne-dental-perks {
	list-style: none;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vne-dental-perks li {
	font-size: 13px;
	color: #334155;
	display: flex;
	align-items: center;
	gap: 8px;
}

.vne-dental-perks li svg {
	color: #10b981;
	flex-shrink: 0;
}

.vne-dental-footer {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--border-light);
}

/* Doctors Grid */
.vne-doctors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 26px;
}

.vne-doctor-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: all var(--transition-normal);
}

.vne-doctor-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: #38bdf8;
}

.vne-doctor-thumb {
	position: relative;
	aspect-ratio: 1/1.15;
	overflow: hidden;
	background: #e2e8f0;
}

.vne-doctor-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform var(--transition-slow);
}

.vne-doctor-card:hover .vne-doctor-thumb img {
	transform: scale(1.05);
}

.vne-doctor-exp {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(4px);
	color: #38bdf8;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.vne-doctor-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.vne-doctor-dept {
	font-size: 12px;
	font-weight: 700;
	color: #0284c7;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.vne-doctor-name {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
}

.vne-doctor-credentials {
	list-style: none;
	font-size: 13px;
	color: #475569;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 18px;
	line-height: 1.5;
	flex-grow: 1;
}

.vne-btn-doctor-select {
	width: 100%;
	padding: 10px 14px;
	background: #f0f9ff;
	color: #0284c7;
	border: 1px solid #bae6fd;
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all var(--transition-fast);
	cursor: pointer;
}

.vne-btn-doctor-select:hover {
	background: #0284c7;
	color: var(--white);
	border-color: #0284c7;
}

/* Clinic Booking Section */
.vne-clinic-booking-section {
	background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
	color: var(--white);
	padding: 80px 0;
}

.vne-clinic-booking-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

@media (min-width: 992px) {
	.vne-clinic-booking-layout {
		grid-template-columns: 1fr 1fr;
		gap: 55px;
	}
}

.vne-clinic-booking-title {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 800;
	line-height: 1.3;
	color: var(--white);
	margin: 15px 0 12px;
}

.vne-clinic-booking-subtitle {
	font-size: 15px;
	color: #e0f2fe;
	line-height: 1.7;
	margin-bottom: 20px;
}

.vne-clinic-package-box {
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-lg);
	padding: 22px;
	margin: 22px 0;
}

.vne-package-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.vne-package-title {
	font-size: 13px;
	font-weight: 800;
	color: #38bdf8;
	letter-spacing: 0.5px;
}

.vne-package-badge {
	font-size: 12px;
	font-weight: 700;
	background: #fef08a;
	color: #854d0e;
	padding: 2px 8px;
	border-radius: var(--radius-sm);
}

.vne-package-items {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vne-package-items li {
	font-size: 13.5px;
	color: #f0f9ff;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.5;
}

.vne-package-items li svg {
	color: #38bdf8;
	flex-shrink: 0;
	margin-top: 2px;
}

.vne-clinic-hotline-strip {
	padding: 16px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.vne-hotline-clinic {
	color: #38bdf8;
}

.vne-hotline-clinic:hover {
	color: #7dd3fc;
}

.vne-clinic-form-box {
	background: var(--white);
	color: var(--text-main);
	border-radius: var(--radius-xl);
	padding: 35px 30px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.vne-clinic-form-header {
	text-align: center;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-color);
}

.vne-clinic-form-header h3 {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
}

.vne-clinic-form-header p {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 4px;
}


/* ==========================================================================
   14. CONSTRUCTION & ARCHITECTURE STYLES (XÂY DỰNG & COST ESTIMATOR)
   ========================================================================== */
.vne-hero-construction {
	min-height: 520px;
	padding: 110px 0 80px;
}

.vne-badge-construction {
	background: rgba(234, 88, 12, 0.2) !important;
	border: 1px solid rgba(234, 88, 12, 0.4) !important;
	color: #fdba74 !important;
}

.vne-construction-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 800px;
	margin: 30px auto 0;
}

@media (min-width: 768px) {
	.vne-construction-stats {
		grid-template-columns: repeat(4, 1fr);
	}
}

.vne-stat-item {
	padding: 18px 14px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-md);
	text-align: center;
}

.vne-stat-number {
	font-size: 26px;
	font-weight: 800;
	color: #f59e0b;
	line-height: 1.2;
}

.vne-stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 4px;
	font-weight: 500;
}

/* Construction Portfolio Card */
.vne-construction-card .vne-card-specs {
	grid-template-columns: 1fr 1fr 1fr;
}

/* Interactive Cost Estimator */
.vne-estimator-section {
	padding: 80px 0;
}

.vne-estimator-box {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
	padding: 36px 30px;
}

@media (min-width: 992px) {
	.vne-estimator-box {
		padding: 44px 40px;
	}
}

.vne-estimator-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 992px) {
	.vne-estimator-grid {
		grid-template-columns: 1.35fr 1fr;
		align-items: start;
	}
}

.vne-estimator-heading {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 22px;
	color: var(--text-main);
	display: flex;
	align-items: center;
	gap: 8px;
}

.vne-estimator-heading span {
	color: var(--primary-color);
}

.vne-field-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-main);
	margin-bottom: 6px;
}

.vne-quick-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.vne-quick-tag {
	padding: 5px 12px;
	background: var(--light-color);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	font-size: 12px;
	font-weight: 600;
	color: var(--text-muted);
	cursor: pointer;
	transition: all 0.2s ease;
}

.vne-quick-tag:hover,
.vne-quick-tag.is-active {
	background: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

.vne-package-radios {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vne-package-option {
	display: block;
	cursor: pointer;
}

.vne-package-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.vne-pkg-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 18px;
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: all 0.2s ease;
}

.vne-pkg-box strong {
	font-size: 14px;
	color: var(--text-main);
}

.vne-pkg-box span {
	font-size: 13px;
	color: var(--text-muted);
}

.vne-package-option input:checked + .vne-pkg-box {
	border-color: #ea580c;
	background: #fff7ed;
}

.vne-package-option input:checked + .vne-pkg-box strong {
	color: #ea580c;
}

/* Estimator Live Results Card */
.vne-result-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	box-shadow: var(--shadow-xl);
	position: sticky;
	top: 100px;
}

.vne-result-card-header {
	margin-bottom: 20px;
}

.vne-result-card-header h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	margin-top: 8px;
}

.vne-result-total-box {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 24px;
}

.vne-total-number {
	font-size: 30px;
	font-weight: 800;
	color: #f59e0b;
	line-height: 1.2;
}

.vne-total-words {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 6px;
	font-weight: 500;
}

.vne-breakdown-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vne-breakdown-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	padding-bottom: 8px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.vne-breakdown-row strong {
	color: var(--white);
}

.vne-breakdown-row.is-highlight {
	color: #fdba74;
	font-weight: 700;
	font-size: 14px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px;
}

.vne-estimator-note {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 18px;
	line-height: 1.5;
}

.vne-estimator-note svg {
	flex-shrink: 0;
	margin-top: 2px;
}

/* ==========================================================================
   15. HOTEL & RESORT STYLES (KHÁCH SẠN & ĐẶT PHÒNG)
   ========================================================================== */
.vne-hero-hotel {
	min-height: 520px;
	padding: 110px 0 90px;
}

.vne-badge-hotel {
	background: rgba(2, 132, 199, 0.2) !important;
	border: 1px solid rgba(2, 132, 199, 0.4) !important;
	color: #bae6fd !important;
}

.vne-hotel-pills {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.vne-pill-item {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-full);
	font-size: 12px;
	font-weight: 500;
	color: #fff;
}

.vne-hotel-search-wrapper {
	margin-top: -45px;
	position: relative;
	z-index: 20;
}

.vne-hotel-filter-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: flex-end;
}

@media (min-width: 768px) {
	.vne-hotel-filter-form {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1200px) {
	.vne-hotel-filter-form {
		grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1.2fr auto;
	}
}

.vne-room-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 12px 0 16px;
}

.vne-amenity-tag {
	font-size: 11px;
	padding: 3px 8px;
	background: var(--light-color);
	color: var(--text-muted);
	border-radius: var(--radius-sm);
	font-weight: 500;
}

/* ==========================================================================
   16. EDUCATION & ACADEMY STYLES (GIÁO DỤC & KHÓA HỌC)
   ========================================================================== */
.vne-hero-education {
	min-height: 520px;
	padding: 110px 0 80px;
}

.vne-badge-education {
	background: rgba(79, 70, 229, 0.2) !important;
	border: 1px solid rgba(79, 70, 229, 0.4) !important;
	color: #c7d2fe !important;
}

.vne-course-meta-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 10px 0 14px;
}

.vne-meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	color: #4f46e5;
	background: #eef2ff;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
}

.vne-course-outcome {
	font-size: 12px;
	color: var(--text-muted);
	background: #f8fafc;
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	margin-bottom: 16px;
	line-height: 1.5;
	border-left: 3px solid #4f46e5;
}

.vne-course-outcome strong {
	display: block;
	color: var(--text-main);
	margin-bottom: 2px;
	font-size: 12px;
}

/* Mentors Grid */
.vne-mentors-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.vne-mentors-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.vne-mentors-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.vne-mentor-card {
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 28px 20px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vne-mentor-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.vne-mentor-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 16px;
	border: 3px solid #e0e7ff;
}

.vne-mentor-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-main);
	margin-bottom: 4px;
}

.vne-mentor-role {
	font-size: 12px;
	font-weight: 600;
	color: #4f46e5;
	margin-bottom: 12px;
}

.vne-mentor-bio {
	font-size: 12px;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ==========================================================================
   17. FAST EMERGENCY SERVICES & REPAIRS (SỬA CHỮA CẤP TỐC 24/7)
   ========================================================================== */
.vne-hero-services {
	min-height: 520px;
	padding: 110px 0 80px;
}

.vne-badge-services {
	background: rgba(220, 38, 38, 0.25) !important;
	border: 1px solid rgba(220, 38, 38, 0.5) !important;
	color: #fca5a5 !important;
}

.vne-emergency-call-wrapper {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

/* Vibrating Shaking Call Button */
.vne-btn-emergency-shaking {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 12px 28px;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: var(--white) !important;
	border-radius: var(--radius-full);
	box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
	text-decoration: none;
	animation: vneShakeCall 2.6s infinite ease-in-out;
	position: relative;
}

.vne-emergency-icon-ring {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.vne-emergency-text {
	text-align: left;
}

.vne-emergency-text small {
	display: block;
	font-size: 10px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	opacity: 0.9;
}

.vne-emergency-text strong {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.1;
}

@keyframes vneShakeCall {
	0%, 100% { transform: scale(1) rotate(0deg); }
	10% { transform: scale(1.04) rotate(-3deg); }
	20% { transform: scale(1.04) rotate(3deg); }
	30% { transform: scale(1.04) rotate(-3deg); }
	40% { transform: scale(1.04) rotate(3deg); }
	50% { transform: scale(1.02) rotate(0deg); }
}

@keyframes vnePulseRing {
	0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
	70% { box-shadow: 0 0 0 16px rgba(239, 68, 68, 0); }
	100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Transparent Price Table Grid */
.vne-service-price-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.vne-service-price-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.vne-service-price-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.vne-price-table-card {
	background: var(--white);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.vne-price-table-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
	border-color: rgba(15, 76, 129, 0.35);
}

/* Featured / Popular Highlighted Pricing Card */
.vne-price-table-card.is-featured,
.vne-price-table-card.is-popular {
	border: 2px solid transparent;
	background-image: linear-gradient(var(--white), var(--white)), var(--border-gradient-primary);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	box-shadow: var(--shadow-xl);
	transform: translateY(-4px) scale(1.02);
	z-index: 2;
}

.vne-price-table-card.is-featured:hover,
.vne-price-table-card.is-popular:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: var(--shadow-2xl);
}

/* Eye-Catching Popular Ribbon for Pricing Cards */
.vne-pricing-ribbon,
.vne-price-ribbon {
	position: absolute;
	top: 12px;
	right: 12px;
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 4px 14px;
	border-radius: var(--radius-full);
	box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.vne-pricing-ribbon::before,
.vne-price-ribbon::before {
	content: '★';
	font-size: 10px;
	color: #fef08a;
}

.vne-price-table-header {
	padding: 18px 20px;
	background: var(--light-color);
	display: flex;
	gap: 14px;
	align-items: center;
	border-bottom: 1px solid var(--border-color);
}

.vne-price-cat-icon {
	font-size: 26px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-xs);
	flex-shrink: 0;
}

.vne-price-table-header h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-main);
	line-height: 1.3;
}

.vne-price-table-header p {
	font-size: 11px;
	color: var(--text-muted);
	margin-top: 2px;
}

.vne-price-item-list {
	padding: 20px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex-grow: 1;
}

.vne-price-item-list li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	padding-bottom: 10px;
	border-bottom: 1px dashed var(--border-color);
}

.vne-price-item-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.vne-price-item-list li span {
	color: var(--text-main);
	line-height: 1.4;
}

.vne-price-item-list li strong {
	color: #dc2626;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.vne-price-table-footer {
	padding: 14px 20px;
	background: var(--light-color);
	border-top: 1px solid var(--border-color);
}

/* Floating Emergency Call Bar */
.vne-floating-emergency-bar {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 998;
	display: flex;
}

.vne-floating-call-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	background: #dc2626;
	color: var(--white) !important;
	font-weight: 700;
	font-size: 14px;
	border-radius: var(--radius-full);
	box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
	position: relative;
	text-decoration: none;
	animation: vneShakeCall 3.2s infinite ease-in-out;
}

.vne-floating-call-btn .vne-pulse-ring {
	position: absolute;
	inset: -4px;
	border-radius: var(--radius-full);
	border: 2px solid #ef4444;
	animation: vnePulseRing 2s infinite;
	pointer-events: none;
}


