/**
 * Vibe Niche Engine - Dedicated Niche Layouts Stylesheet
 * Covers all 11 industry templates with responsive layouts & micro-interactions
 *
 * @package VibeNicheEngine
 * @version 1.0.0
 */

/* ==========================================================================
   1. SHARED UTILITIES & TAB SYSTEM
   ========================================================================== */
.vne-hero-actions-row {
	display: flex;
	gap: 15px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 25px;
	margin-bottom: 20px;
}

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

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

/* Tab Navigation Buttons */
.vne-niche-tabs-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.vne-niche-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	min-height: 48px;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 14px;
	background-color: #f1f5f9;
	color: #475569;
	border: 1px solid #e2e8f0;
	transition: all 0.25s ease;
	cursor: pointer;
}

.vne-niche-tab-btn:hover {
	background-color: #e2e8f0;
	color: #0f172a;
}

.vne-niche-tab-btn.is-active {
	background-color: var(--primary-color, #0f4c81);
	color: #ffffff;
	border-color: var(--primary-color, #0f4c81);
	box-shadow: 0 4px 14px rgba(15, 76, 129, 0.25);
}

.vne-niche-tab-btn.is-active svg {
	stroke: #ffffff;
}

.vne-niche-tabs-content {
	position: relative;
	transition: min-height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.vne-niche-tab-pane,
.vne-menu-tab-pane {
	display: none;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.vne-niche-tab-pane.is-active,
.vne-menu-tab-pane.is-active {
	display: block;
	opacity: 1;
	transform: translateY(0);
	animation: vneTabSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vne-niche-tab-pane.is-leaving,
.vne-menu-tab-pane.is-leaving {
	display: block;
	opacity: 0;
	transform: translateY(-8px);
	pointer-events: none;
}

@keyframes vneTabSlideUp {
	0% {
		opacity: 0;
		transform: translateY(14px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   1.1 UNIVERSAL 18-NICHE COMPONENT STYLING & MICRO-INTERACTIONS
   ========================================================================== */

/* Universal Product & Service Cards: Modern 18px-20px radius, subtle border, 3D hover lift */
.vne-project-card,
.vne-menu-card,
.vne-food-card,
.vne-treatment-card,
.vne-spa-pricing-card,
.vne-doctor-card,
.vne-dental-card,
.vne-construction-card,
.vne-calc-pkg-card,
.vne-hotel-room-card,
.vne-room-card,
.vne-course-card,
.vne-instructor-card,
.vne-lawyer-card,
.vne-practice-card,
.vne-legal-card,
.vne-repair-card,
.vne-fashion-card,
.vne-training-card,
.vne-timetable-card,
.vne-logistics-card,
.vne-fleet-card,
.vne-warehouse-card,
.vne-pet-service-card,
.vne-pet-pricing-card,
.vne-garage-service-card,
.vne-b2b-service-card,
.vne-case-card,
.vne-security-card,
.vne-deployment-step-card,
.vne-wedding-card,
.vne-wprice-card,
.vne-wgallery-card,
.vne-ff-card,
.vne-progress-card {
	border-radius: var(--radius-lg, 18px) !important;
	border: 1px solid var(--border-subtle, rgba(226, 232, 240, 0.85));
	box-shadow: var(--shadow-sm, 0 2px 5px -1px rgba(15, 23, 42, 0.08));
	transition: transform var(--transition-normal, 0.28s ease), box-shadow var(--transition-normal, 0.28s ease), border-color var(--transition-normal, 0.28s ease);
}

.vne-project-card:hover,
.vne-menu-card:hover,
.vne-food-card:hover,
.vne-treatment-card:hover,
.vne-spa-pricing-card:hover,
.vne-doctor-card:hover,
.vne-dental-card:hover,
.vne-construction-card:hover,
.vne-calc-pkg-card:hover,
.vne-hotel-room-card:hover,
.vne-room-card:hover,
.vne-course-card:hover,
.vne-instructor-card:hover,
.vne-lawyer-card:hover,
.vne-practice-card:hover,
.vne-legal-card:hover,
.vne-repair-card:hover,
.vne-fashion-card:hover,
.vne-training-card:hover,
.vne-timetable-card:hover,
.vne-logistics-card:hover,
.vne-fleet-card:hover,
.vne-warehouse-card:hover,
.vne-pet-service-card:hover,
.vne-pet-pricing-card:hover,
.vne-garage-service-card:hover,
.vne-b2b-service-card:hover,
.vne-case-card:hover,
.vne-security-card:hover,
.vne-deployment-step-card:hover,
.vne-wedding-card:hover,
.vne-wprice-card:hover,
.vne-ff-card:hover,
.vne-progress-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl, 0 20px 38px -6px rgba(15, 23, 42, 0.14));
}

/* Glowing Indicator Dots for Niche Hero Badges */
.vne-hero-badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 20px;
	border-radius: var(--radius-full, 9999px);
	font-weight: 600;
	letter-spacing: 0.035em;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.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-badge.is-urgent::before {
	background-color: #ef4444;
	animation-name: vneGlowPulseRed;
}

.vne-hero-badge.is-gold::before,
.vne-hero-badge.is-pet::before {
	background-color: #f59e0b;
	animation-name: vneGlowPulseGold;
}

.vne-hero-badge.is-b2b::before {
	background-color: #3b82f6;
	box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
	animation-name: vneGlowPulseBlue;
}

@keyframes vneGlowPulseBlue {
	0% {
		box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.8);
		transform: scale(0.95);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
		transform: scale(1.1);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
		transform: scale(0.95);
	}
}

/* Niche Call-To-Action Buttons: Shimmer sweep & balanced ergonomics */
.vne-btn-order-dish,
.vne-btn-table-book,
.vne-btn-sched-book,
.vne-btn-doctor-select,
.vne-btn-fitting-book,
.vne-btn-zalo-quick,
.vne-btn-emergency-call,
.vne-btn-booking-quick,
.vne-btn-security-action,
.vne-btn-garage-book,
.vne-btn-calc-apply,
.vne-btn-track-submit {
	position: relative;
	overflow: hidden;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: var(--radius-md, 12px);
	transition: transform var(--transition-normal, 0.28s ease), box-shadow var(--transition-normal, 0.28s ease), background var(--transition-fast, 0.18s ease);
}

.vne-btn-order-dish::after,
.vne-btn-table-book::after,
.vne-btn-sched-book::after,
.vne-btn-doctor-select::after,
.vne-btn-fitting-book::after,
.vne-btn-zalo-quick::after,
.vne-btn-emergency-call::after,
.vne-btn-booking-quick::after,
.vne-btn-security-action::after,
.vne-btn-garage-book::after,
.vne-btn-calc-apply::after,
.vne-btn-track-submit::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-order-dish:hover::after,
.vne-btn-table-book:hover::after,
.vne-btn-sched-book:hover::after,
.vne-btn-doctor-select:hover::after,
.vne-btn-fitting-book:hover::after,
.vne-btn-zalo-quick:hover::after,
.vne-btn-emergency-call:hover::after,
.vne-btn-booking-quick:hover::after,
.vne-btn-security-action:hover::after,
.vne-btn-garage-book:hover::after,
.vne-btn-calc-apply:hover::after,
.vne-btn-track-submit:hover::after {
	left: 140%;
}

/* Eye-Catching Popular Ribbon for Pricing Cards across all niches */
.vne-pricing-ribbon,
.vne-wprice-ribbon,
.vne-ribbon-popular {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 5px 18px;
	border-radius: var(--radius-full, 9999px);
	box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
	white-space: nowrap;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

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

/* ==========================================================================
   2. REAL ESTATE SPECIFIC STYLES
   ========================================================================== */
.vne-real-estate-dual-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}

@media (min-width: 992px) {
	.vne-real-estate-dual-grid {
		grid-template-columns: 1.2fr 1fr;
	}
}

.vne-progress-card,
.vne-legal-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 35px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid #e2e8f0;
}

.vne-card-header-inner {
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f1f5f9;
}

.vne-card-subhead {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	margin-top: 10px;
}

.vne-timeline-list {
	position: relative;
	padding-left: 20px;
	border-left: 2px solid #e2e8f0;
	margin-left: 15px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.vne-timeline-item {
	position: relative;
}

.vne-timeline-bullet {
	position: absolute;
	left: -33px;
	top: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #cbd5e1;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

.vne-timeline-item.is-completed .vne-timeline-bullet {
	background: #10b981;
}

.vne-timeline-item.is-current .vne-timeline-bullet {
	background: #f59e0b;
	box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.vne-timeline-date {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #64748b;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.vne-timeline-heading {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 6px;
}

.vne-timeline-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
}

.vne-progress-status-bar {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #f1f5f9;
}

.vne-progress-label {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin-bottom: 8px;
}

.vne-bar-track {
	width: 100%;
	height: 10px;
	background: #e2e8f0;
	border-radius: 9999px;
	overflow: hidden;
}

.vne-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #10b981, #059669);
	border-radius: 9999px;
	transition: width 1s ease-in-out;
}

.vne-legal-items {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.vne-legal-row {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.vne-legal-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 10px;
	background: #e0f2fe;
	color: #0284c7;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vne-legal-info h4 {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 4px;
}

.vne-legal-info p {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
	margin-bottom: 6px;
}

.vne-legal-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: #059669;
	background: #ecfdf5;
	padding: 2px 8px;
	border-radius: 4px;
}

.vne-legal-footer-cta {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid #f1f5f9;
}

/* Floorplan showcase */
.vne-floorplan-showcase {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
	.vne-floorplan-showcase {
		grid-template-columns: 1.2fr 1fr;
		align-items: center;
	}
}

.vne-floorplan-media {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vne-floorplan-media img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.vne-floorplan-showcase:hover .vne-floorplan-media img {
	transform: scale(1.03);
}

.vne-floorplan-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(4px);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 9999px;
}

.vne-floorplan-details h3 {
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
}

.vne-floorplan-details p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 20px;
}

.vne-plan-specs-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	background: #f8fafc;
	padding: 18px;
	border-radius: 10px;
	margin-bottom: 24px;
	font-size: 14px;
	color: #334155;
}

@media (min-width: 640px) {
	.vne-plan-specs-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ==========================================================================
   3. RESTAURANT F&B SPECIFIC STYLES
   ========================================================================== */
.vne-hero-restaurant {
	background-color: #1c1917;
}

.vne-menu-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

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

.vne-menu-card {
	display: flex;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vne-menu-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.vne-menu-media {
	width: 140px;
	min-width: 140px;
	position: relative;
}

.vne-menu-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-menu-badge-chef {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #b91c1c;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	white-space: nowrap;
}

.vne-menu-content {
	padding: 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

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

.vne-menu-title {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.4;
}

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

.vne-menu-desc {
	font-size: 12px;
	color: #64748b;
	line-height: 1.5;
	margin-bottom: 12px;
}

.vne-menu-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vne-menu-tag {
	font-size: 11px;
	color: #475569;
	background: #f1f5f9;
	padding: 2px 8px;
	border-radius: 4px;
}

.vne-btn-order-dish {
	font-size: 12px;
	font-weight: 700;
	color: #b91c1c;
	background: #fee2e2;
	padding: 4px 12px;
	border-radius: 9999px;
	transition: all 0.2s ease;
	cursor: pointer;
}

.vne-btn-order-dish:hover {
	background: #b91c1c;
	color: #ffffff;
}

/* Ambiance spaces */
.vne-spaces-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 30px;
}

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

.vne-space-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.vne-space-media {
	position: relative;
	height: 220px;
}

.vne-space-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-space-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.85);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 9999px;
}

.vne-space-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vne-space-title {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
}

.vne-space-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 16px;
	flex: 1;
}

.vne-space-amenities {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 12px;
	color: #334155;
	margin-bottom: 16px;
}

/* ==========================================================================
   4. SPA & BEAUTY CLINIC SPECIFIC STYLES
   ========================================================================== */
.vne-spa-pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 30px;
}

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

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

.vne-treatment-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vne-treatment-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(219, 39, 119, 0.12);
}

.vne-treatment-card.is-popular {
	border-color: #db2777;
	box-shadow: 0 6px 24px rgba(219, 39, 119, 0.15);
}

.vne-treatment-badge-hot {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #db2777, #9333ea);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 9999px;
	box-shadow: 0 2px 8px rgba(219, 39, 119, 0.3);
}

.vne-treatment-title {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 6px;
	line-height: 1.35;
}

.vne-treatment-duration {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #db2777;
	font-weight: 600;
	margin-bottom: 16px;
}

.vne-treatment-price-wrap {
	margin-bottom: 20px;
	padding: 14px;
	background: #fdf2f8;
	border-radius: 10px;
	position: relative;
}

.vne-treatment-original-price {
	font-size: 13px;
	color: #94a3b8;
	text-decoration: line-through;
	display: block;
}

.vne-treatment-current-price strong {
	font-size: 24px;
	font-weight: 800;
	color: #be185d;
}

.vne-treatment-current-price span {
	font-size: 12px;
	color: #64748b;
}

.vne-discount-tag {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #ef4444;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 4px;
}

.vne-treatment-steps {
	margin-bottom: 20px;
}

.vne-treatment-steps h4 {
	font-size: 13px;
	font-weight: 700;
	color: #334155;
	margin-bottom: 8px;
}

.vne-treatment-steps ol {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 12px;
	color: #64748b;
	line-height: 1.45;
}

/* Before / After comparisons */
.vne-ba-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}

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

.vne-ba-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.vne-ba-comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
}

.vne-ba-col {
	position: relative;
	height: 260px;
}

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

.vne-ba-tag {
	position: absolute;
	bottom: 10px;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 4px;
	color: #ffffff;
}

.vne-ba-tag.is-before {
	left: 10px;
	background: rgba(15, 23, 42, 0.8);
}

.vne-ba-tag.is-after {
	right: 10px;
	background: rgba(219, 39, 119, 0.9);
}

.vne-ba-info {
	padding: 24px;
}

.vne-ba-info h3 {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
}

.vne-ba-info p {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
	margin-bottom: 10px;
}

.vne-ba-status {
	font-size: 12px;
	font-weight: 700;
	color: #059669;
}

/* ==========================================================================
   5. CLINIC & HEALTHCARE SPECIFIC STYLES
   ========================================================================== */
.vne-doctors-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 30px;
}

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

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

.vne-doctor-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.vne-doctor-media {
	height: 280px;
	position: relative;
}

.vne-doctor-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-doctor-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #0284c7;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 9999px;
}

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

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

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

.vne-doctor-specialty {
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	margin-bottom: 14px;
}

.vne-doctor-points {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 12px;
	color: #64748b;
	line-height: 1.45;
	flex: 1;
}

/* Clinic Pricing Table */
.vne-clinic-table-wrap {
	overflow-x: auto;
	margin-top: 30px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid #e2e8f0;
}

.vne-clinic-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 14px;
}

.vne-clinic-table th {
	background: #f8fafc;
	padding: 16px 20px;
	font-weight: 700;
	color: #334155;
	border-bottom: 2px solid #e2e8f0;
	white-space: nowrap;
}

.vne-clinic-table td {
	padding: 16px 20px;
	border-bottom: 1px solid #f1f5f9;
	vertical-align: middle;
}

.vne-clinic-table tr:hover td {
	background-color: #f8fafc;
}

.vne-table-note {
	font-size: 12px;
	color: #64748b;
	margin-top: 2px;
}

.vne-table-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	background: #e0f2fe;
	color: #0369a1;
}

.vne-table-badge.is-gold {
	background: #fef3c7;
	color: #b45309;
}

.vne-table-price {
	font-weight: 800;
	color: #0284c7;
	white-space: nowrap;
}

.vne-table-installment {
	font-size: 12px;
	color: #10b981;
	font-weight: 600;
}

.vne-btn-table-book {
	background: #0284c7;
	color: #ffffff;
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.vne-btn-table-book:hover {
	background: #0369a1;
}

/* ==========================================================================
   6. CONSTRUCTION CALCULATOR SPECIFIC STYLES
   ========================================================================== */
.vne-calculator-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}

@media (min-width: 992px) {
	.vne-calculator-container {
		grid-template-columns: 1.2fr 1fr;
	}
}

.vne-calc-form-box,
.vne-calc-result-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 35px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vne-calc-heading {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 20px;
}

.vne-calc-field {
	margin-bottom: 20px;
}

.vne-calc-field label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #334155;
	margin-bottom: 8px;
}

.vne-calc-select,
.vne-calc-input {
	width: 100%;
	height: 48px;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #cbd5e1;
	font-size: 14px;
	background: #ffffff;
	color: #1e293b;
	transition: border-color 0.2s ease;
}

.vne-calc-select:focus,
.vne-calc-input:focus {
	outline: none;
	border-color: #0f4c81;
}

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

.vne-calc-radio-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vne-calc-radio-label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	transition: all 0.2s ease;
}

.vne-calc-radio-label:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}

.vne-calc-result-box {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.vne-calc-result-header h3 {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	margin-top: 8px;
	margin-bottom: 20px;
}

.vne-calc-breakdown {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.vne-calc-stat-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #e2e8f0;
	font-size: 14px;
	color: #475569;
}

.vne-calc-total-card {
	background: #0f4c81;
	color: #ffffff;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	margin-top: 15px;
}

.vne-total-title {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.9;
	margin-bottom: 6px;
}

.vne-total-number {
	font-size: 28px;
	font-weight: 900;
	color: #f59e0b;
	margin-bottom: 6px;
}

.vne-total-note {
	font-size: 11px;
	opacity: 0.8;
}

.vne-calc-cta-wrap {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
}

.vne-calc-cta-text {
	font-size: 13px;
	color: #64748b;
	text-align: center;
	margin-bottom: 12px;
}

/* Construction portfolio */
.vne-portfolio-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}

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

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

.vne-portfolio-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.vne-portfolio-media {
	height: 240px;
	position: relative;
}

.vne-portfolio-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-portfolio-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.85);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 9999px;
}

.vne-portfolio-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vne-portfolio-title {
	font-size: 16px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
	line-height: 1.4;
}

.vne-portfolio-meta-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 12px;
	color: #475569;
}

.vne-pmeta-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #f1f5f9;
	padding: 3px 8px;
	border-radius: 4px;
}

.vne-portfolio-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
	margin-bottom: 16px;
	flex: 1;
}

/* ==========================================================================
   7. HOTEL & RESORT BOOKING BAR & ROOMS
   ========================================================================== */
.vne-hotel-booking-bar-wrapper {
	position: relative;
	z-index: 50;
	margin-top: -45px;
}

.vne-hotel-booking-bar {
	background: #ffffff;
	border-radius: 16px;
	padding: 20px 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	border: 1px solid #e2e8f0;
}

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

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

.vne-hbook-field label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: #475569;
	margin-bottom: 6px;
}

.vne-hbook-input,
.vne-hbook-select {
	width: 100%;
	height: 46px;
	padding: 8px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 13px;
	background: #f8fafc;
	color: #0f172a;
}

.vne-btn-hbook-submit {
	height: 46px;
	background: #0f4c81;
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	padding: 0 24px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	white-space: nowrap;
	transition: background 0.2s ease;
	cursor: pointer;
}

.vne-btn-hbook-submit:hover {
	background: #0a375f;
}

.vne-rooms-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}

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

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

.vne-room-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.vne-room-card.is-highlight {
	border-color: #f59e0b;
}

.vne-room-media {
	height: 240px;
	position: relative;
}

.vne-room-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-room-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(15, 23, 42, 0.85);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 9999px;
}

.vne-room-badge.is-gold {
	background: #f59e0b;
}

.vne-room-price-tag {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: #ffffff;
	color: #0f172a;
	padding: 6px 14px;
	border-radius: 8px;
	font-size: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.vne-room-price-tag strong {
	font-size: 16px;
	color: #0f4c81;
}

.vne-room-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

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

.vne-room-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 12px;
	color: #475569;
}

.vne-rspec-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #f1f5f9;
	padding: 4px 8px;
	border-radius: 4px;
}

.vne-room-perks {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 13px;
	color: #64748b;
	margin-bottom: 20px;
	flex: 1;
}

.vne-amenities-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 30px;
}

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

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

.vne-amenity-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.vne-amenity-media {
	height: 180px;
}

.vne-amenity-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-amenity-body {
	padding: 20px;
	text-align: center;
}

.vne-amenity-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e0f2fe;
	color: #0284c7;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -40px auto 12px auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vne-amenity-body h3 {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 6px;
}

.vne-amenity-body p {
	font-size: 12px;
	color: #64748b;
	line-height: 1.5;
}

/* ==========================================================================
   8. EDUCATION COURSES & INSTRUCTORS
   ========================================================================= */
.vne-courses-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}

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

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

.vne-course-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.vne-course-card.is-featured {
	border-color: #0284c7;
	box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
}

.vne-course-media {
	height: 200px;
	position: relative;
}

.vne-course-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-course-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #0284c7;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 9999px;
}

.vne-course-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vne-course-meta-top {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #64748b;
	margin-bottom: 8px;
}

.vne-course-title {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
	line-height: 1.4;
}

.vne-course-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
	margin-bottom: 16px;
	flex: 1;
}

.vne-course-schedule-box {
	background: #f8fafc;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 18px;
	font-size: 12px;
	color: #475569;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.vne-csched-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.vne-course-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid #f1f5f9;
}

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

.vne-price-orig {
	font-size: 12px;
	color: #94a3b8;
	text-decoration: line-through;
}

.vne-course-price strong {
	font-size: 18px;
	font-weight: 900;
	color: #0284c7;
}

.vne-instructors-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 30px;
}

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

.vne-instructor-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.vne-inst-media {
	height: 260px;
	position: relative;
}

.vne-inst-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-inst-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.85);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 9999px;
}

.vne-inst-body {
	padding: 24px;
}

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

.vne-inst-role {
	font-size: 12px;
	font-weight: 700;
	color: #0284c7;
	margin-bottom: 10px;
}

.vne-inst-bio {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
}

/* ==========================================================================
   9. LAWYER & CORPORATE PRACTICE AREAS
   ========================================================================== */
.vne-practice-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 30px;
}

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

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

.vne-practice-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.vne-practice-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: #f1f5f9;
	color: #0f172a;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.vne-practice-title {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
	line-height: 1.35;
}

.vne-practice-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.55;
	margin-bottom: 16px;
}

.vne-practice-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 12px;
	color: #475569;
	margin-bottom: 20px;
}

.vne-btn-practice-action {
	color: #0f4c81;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	text-align: left;
	padding: 0;
	transition: color 0.2s ease;
}

.vne-btn-practice-action:hover {
	color: #0a375f;
	text-decoration: underline;
}

.vne-lawyers-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}

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

.vne-lawyer-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

@media (min-width: 992px) {
	.vne-lawyer-card {
		flex-direction: row;
	}
	.vne-lawyer-media {
		width: 40%;
		min-width: 40%;
		height: auto;
	}
}

.vne-lawyer-media {
	height: 260px;
	position: relative;
}

.vne-lawyer-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-lawyer-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #0f172a;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 9999px;
}

.vne-lawyer-body {
	padding: 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.vne-lawyer-title-tag {
	font-size: 12px;
	font-weight: 700;
	color: #b45309;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.vne-lawyer-name {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
}

.vne-lawyer-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.55;
	margin-bottom: 16px;
}

.vne-lawyer-case-box {
	background: #f8fafc;
	border-left: 3px solid #0f172a;
	padding: 10px 14px;
	font-size: 12px;
	color: #334155;
	line-height: 1.5;
}

/* ==========================================================================
   10. HOME REPAIR & EMERGENCY 24/7
   ========================================================================== */
.vne-hero-badge.is-urgent {
	background: #fee2e2;
	color: #b91c1c;
	border: 1px solid #fca5a5;
}

.vne-btn-emergency-glow {
	position: relative;
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	color: #ffffff;
	font-weight: 800;
	font-size: 15px;
	padding: 14px 28px;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
	animation: vnePulseGlow 1.8s infinite;
}

@keyframes vnePulseGlow {
	0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
	70% { box-shadow: 0 0 0 16px rgba(220, 38, 38, 0); }
	100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.vne-emergency-features-bar {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 13px;
	color: #f1f5f9;
}

.vne-repair-cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 30px;
}

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

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

.vne-repair-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	position: relative;
}

.vne-repair-card.is-popular {
	border-color: #0284c7;
	box-shadow: 0 6px 20px rgba(2, 132, 199, 0.12);
}

.vne-repair-tag-hot {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: #0284c7;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: 9999px;
}

.vne-rcard-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.vne-rcard-icon.is-danger { background: #fee2e2; color: #dc2626; }
.vne-rcard-icon.is-primary { background: #e0f2fe; color: #0284c7; }
.vne-rcard-icon.is-accent { background: #dcfce7; color: #16a34a; }
.vne-rcard-icon.is-secondary { background: #fef3c7; color: #d97706; }

.vne-rcard-title {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1.35;
}

.vne-rcard-price {
	font-size: 14px;
	color: #64748b;
	margin-bottom: 16px;
}

.vne-rcard-price strong {
	font-size: 22px;
	color: #dc2626;
	font-weight: 800;
}

.vne-rcard-checklist {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 12px;
	color: #475569;
	margin-bottom: 22px;
	flex: 1;
}

.vne-btn-emergency-call {
	background: #fee2e2;
	color: #dc2626;
	padding: 10px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.vne-btn-emergency-call:hover {
	background: #dc2626;
	color: #ffffff;
}

.vne-commitments-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 30px;
}

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

.vne-commit-card {
	border-radius: 16px;
	padding: 30px;
}

.vne-commit-card.is-dont {
	background: #fff1f2;
	border: 1px solid #fecdd3;
}

.vne-commit-card.is-do {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
}

.vne-commit-heading {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 18px;
}

.vne-commit-card.is-dont .vne-commit-heading { color: #be123c; }
.vne-commit-card.is-do .vne-commit-heading { color: #047857; }

.vne-commit-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	font-size: 14px;
}

.vne-commit-list li strong {
	display: block;
	color: #0f172a;
	margin-bottom: 2px;
}

.vne-commit-list li span {
	color: #475569;
	font-size: 13px;
	line-height: 1.5;
}

/* ==========================================================================
   11. FASHION & LUXURY BRIDAL STUDIO
   ========================================================================== */
.vne-fashion-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}

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

.vne-fashion-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.vne-fashion-card.is-highlight {
	border-color: #c084fc;
}

.vne-fashion-media {
	height: 380px;
	position: relative;
}

.vne-fashion-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.vne-fashion-card:hover .vne-fashion-media img {
	transform: scale(1.04);
}

.vne-fashion-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(15, 23, 42, 0.85);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 9999px;
}

.vne-fashion-season {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: #ffffff;
	color: #7e22ce;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 6px;
}

.vne-fashion-body {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vne-fashion-title {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1.4;
}

.vne-fashion-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.55;
	margin-bottom: 16px;
	flex: 1;
}

.vne-fashion-price-row {
	display: flex;
	justify-content: space-between;
	padding: 12px;
	background: #faf5ff;
	border-radius: 8px;
	margin-bottom: 18px;
	font-size: 12px;
	color: #581c87;
}

.vne-fprice-item strong {
	display: block;
	font-size: 15px;
	color: #7e22ce;
}

.vne-fashion-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.vne-btn-zalo-quick {
	background: #0068FF;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 10px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: background 0.2s ease;
}

.vne-btn-zalo-quick:hover {
	background: #0056d6;
	color: #ffffff;
}

.vne-btn-fitting-book {
	background: #f3e8ff;
	color: #7e22ce;
	font-size: 12px;
	font-weight: 700;
	padding: 10px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.vne-btn-fitting-book:hover {
	background: #7e22ce;
	color: #ffffff;
}

.vne-fitting-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 30px;
}

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

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

.vne-ff-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.vne-ff-num {
	font-size: 24px;
	font-weight: 900;
	color: #c084fc;
	margin-bottom: 8px;
}

.vne-ff-card h4 {
	font-size: 15px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 6px;
}

.vne-ff-card p {
	font-size: 12px;
	color: #64748b;
	line-height: 1.5;
}

/* Fashion Size Guide Table & Tips */
.vne-size-guide-wrap {
	margin-top: 30px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid #e2e8f0;
	overflow: hidden;
}
.vne-size-table-responsive {
	overflow-x: auto;
}
.vne-size-table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-size: 14px;
}
.vne-size-table th {
	background: #0f172a;
	color: #ffffff;
	padding: 16px 20px;
	font-weight: 700;
	white-space: nowrap;
}
.vne-size-table td {
	padding: 14px 18px;
	border-bottom: 1px solid #f1f5f9;
	vertical-align: middle;
}
.vne-size-table tr.is-highlight {
	background: #faf5ff;
}
.vne-size-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 6px;
	background: #f1f5f9;
	color: #0f172a;
	font-weight: 800;
}
.vne-size-badge.is-popular {
	background: #4f46e5;
	color: #ffffff;
}
.vne-size-tips-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	padding: 24px;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
	.vne-size-tips-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.vne-stip-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.vne-stip-icon {
	font-size: 20px;
	flex-shrink: 0;
}
.vne-stip-item strong {
	display: block;
	font-size: 13px;
	color: #0f172a;
	margin-bottom: 4px;
}
.vne-stip-item p {
	font-size: 12px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* ==========================================================================
   13. WEDDING STUDIO & BRIDAL LUXURY (100% INDEPENDENT NICHE LAYOUT)
   ========================================================================== */
.vne-hero-wedding {
	background-color: #1c1917;
	position: relative;
}
.vne-wedding-commitments {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 640px) {
	.vne-wedding-commitments {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.vne-wedding-commitments {
		grid-template-columns: repeat(4, 1fr);
	}
}
.vne-wcommit-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	padding: 14px 18px;
	border-radius: 12px;
	backdrop-filter: blur(8px);
	text-align: left;
}
.vne-wcommit-icon {
	font-size: 24px;
	flex-shrink: 0;
}
.vne-wcommit-text strong {
	display: block;
	font-size: 13px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 2px;
}
.vne-wcommit-text p {
	font-size: 11px;
	color: #fecdd3;
	margin: 0;
	line-height: 1.35;
}

/* Wedding Packages Grid */
.vne-wedding-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}
@media (min-width: 768px) {
	.vne-wedding-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.vne-wedding-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vne-wedding-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(225, 29, 72, 0.12);
}
.vne-wedding-card.is-featured {
	border-color: #fda4af;
	border-width: 2px;
}
.vne-wedding-media {
	height: 340px;
	position: relative;
	overflow: hidden;
}
.vne-wedding-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.vne-wedding-card:hover .vne-wedding-media img {
	transform: scale(1.05);
}
.vne-wedding-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(28, 25, 23, 0.85);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 9999px;
}
.vne-wedding-tag-featured {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #e11d48, #f43f5e);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 9999px;
	box-shadow: 0 2px 8px rgba(225, 29, 72, 0.4);
}
.vne-wedding-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.vne-wedding-title {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1.4;
}
.vne-wedding-title a {
	color: inherit;
	text-decoration: none;
}
.vne-wedding-title a:hover {
	color: #e11d48;
}
.vne-wedding-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.55;
	margin-bottom: 16px;
}
.vne-wedding-meta-list {
	background: #fff1f2;
	border-radius: 10px;
	padding: 12px 16px;
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.vne-wmeta-item {
	display: flex;
	gap: 8px;
	font-size: 12px;
	color: #881337;
	line-height: 1.4;
}
.vne-wmeta-icon {
	flex-shrink: 0;
}
.vne-wedding-price-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 18px;
	padding-top: 6px;
	border-top: 1px dashed #fecdd3;
}
.vne-wprice-label {
	font-size: 12px;
	color: #64748b;
}
.vne-wprice-val {
	font-size: 20px;
	font-weight: 900;
	color: #e11d48;
}
.vne-wedding-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: auto;
}
.vne-btn-booking-quick {
	background: #e11d48;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 10px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background 0.2s ease;
}
.vne-btn-booking-quick:hover {
	background: #be123c;
	color: #ffffff;
}

/* Wedding Pricing Comparison (Silver, Gold, Diamond) */
.vne-wedding-pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 36px;
}
@media (min-width: 1024px) {
	.vne-wedding-pricing-grid {
		grid-template-columns: repeat(3, 1fr);
		align-items: stretch;
	}
}
.vne-wprice-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.3s ease;
}
.vne-wprice-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.vne-wprice-card.is-highlighted {
	border-color: #e11d48;
	border-width: 2px;
	box-shadow: 0 8px 28px rgba(225, 29, 72, 0.15);
}
.vne-wprice-ribbon {
	position: absolute;
	top: 0;
	right: 0;
	background: #e11d48;
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	padding: 6px 14px;
	border-bottom-left-radius: 12px;
	letter-spacing: 0.5px;
}
.vne-wprice-header {
	padding: 28px 24px 20px;
	border-bottom: 1px solid #f1f5f9;
	text-align: center;
}
.vne-wprice-tier {
	font-size: 11px;
	font-weight: 800;
	color: #e11d48;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 6px;
}
.vne-wprice-name {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
}
.vne-wprice-amount {
	font-size: 32px;
	font-weight: 900;
	color: #e11d48;
	line-height: 1;
	margin-bottom: 10px;
}
.vne-wprice-amount span {
	font-size: 16px;
	font-weight: 600;
	color: #64748b;
}
.vne-wprice-sub {
	font-size: 12px;
	color: #64748b;
	margin: 0;
	line-height: 1.45;
}
.vne-wprice-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.vne-wprice-features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 13px;
	line-height: 1.5;
	color: #334155;
}
.vne-wprice-features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.vne-wprice-features li svg {
	width: 16px;
	height: 16px;
	color: #e11d48;
	flex-shrink: 0;
	margin-top: 2px;
}
.vne-wprice-features li.is-disabled {
	color: #94a3b8;
	text-decoration: line-through;
	font-size: 12px;
}
.vne-btn-outline-price {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	color: #0f172a;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.2s ease;
}
.vne-btn-outline-price:hover {
	border-color: #e11d48;
	color: #e11d48;
	background: #fff1f2;
}

/* Wedding Lookbook Gallery Grid */
.vne-wedding-lookbook-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 30px;
}
@media (min-width: 640px) {
	.vne-wedding-lookbook-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.vne-wedding-lookbook-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.vne-wgallery-card {
	position: relative;
	height: 360px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.vne-wgallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.vne-wgallery-card:hover img {
	transform: scale(1.08);
}
.vne-wgallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.2) 60%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	color: #ffffff;
}
.vne-wgallery-cat {
	font-size: 10px;
	font-weight: 800;
	color: #f43f5e;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}
.vne-wgallery-overlay h4 {
	font-size: 16px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 6px;
	line-height: 1.35;
}
.vne-wgallery-overlay p {
	font-size: 12px;
	color: #fecdd3;
	margin: 0;
	line-height: 1.4;
}

/* Wedding Lead Section & Hotline */
.vne-wedding-lead-section {
	background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
	color: #ffffff;
}
.vne-wedding-hotline-box {
	margin-top: 25px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
}
.vne-wedding-hotline-box p {
	font-size: 13px;
	color: #fecdd3;
	margin: 0 0 6px 0;
}
.vne-wedding-call-link {
	font-size: 20px;
	font-weight: 900;
	color: #fb7185;
	text-decoration: none;
	display: inline-block;
}
.vne-wedding-call-link:hover {
	color: #ffffff;
}

/* ==========================================================================
   12. GYM, FITNESS & YOGA SCHEDULE
   ========================================================================== */
.vne-gym-stats-bar {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 35px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.vne-gstat-item {
	text-align: center;
	color: #ffffff;
}

.vne-gstat-item strong {
	display: block;
	font-size: 24px;
	font-weight: 900;
	color: #f59e0b;
}

.vne-gstat-item span {
	font-size: 12px;
	opacity: 0.85;
}

.vne-schedule-table-wrap {
	overflow-x: auto;
	margin-top: 30px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid #e2e8f0;
}

.vne-schedule-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	font-size: 14px;
}

.vne-schedule-table th {
	background: #0f172a;
	color: #ffffff;
	padding: 16px 20px;
	font-weight: 700;
	white-space: nowrap;
}

.vne-schedule-table td {
	padding: 16px 20px;
	border-bottom: 1px solid #f1f5f9;
	vertical-align: middle;
}

.vne-time-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: #0f172a;
}

.vne-session-tag {
	font-size: 11px;
	color: #64748b;
	margin-top: 2px;
}

.vne-class-box {
	padding: 10px 14px;
	border-radius: 8px;
	border-left: 3px solid #cbd5e1;
}

.vne-class-box h4 {
	font-size: 13px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 2px;
}

.vne-class-box span {
	font-size: 11px;
	color: #64748b;
}

.vne-class-box.is-yoga { background: #fdf4ff; border-left-color: #d946ef; }
.vne-class-box.is-pilates { background: #eff6ff; border-left-color: #3b82f6; }
.vne-class-box.is-cardio { background: #fef2f2; border-left-color: #ef4444; }
.vne-class-box.is-kickbox { background: #fff7ed; border-left-color: #f97316; }
.vne-class-box.is-pump { background: #f0fdf4; border-left-color: #22c55e; }
.vne-class-box.is-zumba { background: #fefce8; border-left-color: #eab308; }
.vne-class-box.is-special { background: #faf5ff; border-left-color: #8b5cf6; }

.vne-btn-sched-book {
	background: #0f172a;
	color: #ffffff;
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.vne-btn-sched-book:hover {
	background: #dc2626;
}

.vne-trainers-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 30px;
}

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

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

.vne-trainer-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
}

.vne-trainer-media {
	height: 300px;
	position: relative;
}

.vne-trainer-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vne-trainer-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #dc2626;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 9999px;
}

.vne-trainer-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

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

.vne-trainer-spec {
	font-size: 12px;
	font-weight: 700;
	color: #dc2626;
	margin-bottom: 12px;
}

.vne-trainer-points {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 12px;
	color: #64748b;
	line-height: 1.45;
	flex: 1;
}

/* ==========================================================================
   12. LOGISTICS & FREIGHT TRANSPORT SPECIFIC STYLES
   ========================================================================== */
.vne-hero-logistics {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 132, 199, 0.88) 100%);
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

.vne-hero-logistics::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.25) 0%, transparent 60%);
	pointer-events: none;
}

.vne-logistics-commitments-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 16px;
	margin-top: 35px;
}

.vne-logistics-commit-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 16px 18px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
	text-align: left;
}

.vne-logistics-commit-card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.3);
}

.vne-logistics-commit-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: linear-gradient(135deg, #0284c7, #0369a1);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.vne-logistics-commit-text h4 {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 3px 0;
}

.vne-logistics-commit-text p {
	font-size: 12px;
	color: #cbd5e1;
	margin: 0;
	line-height: 1.4;
}

/* Service cards grid */
.vne-logistics-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.vne-logistics-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.vne-logistics-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(2, 132, 199, 0.12);
	border-color: #bae6fd;
}

.vne-logistics-card-header {
	padding: 24px;
	border-bottom: 1px solid #f1f5f9;
	position: relative;
	background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.vne-logistics-card-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: #e0f2fe;
	color: #0369a1;
	margin-bottom: 10px;
}

.vne-logistics-card-title {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 8px 0;
	line-height: 1.35;
}

.vne-logistics-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.vne-logistics-card-title a:hover {
	color: #0284c7;
}

.vne-logistics-card-price {
	font-size: 18px;
	font-weight: 800;
	color: #0284c7;
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.vne-logistics-card-body {
	padding: 20px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vne-logistics-meta-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vne-logistics-meta-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	padding-bottom: 8px;
	border-bottom: 1px dashed #f1f5f9;
}

.vne-logistics-meta-label {
	color: #64748b;
	display: flex;
	align-items: center;
	gap: 6px;
}

.vne-logistics-meta-val {
	font-weight: 700;
	color: #0f172a;
	text-align: right;
}

.vne-logistics-card-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.55;
	margin: 0;
}

.vne-logistics-card-footer {
	padding: 16px 24px;
	background: #f8fafc;
	border-top: 1px solid #f1f5f9;
	display: flex;
	gap: 10px;
}

/* Route Pricing Section */
.vne-route-table-container {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	overflow-x: auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.vne-route-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	min-width: 650px;
}

.vne-route-table th {
	background: #f8fafc;
	color: #334155;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 16px 20px;
	border-bottom: 2px solid #e2e8f0;
}

.vne-route-table td {
	padding: 16px 20px;
	border-bottom: 1px solid #f1f5f9;
	font-size: 14px;
	color: #334155;
	vertical-align: middle;
}

.vne-route-table tr:hover td {
	background-color: #f0f9ff;
}

.vne-route-name {
	font-weight: 700;
	color: #0f172a;
	display: flex;
	align-items: center;
	gap: 8px;
}

.vne-route-price-tag {
	font-weight: 800;
	color: #0284c7;
}

/* Fleet & Warehouses */
.vne-fleet-tabs {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.vne-fleet-grid,
.vne-warehouse-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.vne-fleet-card,
.vne-warehouse-card {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.vne-fleet-card:hover,
.vne-warehouse-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 24px rgba(2, 132, 199, 0.1);
	border-color: #7dd3fc;
}

.vne-fleet-media,
.vne-warehouse-media {
	height: 200px;
	position: relative;
	overflow: hidden;
}

.vne-fleet-media img,
.vne-warehouse-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.vne-fleet-card:hover .vne-fleet-media img,
.vne-warehouse-card:hover .vne-warehouse-media img {
	transform: scale(1.05);
}

.vne-fleet-badge,
.vne-warehouse-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.85);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 6px;
	backdrop-filter: blur(4px);
}

.vne-fleet-info,
.vne-warehouse-info {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vne-fleet-info h4,
.vne-warehouse-info h4 {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 8px 0;
}

.vne-fleet-info p,
.vne-warehouse-info p {
	font-size: 13px;
	color: #64748b;
	line-height: 1.5;
	margin: 0 0 14px 0;
	flex: 1;
}

.vne-fleet-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.vne-fleet-spec-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	padding: 4px 8px;
	background: #f1f5f9;
	color: #334155;
	border-radius: 6px;
	font-weight: 600;
}

/* Quote Form Container */
.vne-logistics-quote-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 992px) {
	.vne-logistics-quote-wrapper {
		grid-template-columns: 1.2fr 0.8fr;
	}
}

.vne-quote-perks-box {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
	border-radius: 16px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

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

.vne-quote-perk-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(2, 132, 199, 0.25);
	color: #38bdf8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.vne-quote-perk-text h4 {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 4px 0;
}

.vne-quote-perk-text p {
	font-size: 13px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.45;
}

/* ==========================================================================
   13. PET CLINIC & VETERINARY CARE SPECIFIC STYLES
   ========================================================================== */
.vne-hero-pet {
	background: linear-gradient(135deg, rgba(120, 53, 15, 0.94) 0%, rgba(15, 23, 42, 0.9) 100%);
	color: #ffffff;
}

.vne-hero-badge.is-pet {
	background: rgba(254, 243, 199, 0.2);
	color: #fde68a;
	border: 1px solid rgba(253, 230, 138, 0.35);
}

.vne-pet-features-bar {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	justify-content: center;
	padding: 16px 20px;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	color: #fef3c7;
}

.vne-pet-service-card {
	border-color: #fde68a;
	transition: all 0.3s ease;
}

.vne-pet-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(217, 119, 6, 0.12);
	border-color: #d97706;
}

.vne-rcard-icon.is-pet {
	background: #fef3c7;
	color: #d97706;
}

.vne-pet-pricing-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.vne-pet-pricing-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 20px;
}

.vne-table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.vne-custom-pricing-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	min-width: 600px;
}

.vne-custom-pricing-table th {
	background: #f8fafc;
	color: #1e293b;
	font-weight: 700;
	padding: 14px 16px;
	border-bottom: 2px solid #e2e8f0;
	text-align: left;
}

.vne-custom-pricing-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #f1f5f9;
	vertical-align: middle;
	color: #475569;
}

.vne-custom-pricing-table tr:hover td {
	background-color: #f8fafc;
}

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

.vne-btn-sched-book {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 6px;
	background: #0f172a;
	color: #ffffff;
	border: none;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.vne-btn-sched-book:hover {
	background: #0284c7;
	color: #ffffff;
	transform: translateY(-1px);
}

/* ==========================================================================
   14. AUTO GARAGE SPECIFIC STYLES
   ========================================================================== */
.vne-hero-garage {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(185, 28, 28, 0.88) 100%);
	color: #ffffff;
}

.vne-hero-badge.is-garage {
	background: rgba(239, 68, 68, 0.2);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.35);
}

.vne-garage-features-bar {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	justify-content: center;
	padding: 16px 20px;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	color: #fecaca;
}

.vne-garage-service-card {
	border-color: #fecaca;
	transition: all 0.3s ease;
}

.vne-garage-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(220, 38, 38, 0.15);
	border-color: #dc2626;
}

.vne-process-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all 0.3s ease;
}

.vne-process-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.vne-process-num {
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vne-process-title {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
}

.vne-process-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.55;
	margin: 0;
}

/* ==========================================================================
   15. B2B CORPORATE SPECIFIC STYLES
   ========================================================================== */
.vne-hero-b2b {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 58, 138, 0.9) 100%);
	color: #ffffff;
}

.vne-hero-badge.is-b2b {
	background: rgba(59, 130, 246, 0.2);
	color: #93c5fd;
	border: 1px solid rgba(147, 197, 253, 0.35);
}

.vne-b2b-features-bar {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	justify-content: center;
	padding: 16px 20px;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	color: #dbeafe;
}

.vne-rcard-icon.is-b2b {
	background: #eff6ff;
	color: #2563eb;
}

.vne-b2b-service-card {
	border-color: #bfdbfe;
	transition: all 0.3s ease;
}

.vne-b2b-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
	border-color: #2563eb;
}

.vne-client-logo-item {
	transition: all 0.25s ease;
	cursor: default;
}

.vne-client-logo-item:hover {
	background: #e2e8f0;
	transform: translateY(-2px);
}

.vne-case-card {
	transition: all 0.3s ease;
}

.vne-case-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   17. SECURITY & GUARD SERVICES (DỊCH VỤ AN NINH & BẢO VỆ)
   ========================================================================== */
.vne-hero-security {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 58, 138, 0.92) 50%, rgba(15, 23, 42, 0.98) 100%);
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

.vne-hero-security::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 75% 25%, rgba(217, 119, 6, 0.18) 0%, transparent 55%);
	pointer-events: none;
}

.vne-security-commitments-bar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 40px;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 22px 24px;
	box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.35);
}

.vne-sec-commit-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 4px 0;
}

.vne-sec-commit-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(217, 119, 6, 0.18);
	border: 1px solid rgba(245, 158, 11, 0.35);
	color: #f59e0b;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vne-sec-commit-text strong {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.35;
	margin-bottom: 2px;
}

.vne-sec-commit-text span {
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.4;
	display: block;
}

/* Security Services Grid */
.vne-security-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

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

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

.vne-security-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.vne-security-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.12);
	border-color: #cbd5e1;
}

.vne-security-media {
	position: relative;
	height: 190px;
	overflow: hidden;
	background: #0f172a;
}

.vne-security-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

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

.vne-security-badge-target {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.88);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: #fcd34d;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 9999px;
	border: 1px solid rgba(252, 211, 77, 0.3);
	letter-spacing: 0.3px;
	max-width: calc(100% - 24px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

.vne-security-title {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1.35;
}

.vne-security-title a {
	color: #0f172a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.vne-security-title a:hover {
	color: #1d4ed8;
}

.vne-security-desc {
	font-size: 13px;
	color: #64748b;
	line-height: 1.55;
	margin-bottom: 16px;
}

.vne-security-specs {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 12px 14px;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	font-size: 12px;
}

.vne-sec-spec-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}

.vne-sec-spec-label {
	color: #64748b;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.vne-sec-spec-val {
	color: #0f172a;
	font-weight: 700;
	text-align: right;
}

.vne-security-features {
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 12px;
	color: #475569;
}

.vne-security-features li {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	line-height: 1.45;
}

.vne-security-features li svg {
	color: #10b981;
	flex-shrink: 0;
	margin-top: 1px;
}

.vne-btn-security-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 11px 16px;
	border-radius: 8px;
	background: #0f172a;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	transition: all 0.2s ease;
	margin-top: auto;
	text-decoration: none;
	border: 1px solid #0f172a;
	cursor: pointer;
}

.vne-btn-security-action:hover {
	background: #1d4ed8;
	border-color: #1d4ed8;
	color: #ffffff;
}

/* Training Standards Section */
.vne-training-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

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

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

.vne-training-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.vne-training-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1d4ed8, #f59e0b);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vne-training-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px -4px rgba(15, 23, 42, 0.08);
	border-color: #93c5fd;
}

.vne-training-card:hover::before {
	opacity: 1;
}

.vne-training-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 800;
	color: #1d4ed8;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	padding: 4px 10px;
	border-radius: 9999px;
	margin-bottom: 14px;
	align-self: flex-start;
}

.vne-training-title {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
	line-height: 1.35;
}

.vne-training-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 13px;
	color: #475569;
	line-height: 1.5;
}

.vne-training-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.vne-training-list li svg {
	color: #10b981;
	flex-shrink: 0;
	margin-top: 2px;
}

/* 5-Step Deployment Process */
.vne-deployment-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

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

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

.vne-deployment-step-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 22px 18px;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vne-deployment-step-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 22px -2px rgba(15, 23, 42, 0.08);
	border-color: #f59e0b;
}

.vne-step-num {
	font-size: 26px;
	font-weight: 900;
	color: #cbd5e1;
	line-height: 1;
	margin-bottom: 10px;
	font-family: monospace;
	letter-spacing: -1px;
}

.vne-deployment-step-card:hover .vne-step-num {
	color: #f59e0b;
}

.vne-step-title {
	font-size: 15px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1.35;
}

.vne-step-desc {
	font-size: 12.5px;
	color: #64748b;
	line-height: 1.55;
}

.vne-security-consult-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 16px 20px;
	margin-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}

.vne-security-consult-card .tel-num {
	font-size: 18px;
	font-weight: 800;
	color: #fcd34d;
	text-decoration: none;
}

/* ==========================================================================
   18. MOBILE RESPONSIVE OPTIMIZATION & TOUCH TARGETS (>= 48PX)
   ========================================================================== */
@media (max-width: 768px) {
	.vne-btn-order-dish,
	.vne-btn-table-book,
	.vne-btn-sched-book,
	.vne-btn-doctor-select,
	.vne-btn-fitting-book,
	.vne-btn-zalo-quick,
	.vne-btn-emergency-call {
		min-height: 48px;
		min-width: 48px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 12px 18px;
		font-size: 13px;
		touch-action: manipulation;
	}

	.vne-hero-actions-row .vne-btn {
		width: 100%;
	}

	.vne-calc-grid-2 {
		grid-template-columns: 1fr !important;
	}
}

/* ==========================================================================
   19. KEYBOARD ACCESSIBILITY & FOCUS VISIBLE ENHANCEMENTS
   ========================================================================== */
.vne-niche-tab-btn:focus-visible,
.vne-menu-tab-btn:focus-visible,
.vne-time-chip:focus-visible,
.vne-time-slot:focus-visible,
.vne-quick-tag:focus-visible,
.vne-ba-range:focus-visible,
.vne-calc-box input:focus-visible,
.vne-calc-box select:focus-visible {
	outline: 2px solid var(--primary-color, #0f4c81);
	outline-offset: 2px;
	box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.25);
}

/* ==========================================================================
   20. WEDDING STUDIO & LUXURY BRIDAL (STUDIO CƯỚI & ÁO CƯỚI VIP - LAYOUT-WEDDING.PHP)
   ========================================================================== */

/* Scoped Palette & Romantic Typography */
.vne-layout-wedding {
	--wedding-primary: #e11d48;
	--wedding-rose-gold: #e2a578;
	--wedding-rose-gold-dark: #b45309;
	--wedding-blush: #fff1f2;
	--wedding-blush-soft: #fff5f5;
	--wedding-accent: #fb7185;
	--wedding-dark: #1c1917;
	--wedding-serif: 'Playfair Display', 'Cormorant Garamond', 'Cinzel', Georgia, serif;
}

/* 1. Hero Section */
.vne-hero-wedding {
	background: linear-gradient(135deg, rgba(28, 25, 23, 0.92) 0%, rgba(225, 29, 72, 0.82) 60%, rgba(159, 18, 57, 0.9) 100%);
	color: #ffffff;
	position: relative;
	overflow: hidden;
	padding: 100px 0 130px;
}

.vne-hero-wedding::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 75% 30%, rgba(251, 113, 133, 0.25) 0%, transparent 60%);
	pointer-events: none;
}

.vne-hero-wedding .vne-hero-badge {
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(254, 205, 211, 0.4);
	color: #fff1f2;
	font-weight: 700;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 20px rgba(225, 29, 72, 0.25);
}

.vne-hero-wedding .vne-hero-badge::before {
	background-color: #fda4af;
	box-shadow: 0 0 0 0 rgba(251, 113, 133, 0.7);
	animation: vneGlowPulseRose 2s infinite ease-in-out;
}

.vne-hero-wedding .vne-hero-title {
	font-family: var(--wedding-serif), 'Inter', serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: #ffffff;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
	margin-bottom: 22px;
}

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

.vne-hero-wedding .vne-hero-subtitle {
	font-size: 17px;
	color: #ffe4e6;
	line-height: 1.8;
	max-width: 820px;
	margin: 0 auto 35px;
}

/* 4 Core Commitments */
.vne-wedding-commitments {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 45px;
	text-align: left;
}

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

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

.vne-wcommit-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transition: transform var(--transition-normal), background var(--transition-fast), border-color var(--transition-fast);
}

.vne-wcommit-item:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(254, 205, 211, 0.45);
}

.vne-wcommit-icon {
	font-size: 24px;
	width: 46px;
	height: 46px;
	min-width: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(225, 29, 72, 0.25);
	border: 1px solid rgba(251, 113, 133, 0.35);
}

.vne-wcommit-text strong {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.35;
	margin-bottom: 2px;
}

.vne-wcommit-text p {
	font-size: 12px;
	color: #fecdd3;
	line-height: 1.4;
	margin: 0;
}

/* 2. Wedding Packages Grid (CPT: dich_vu_cuoi) */
.vne-wedding-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 30px;
}

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

.vne-wedding-card {
	background: #ffffff;
	border: 1px solid #ffe4e6;
	border-radius: 20px !important;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(225, 29, 72, 0.06);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	position: relative;
}

.vne-wedding-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 36px rgba(225, 29, 72, 0.14);
	border-color: #fda4af;
}

.vne-wedding-card.is-featured {
	border: 2px solid #fb7185;
	box-shadow: 0 10px 30px rgba(225, 29, 72, 0.12);
}

.vne-wedding-media {
	height: 320px;
	position: relative;
	overflow: hidden;
	background: #1c1917;
}

.vne-wedding-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vne-wedding-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #e11d48;
	font-size: 11.5px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 9999px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	letter-spacing: 0.02em;
	border: 1px solid rgba(225, 29, 72, 0.15);
}

.vne-wedding-tag-featured {
	position: absolute;
	top: 16px;
	right: 16px;
	background: linear-gradient(135deg, #f59e0b, #e11d48);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: 9999px;
	box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.vne-wedding-body {
	padding: 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.vne-wedding-title {
	font-family: var(--wedding-serif), 'Inter', serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #1c1917;
	margin-bottom: 10px;
}

.vne-wedding-title a {
	color: #1c1917;
	text-decoration: none;
	transition: color 0.2s ease;
}

.vne-wedding-title a:hover {
	color: #e11d48;
}

.vne-wedding-desc {
	font-size: 13.5px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 18px;
}

.vne-wedding-meta-list {
	background: #fff5f5;
	border: 1px solid #ffe4e6;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 12.5px;
}

.vne-wmeta-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #475569;
	line-height: 1.45;
}

.vne-wmeta-icon {
	font-size: 14px;
	flex-shrink: 0;
	margin-top: 1px;
}

.vne-wedding-price-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 12px 0;
	border-top: 1px dashed #fecdd3;
	margin-bottom: 20px;
}

.vne-wprice-label {
	font-size: 13px;
	color: #64748b;
	font-weight: 500;
}

.vne-wprice-val {
	font-size: 22px;
	font-weight: 800;
	color: #e11d48;
	letter-spacing: -0.01em;
}

.vne-wedding-actions {
	display: flex;
	gap: 10px;
	margin-top: auto;
}

.vne-btn-booking-quick {
	flex: 1;
	background: linear-gradient(135deg, #e11d48 0%, #be185d 100%);
	color: #ffffff;
	font-weight: 700;
	font-size: 13px;
	padding: 11px 18px;
	border-radius: 10px;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(225, 29, 72, 0.28);
	transition: all 0.25s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.vne-btn-booking-quick:hover {
	background: linear-gradient(135deg, #be185d 0%, #9f1239 100%);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(225, 29, 72, 0.38);
}

/* 3. Pricing Table (Silver, Gold, Diamond) */
.vne-wedding-pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 40px;
	align-items: stretch;
}

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

.vne-wprice-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px !important;
	padding: 38px 28px 32px;
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.vne-wprice-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}

/* Gold Package (Highlighted Best Seller) */
.vne-wprice-card.is-highlighted {
	border: 2px solid transparent !important;
	background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, #f59e0b 0%, #fb7185 50%, #e11d48 100%);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	box-shadow: 0 20px 45px -8px rgba(225, 29, 72, 0.22);
	transform: translateY(-4px);
	z-index: 2;
}

@media (min-width: 992px) {
	.vne-wprice-card.is-highlighted {
		transform: translateY(-6px) scale(1.025);
	}
	.vne-wprice-card.is-highlighted:hover {
		transform: translateY(-10px) scale(1.035);
	}
}

/* Rose Gold Ribbon */
.vne-wprice-ribbon {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #f59e0b 0%, #fb7185 50%, #e11d48 100%);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 5px 18px;
	border-radius: 9999px;
	box-shadow: 0 4px 14px rgba(225, 29, 72, 0.4);
	white-space: nowrap;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

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

.vne-wprice-header {
	text-align: center;
	padding-bottom: 24px;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 24px;
}

.vne-wprice-tier {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #e11d48;
	display: inline-block;
	margin-bottom: 6px;
}

.vne-wprice-name {
	font-family: var(--wedding-serif), 'Inter', serif;
	font-size: 21px;
	font-weight: 700;
	color: #1c1917;
	margin-bottom: 14px;
}

.vne-wprice-amount {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	margin-bottom: 10px;
}

.vne-wprice-amount strong {
	font-size: 38px;
	font-weight: 800;
	color: #1c1917;
	line-height: 1;
	letter-spacing: -0.02em;
}

.vne-wprice-card.is-highlighted .vne-wprice-amount strong {
	color: #e11d48;
}

.vne-wprice-amount span {
	font-size: 18px;
	font-weight: 600;
	color: #64748b;
}

.vne-wprice-sub {
	font-size: 12.5px;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

.vne-wprice-body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.vne-wprice-features {
	list-style: none;
	margin: 0 0 28px 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 13px;
	color: #334155;
	flex: 1;
}

.vne-wprice-features li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	line-height: 1.5;
}

.vne-wprice-features li svg {
	color: #e11d48;
	flex-shrink: 0;
	margin-top: 2px;
}

.vne-wprice-features li.is-disabled {
	color: #94a3b8;
	text-decoration: line-through;
	opacity: 0.65;
}

.vne-btn-outline-price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 13px 20px;
	border-radius: 12px;
	border: 2px solid #e11d48;
	color: #e11d48;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
	margin-top: auto;
}

.vne-btn-outline-price:hover {
	background: #e11d48;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(225, 29, 72, 0.3);
}

/* 4. Wedding Lookbook & Album Showcase */
.vne-wedding-lookbook-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 35px;
}

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

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

.vne-wgallery-card {
	position: relative;
	height: 380px;
	border-radius: 20px !important;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	background: #1c1917;
}

.vne-wgallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vne-wgallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(28, 25, 23, 0.94) 0%, rgba(28, 25, 23, 0.45) 55%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px 24px;
	color: #ffffff;
	transition: opacity 0.3s ease;
}

.vne-wgallery-cat {
	display: inline-block;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fda4af;
	background: rgba(225, 29, 72, 0.3);
	border: 1px solid rgba(251, 113, 133, 0.35);
	padding: 4px 10px;
	border-radius: 9999px;
	margin-bottom: 10px;
	align-self: flex-start;
}

.vne-wgallery-overlay h4 {
	font-family: var(--wedding-serif), 'Inter', serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
	color: #ffffff;
	margin-bottom: 6px;
}

.vne-wgallery-overlay p {
	font-size: 12.5px;
	color: #cbd5e1;
	line-height: 1.5;
	margin: 0;
}

/* 5. Lead Capture Section */
.vne-wedding-lead-section {
	background: linear-gradient(135deg, #fff1f2 0%, #ffffff 50%, #fff5f5 100%) !important;
	color: #1c1917 !important;
}

.vne-wedding-lead-section .vne-lead-title {
	color: #1c1917;
	font-family: var(--wedding-serif), 'Inter', serif;
}

.vne-wedding-lead-section .vne-lead-subtitle {
	color: #64748b;
}

.vne-wedding-lead-section .vne-bullet-item {
	color: #334155;
}

.vne-wedding-lead-section .vne-bullet-item svg {
	color: #e11d48;
}

.vne-wedding-hotline-box {
	margin-top: 30px;
	padding: 18px 22px;
	background: #ffffff;
	border: 1px solid #fecdd3;
	border-radius: 14px;
	box-shadow: 0 4px 16px rgba(225, 29, 72, 0.08);
}

.vne-wedding-hotline-box p {
	font-size: 13px;
	color: #64748b;
	margin-bottom: 6px;
}

.vne-wedding-call-link {
	font-size: 18px;
	font-weight: 800;
	color: #e11d48;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s ease;
}

.vne-wedding-call-link:hover {
	color: #9f1239;
}

/* Mobile Responsive Optimization for Wedding Studio */
@media (max-width: 768px) {
	.vne-wedding-actions {
		flex-direction: column;
	}
	.vne-wedding-actions .vne-btn {
		width: 100%;
	}
	.vne-wprice-card.is-highlighted {
		transform: none !important;
	}
	.vne-wedding-media {
		height: 260px;
	}
	.vne-wgallery-card {
		height: 300px;
	}
}


