/* ==========================================================================
   Van Chuyen Nghe An - main stylesheet
   ========================================================================== */

:root {
	--navy: #10265c;
	--navy-dark: #0a1a42;
	--navy-light: #1c3a82;
	--orange: #f5821f;
	--orange-dark: #d96c0f;
	--bg-gray: #f4f6fb;
	--text: #2b2f3a;
	--text-light: #6b7280;
	--white: #ffffff;
	--border: #e5e8f0;
	--radius: 10px;
	--container-width: 1200px;
	--shadow: 0 4px 16px rgba(16, 38, 92, 0.08);
}

* { box-sizing: border-box; }

/* Icon system */
.vcna-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; flex-shrink: 0; }
.vcna-icon.icon-sm { width: 14px; height: 14px; }
.vcna-icon.icon-lg { width: 30px; height: 30px; }
.vcna-icon.icon-hero { width: 90px; height: 90px; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--text);
	/* Thu nghiem: nen gradient xanh tu ngay duoi header, nhat dan xuong trang khi cuon. */
	background: linear-gradient(180deg, #dce9fb 0%, #ecf3fc 18%, #f8fafd 38%, #ffffff 60%);
	background-attachment: scroll;
	line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; color: var(--navy); }

p { margin: 0 0 1em; }

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 22px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 14px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-orange { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
	background: var(--navy-dark);
	color: #cfd8ef;
	font-size: 13px;
}
.topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 8px 0;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-left a,
.topbar-address { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left a { color: #cfd8ef; }
.topbar-left a:hover { color: var(--orange); }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-mobile-row { display: none; }
.topbar-track { color: #cfd8ef; display: inline-flex; align-items: center; gap: 6px; }
.topbar-track:hover { color: var(--orange); }
.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	color: var(--white);
}
.social-icon .vcna-icon { width: 13px; height: 13px; }
.social-icon:hover { background: var(--orange); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 20px;
}
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--orange);
}
.site-logo-icon .vcna-icon { width: 36px; height: 36px; }
.site-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.site-logo-line1 { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .5px; }
.site-logo-line2 { font-size: 19px; font-weight: 800; color: var(--orange); letter-spacing: .5px; }
.site-logo-tagline { font-size: 9.5px; color: var(--text-light); letter-spacing: .3px; margin-top: 1px; }
a.site-logo-image, div.site-logo-image { display: flex; align-items: center; height: 56px; max-height: 56px; overflow: hidden; }
.site-logo-image .custom-logo-link { display: flex; align-items: center; }
.site-logo-image img,
.site-logo-image img.custom-logo {
	max-height: 56px !important;
	height: auto !important;
	width: auto !important;
	max-width: 220px !important;
	object-fit: contain;
	display: block;
}
.site-logo--mobile-nav.site-logo-image,
.mobile-nav-header .site-logo-image { height: 40px; max-height: 40px; }
.site-logo--mobile-nav.site-logo-image img,
.mobile-nav-header .site-logo-image img {
	max-height: 40px !important;
	max-width: 160px !important;
}

.main-nav {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
}
.main-nav-list {
	display: flex;
	gap: 18px;
	flex-wrap: nowrap;
	white-space: nowrap;
}
.main-nav-list li { position: relative; }
.main-nav-list a {
	display: block;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .3px;
	color: var(--navy);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
}
.main-nav-list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: var(--shadow);
	min-width: 220px;
	padding: 8px 0;
	z-index: 200;
	flex-direction: column;
	gap: 0;
}
.main-nav-list li:hover > .sub-menu,
.main-nav-list li:focus-within > .sub-menu { display: flex; }
.main-nav-list .sub-menu li { width: 100%; }
.main-nav-list .sub-menu a {
	padding: 9px 16px;
	border-bottom: none;
	white-space: nowrap;
}
.main-nav-list .sub-menu a:hover { background: var(--bg-gray); color: var(--orange); }
.main-nav-list .menu-item-has-children > a::after {
	content: " ▾";
	font-size: 10px;
}
.main-nav-list a:hover,
.main-nav-list .current-menu-item > a { color: var(--orange); border-color: var(--orange); }

.site-header-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header-phone {
	display: flex;
	align-items: center;
	gap: 0;
	color: var(--navy);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 5px;
	transition: gap .25s ease, border-color .2s ease, background .2s ease, padding .25s ease;
}
.header-phone:hover,
.header-phone:focus-within {
	gap: 8px;
	padding: 5px 16px 5px 5px;
	border-color: var(--orange);
	background: var(--bg-gray);
}
.header-phone-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 1.15;
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	white-space: nowrap;
	transition: max-width .25s ease, opacity .2s ease;
}
.header-phone:hover .header-phone-text,
.header-phone:focus-within .header-phone-text {
	max-width: 160px;
	opacity: 1;
}
.header-phone strong { color: var(--navy); font-size: 16px; font-weight: 800; letter-spacing: .2px; }
.header-phone small { color: var(--text-light); font-size: 11px; margin-top: 1px; }
.icon-phone-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	animation: vcna-ring 2.6s ease-in-out infinite;
	transform-origin: 50% 20%;
}
.icon-phone-circle .vcna-icon { width: 16px; height: 16px; }
.header-cta-btn { padding: 10px 18px; font-size: 14px; font-weight: 700; white-space: nowrap; }
@keyframes vcna-ring {
	0%, 82%, 100% { transform: rotate(0deg); }
	85% { transform: rotate(14deg); }
	88% { transform: rotate(-11deg); }
	91% { transform: rotate(8deg); }
	94% { transform: rotate(-5deg); }
	97% { transform: rotate(0deg); }
}

.mobile-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	color: var(--navy);
}

/* ==========================================================================
   Header search
   ========================================================================== */
.header-search { position: relative; flex-shrink: 0; }
.header-search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--navy);
	cursor: pointer;
}
.header-search-toggle:hover,
.header-search-toggle.is-active { border-color: var(--orange); color: var(--orange); }
.header-search-toggle .vcna-icon { width: 17px; height: 17px; }

.header-search-form {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	align-items: center;
	gap: 6px;
	width: 280px;
	max-width: calc(100vw - 32px);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	box-shadow: var(--shadow);
	padding: 8px;
	z-index: 210;
}
.header-search-form.is-open { display: flex; }
.header-search-input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 8px 10px;
	font-size: 13px;
	font-family: inherit;
	color: var(--text);
}
.header-search-input:focus { outline: none; border-color: var(--orange); }
.header-search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border-radius: 8px;
	border: none;
	background: var(--orange);
	color: var(--white);
	cursor: pointer;
}
.header-search-submit:hover { background: var(--orange-dark); }
.header-search-submit .vcna-icon { width: 15px; height: 15px; }
.mobile-menu-toggle .vcna-icon { width: 26px; height: 26px; }

/* Mobile-only nav drawer parts - hidden on desktop, shown inside the
   @media (max-width: 768px) block below */
.mobile-nav-header,
.mobile-nav-close,
.mobile-nav-contact,
.mobile-nav-overlay,
.mobile-bottom-nav { display: none; }

/* Nut back-to-top: hien tren ca desktop lan mobile, vi tri thay doi theo
   breakpoint (mobile can day len tren de khong de thanh bottom-nav) */
.back-to-top {
	position: fixed;
	right: 18px;
	bottom: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(16, 38, 92, .3);
	z-index: 790;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
}
.back-to-top:hover { background: var(--navy-dark); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top .vcna-icon { width: 20px; height: 20px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	background: var(--navy);
	padding: 42px 0 70px;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-bg-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
}
.hero-bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #ffffff 0%, #ffffff 34%, rgba(255,255,255,.96) 42%, rgba(255,255,255,.55) 52%, rgba(16,38,92,.05) 62%, rgba(16,38,92,0) 72%);
}
.hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
}
.hero-content { max-width: 540px; }
.hero h1 {
	font-weight: 900;
	letter-spacing: .5px;
	margin-bottom: 5px;
}
.hero-title-line1 { display: block; font-size: 26px; color: var(--navy); }
.hero-title-line2 { display: block; font-size: 44px; }
.hero-highlight { color: var(--orange); }
.hero-subtitle { font-size: 16px; color: var(--text-light); margin-bottom: 5px; }

.hero-service-icons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 5px;
}
.hero-service-icons li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 11px;
	font-weight: 600;
	color: var(--navy);
	text-transform: uppercase;
	letter-spacing: .2px;
	box-shadow: var(--shadow);
}
.hero-service-icons li span { color: var(--navy); }
.hero-service-icons li .vcna-icon { width: 22px; height: 22px; }

.hero-benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 20px;
	margin-bottom: 5px;
}
.hero-benefits li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; }
.hero-benefits .check {
	display: inline-flex; align-items: center; justify-content: center;
	width: 18px; height: 18px; border-radius: 50%;
	background: var(--orange); color: var(--white); font-size: 11px; flex-shrink: 0;
}


/* ==========================================================================
   Stats bar
   ========================================================================== */
.stats-bar {
	position: relative;
	z-index: 2;
	margin-top: -28px;
	margin-bottom: 0;
}
.stats-bar-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	padding: 16px 28px;
	background: var(--navy);
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(10, 26, 66, 0.22);
}
.stat-item { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--white); text-align: left; position: relative; }
.stat-item::before {
	content: "";
	position: absolute;
	left: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 32px;
	background: rgba(255, 255, 255, .18);
}
.stat-item:first-child::before { display: none; }
.stat-icon {
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	color: var(--orange);
}
.stat-icon .vcna-icon { width: 38px; height: 38px; stroke-width: 1.75; }
.stat-item strong { display: block; font-size: 18px; font-weight: 800; }
.stat-item small { color: #b9c4e6; font-size: 11px; }

/* ==========================================================================
   Sections (generic)
   ========================================================================== */
.section { padding: 56px 0; }
.section:nth-of-type(even) { background: var(--bg-gray); }
.section-title {
	text-align: center;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: .5px;
	position: relative;
	padding-bottom: 12px;
}
.section-title::after {
	content: "";
	position: absolute;
	bottom: 0; left: 50%;
	transform: translateX(-50%);
	width: 56px; height: 3px;
	background: var(--orange);
	border-radius: 2px;
}
.section-title--left { text-align: left; padding-bottom: 10px; }
.section-title--sm { font-size: 21px; }
.section-title--left::after { left: 0; transform: none; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 30px; }
.section-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; gap: 16px; flex-wrap: wrap; }
.section-header-row--routes { position: relative; justify-content: flex-start; align-items: flex-end; gap: 12px; margin-bottom: 20px; flex-wrap: nowrap; }
.section-header-row--routes .section-title { white-space: nowrap; margin-bottom: 0; }
.section-subtitle--inline { position: absolute; left: 68px; bottom: -4px; margin-bottom: 0; text-align: left; font-size: 12px; line-height: 1; white-space: nowrap; }
.section-link { color: var(--orange); font-weight: 700; font-size: 14px; white-space: nowrap; }
.section-cta { text-align: center; margin-top: 30px; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-section { padding-top: 20px; padding-bottom: 20px; }
.two-col-section,
.process-section,
.fleet-section,
.news-section,
.testimonials-partners-section { padding: 28px 0; }
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.service-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: visible;
	box-shadow: var(--shadow);
	transition: transform .2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card-media {
	position: relative;
	height: 140px;
}
.service-card-media-inner {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--orange), var(--navy));
	overflow: hidden;
	border-radius: var(--radius) var(--radius) 0 0;
}
.service-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.service-card-icon {
	position: absolute;
	left: 14px;
	bottom: -18px;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid var(--white);
	box-shadow: 0 4px 10px rgba(10, 26, 66, .25);
	z-index: 2;
}
.service-card-icon .vcna-icon { width: 18px; height: 18px; }
.service-card-body h3 {
	margin: 0 0 6px;
	color: var(--navy);
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .2px;
}
.service-card-body { padding: 22px 16px 16px; }
.service-card-body p { font-size: 13px; color: var(--text-light); margin-bottom: 9px; line-height: 1.4; }
.card-link { display: inline-flex; align-items: center; gap: 4px; color: var(--orange); font-weight: 700; font-size: 13px; }
.card-link .vcna-icon, .section-link .vcna-icon { width: 13px; height: 13px; }
.section-link { display: inline-flex; align-items: center; gap: 4px; }

/* ==========================================================================
   Two column section: routes + why-us
   ========================================================================== */
.two-col-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: start;
}
.routes-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.route-card {
	display: block;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .2s ease;
	color: inherit;
	text-decoration: none;
}
.route-card:hover { transform: translateY(-3px); }
.route-card-media {
	height: 110px;
	background: linear-gradient(135deg, var(--navy-light), var(--navy));
}
.route-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.route-card-body { padding: 9px 12px 10px; display: flex; flex-direction: column; gap: 3px; }
.route-card-body strong { font-size: 13px; }
.route-card-body small { color: var(--text-light); font-size: 11px; }

.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.why-us-item {
	display: flex; flex-direction: column; gap: 5px; align-items: flex-start;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 13px 13px;
	box-shadow: var(--shadow);
}
.why-us-icon {
	color: var(--orange);
	flex-shrink: 0;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(237, 108, 2, .1);
	display: flex; align-items: center; justify-content: center;
}
.why-us-icon .vcna-icon { width: 21px; height: 21px; }
.why-us-item strong { display: block; font-size: 13px; }
.why-us-item small { color: var(--text-light); font-size: 11px; line-height: 1.3; }

/* ==========================================================================
   Process timeline
   ========================================================================== */
.process-timeline {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	position: relative;
}
.process-timeline::before {
	content: "";
	position: absolute;
	top: 21px; left: 5%; right: 5%;
	height: 2px;
	background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
	z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-number {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--white);
	border: 2px solid var(--orange);
	color: var(--orange);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 10px;
}
.process-step-number .vcna-icon { width: 20px; height: 20px; }
.process-step strong { display: block; font-size: 13px; margin-bottom: 4px; }
.process-step small { color: var(--text-light); font-size: 11px; }

/* ==========================================================================
   Fleet grid + Contact CTA row
   ========================================================================== */
.fleet-cta-grid {
	display: grid;
	grid-template-columns: 2.1fr 1fr;
	gap: 24px;
	align-items: stretch;
}
.fleet-col { display: flex; flex-direction: column; }
.fleet-col .fleet-grid { flex: 1; }
.fleet-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}
.fleet-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	text-align: center;
	box-shadow: var(--shadow);
}
.fleet-card-media {
	height: 90px;
	background: var(--bg-gray);
	display: flex; align-items: center; justify-content: center;
	color: var(--navy);
	overflow: hidden;
}
.fleet-card-media .vcna-icon { width: 28px; height: 28px; }
.fleet-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fleet-card strong { display: block; font-size: 12px; padding: 8px 4px; }

/* ==========================================================================
   Tin tuc van tai (trang chu)
   ========================================================================== */
.news-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 18px;
}
.news-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	transition: transform .2s ease;
}
.news-card:hover { transform: translateY(-3px); }
.news-card-media {
	display: block;
	height: 140px;
	background: var(--bg-gray);
}
.news-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-media-placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	color: var(--navy);
}
.news-card-media-placeholder .vcna-icon { width: 30px; height: 30px; }
.news-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.news-card-body h3 { font-size: 14px; line-height: 1.4; margin: 0; }
.news-card-body h3 a { color: var(--navy); }
.news-card-body h3 a:hover { color: var(--orange); }
.news-card-body p {
	font-size: 12px; color: var(--text-light); line-height: 1.5;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-card-body .card-link { margin-top: auto; }

/* ==========================================================================
   Contact CTA box
   ========================================================================== */
.contact-cta-box-inner {
	background: linear-gradient(120deg, var(--navy), var(--navy-light));
	border-radius: var(--radius);
	color: var(--white);
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}
.contact-cta-box-inner h3 { color: var(--white); font-size: 18px; margin-bottom: 4px; line-height: 1.25; }
.contact-cta-box-inner p { color: #cfd8ef; margin: 0; font-size: 13px; }
.contact-cta-phone { display: flex; align-items: center; gap: 10px; }
.contact-cta-phone a { color: var(--white); font-size: 20px; font-weight: 800; }
.contact-cta-phone small { display: block; color: #cfd8ef; font-size: 12px; }
.contact-cta-box-inner .btn { align-self: flex-start; }
.icon-headset { color: var(--orange); }
.icon-headset .vcna-icon { width: 26px; height: 26px; }

/* ==========================================================================
   Testimonials + Partners
   ========================================================================== */
.testimonials-slider { display: flex; align-items: center; gap: 12px; }
.testimonials-track {
	flex: 1;
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding-bottom: 6px;
}
.testimonials-track::-webkit-scrollbar { height: 6px; }
.testimonials-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.testimonials-track .testimonial-card { flex: 0 0 calc(25% - 14px); scroll-snap-align: start; }
.testimonial-nav {
	flex-shrink: 0;
	width: 38px; height: 38px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--white);
	box-shadow: var(--shadow);
	display: flex; align-items: center; justify-content: center;
	color: var(--navy);
	cursor: pointer;
}
.testimonial-nav:hover { background: var(--navy); color: var(--white); }
.testimonial-nav .vcna-icon { width: 16px; height: 16px; }
.testimonial-nav--prev .vcna-icon { transform: rotate(180deg); }

.testimonial-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 18px;
	box-shadow: var(--shadow);
}
.stars { color: var(--orange); font-size: 14px; margin-bottom: 8px; }
.testimonial-card p { font-size: 13px; color: var(--text); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.avatar-placeholder {
	width: 34px; height: 34px; border-radius: 50%;
	background: var(--bg-gray);
	display: flex; align-items: center; justify-content: center;
	color: var(--text-light);
}
.avatar-placeholder .vcna-icon { width: 16px; height: 16px; }
.testimonial-author strong { display: block; font-size: 13px; }
.testimonial-author small { color: var(--text-light); font-size: 11px; }
.testimonial-note { font-size: 11px; color: var(--text-light); font-style: italic; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-dark); color: #b9c4e6; }
.site-logo--footer .site-logo-line1 { color: #cfd8ef; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1.2fr;
	gap: 28px;
	padding: 48px 20px 30px;
}
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { color: #b9c4e6; font-size: 13px; }
.footer-col a:hover { color: var(--orange); }
.footer-col-about .site-logo--footer { margin-bottom: 16px; }
.footer-company-name { color: #fff; font-size: 13.5px; font-weight: 700; margin: 0 0 10px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-contact-list li { display: flex; gap: 8px; font-size: 13px; align-items: flex-start; }
.footer-contact-list li span { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-list .vcna-icon { width: 15px; height: 15px; }
.footer-map-embed { border-radius: 8px; overflow: hidden; height: 130px; }
.footer-map-embed iframe { width: 100%; height: 100%; border: 0; }
.footer-gov-badge { display: block; margin-top: 14px; width: 100%; }
.footer-gov-badge img { width: 100%; height: auto; display: block; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner {
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
	padding: 16px 20px;
	font-size: 12px;
	color: #8b96bd;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.footer-bottom-links a { color: #8b96bd; position: relative; }
.footer-bottom-links a:hover { color: var(--orange); }
.footer-bottom-links a::before { content: '·'; position: absolute; left: -9px; color: #4a5378; }
.footer-bottom-links a:first-child::before { content: none; }

/* ==========================================================================
   Generic page/post content (index.php fallback)
   ========================================================================== */
.generic-content { padding: 50px 0; min-height: 40vh; }

/* ==========================================================================
   Breadcrumb (Rank Math wrapper reset)
   ========================================================================== */
.vcna-breadcrumb { font-size: 12px; color: var(--text-light); margin-bottom: 14px; }
.vcna-breadcrumb a { color: var(--text-light); }
.vcna-breadcrumb a:hover { color: var(--orange); }
.vcna-breadcrumb p { margin: 0; }
.vcna-breadcrumb-sep { margin: 0 8px; color: var(--border); }

/* ==========================================================================
   Entry content prose (dung chung cho single.php + page.php)
   ========================================================================== */
.entry-content { color: var(--text); font-size: 15.5px; line-height: 1.75; }
.entry-content h2 { font-size: 22px; margin-top: 1.6em; }
.entry-content h3 { font-size: 18px; margin-top: 1.4em; }
.entry-content h4 { font-size: 16px; margin-top: 1.2em; }
.entry-content p { margin-bottom: 1.1em; }
.entry-content ul,
.entry-content ol { margin: 0 0 1.1em; padding-left: 22px; }
.entry-content li { margin-bottom: 6px; }
.entry-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--orange-dark); }
/* Cac component dung lai (CTA box, related-service-link...) duoc nhung truc tiep vao noi dung Post
   (khac voi Page Template dat ngoai .entry-content) nen bi luat ".entry-content a" o tren de mau/gach chan -
   khoi phuc lai dung style goc cua tung component khi nam trong .entry-content. */
.entry-content .btn { text-decoration: none; }
.entry-content .btn-primary { color: var(--white); }
.entry-content .btn-primary:hover { color: var(--white); }
.entry-content .btn-outline { color: var(--navy); }
.entry-content .related-service-link { color: var(--navy); text-decoration: none; }
.entry-content .related-service-link:hover { color: var(--white); }
.entry-content .contact-cta-phone a { color: var(--white); text-decoration: none; }
.entry-content .faq-item summary { text-decoration: none; }
.entry-content strong { color: var(--navy); }
.entry-content blockquote {
	margin: 1.5em 0;
	padding: 14px 20px;
	border-left: 4px solid var(--orange);
	background: var(--bg-gray);
	border-radius: 0 8px 8px 0;
	color: var(--text-light);
	font-style: italic;
}
/* Restyle Easy Table of Contents (ez-toc) auto-insert de dong bo giao dien theme thay vi
   theme "Grey" mac dinh cua plugin - quyet dinh 2026-07-10, ap dung chung cho moi bai. */
#ez-toc-container {
	background: var(--white) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius) !important;
	box-shadow: var(--shadow);
	padding: 18px 22px !important;
	margin: 0 0 1.6em !important;
}
#ez-toc-container .ez-toc-title { color: var(--navy) !important; font-size: 16px; font-weight: 700; margin: 0; }
/* Title + nut toggle nam trong 2 the <p> rieng (block mac dinh) nen bi roi xuong dong -
   ep container thanh flex de 2 dong cung hang, sua tiep o dot 2 (2026-07-10). */
#ez-toc-container .ez-toc-title-container { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 12px; }
#ez-toc-container .ez-toc-title-container p { margin: 0 !important; }
#ez-toc-container a.ez-toc-toggle.ez-toc-btn {
	background: transparent !important;
	border: 1px solid var(--border) !important;
	border-radius: 6px !important;
	color: var(--navy) !important;
	box-shadow: none !important;
	outline: none !important;
}
#ez-toc-container a.ez-toc-toggle.ez-toc-btn:hover,
#ez-toc-container a.ez-toc-toggle.ez-toc-btn:focus { border-color: var(--orange) !important; color: var(--orange) !important; box-shadow: none !important; outline: none !important; }
#ez-toc-container .ez-toc-icon-toggle-span svg { fill: currentColor !important; color: inherit !important; }
/* Span bao icon (.ez-toc-js-icon-con) co border rieng do plugin tu chen inline/default -
   day chinh la "vien thua" long ben trong nut (khac voi border cua chinh the <a>) - bo di. */
#ez-toc-container .ez-toc-js-icon-con { border: none !important; }
#ez-toc-container nav.ez-toc-v2_0_85 { border: none !important; background: transparent !important; }
#ez-toc-container a { color: var(--navy) !important; text-decoration: none !important; }
#ez-toc-container a:hover { color: var(--orange) !important; }
#ez-toc-container .ez-toc-counter,
#ez-toc-container li { border-color: var(--border) !important; }

.entry-content img:not(.emoji) { display: block; border-radius: 8px; margin: 1em auto; max-width: 100% !important; width: auto !important; height: auto !important; }
.entry-content figure { margin: 1.5em 0; }
.entry-content figcaption { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 6px; }
/* Emoji Unicode (WordPress tu chuyen ✅⭐... thanh <img class="emoji">) - giu nguyen kich thuoc
   nho bang chu (1em), khong de bi rule ep kich thuoc anh o tren lam vo/phong to. */
.entry-content img.emoji {
	display: inline !important;
	height: 1em !important;
	width: 1em !important;
	max-width: 1em !important;
	margin: 0 .07em !important;
	vertical-align: -0.1em !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: none !important;
	padding: 0 !important;
}
/* WP "wp-caption" shortcode cu gan cung width theo kich thuoc goc anh (vd style="width:2000px")
   khien khung bao ngoai tran ra khoi cot noi dung - ep lai theo container. */
.entry-content .wp-caption { max-width: 100% !important; width: auto !important; margin: 1.5em auto; }
.entry-content .wp-caption img { max-width: 100% !important; width: auto !important; height: auto !important; margin: 0 auto; }
.entry-content .wp-caption-text { font-size: 12px; color: var(--text-light); text-align: center; padding: 6px 0 0; margin: 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 14px; }
.entry-content table th,
.entry-content table td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.entry-content table th { background: var(--bg-gray); color: var(--navy); font-weight: 700; }
.entry-content iframe { max-width: 100%; }
.entry-content hr { border: none; border-top: 1px solid var(--border); margin: 2em 0; }

/* ==========================================================================
   Single post
   ========================================================================== */
.post-hero { background: var(--bg-gray); padding: 18px 0 20px; border-bottom: 1px solid var(--border); }
.post-hero h1 { font-size: 30px; margin: 0; }

.post-body-wrap { padding: 34px 0 10px; }
.post-featured-image { max-width: 900px; margin: 0 auto 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: var(--bg-gray); }
.post-featured-image img { width: 100% !important; height: 100% !important; max-width: 100%; object-fit: cover; display: block; }

.post-content-inner { max-width: 780px; margin: 0 auto; }

.post-tags { max-width: 780px; margin: 30px auto 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.post-tags a { background: var(--bg-gray); color: var(--navy); font-size: 12px; padding: 6px 12px; border-radius: 20px; }
.post-tags a:hover { background: var(--navy); color: var(--white); }

.post-cta-wrap { max-width: 780px; margin: 34px auto 0; }
.post-cta-image { display: block; width: 100%; height: auto; }

.related-posts-section { background: var(--bg-gray); padding: 44px 0; margin-top: 40px; }
.related-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-posts-grid .post-card { background: var(--white); }

/* ==========================================================================
   Page template
   ========================================================================== */
.page-hero { background: var(--bg-gray); padding: 28px 0 30px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: 28px; margin: 0; }
.page-body-wrap { padding: 34px 0 60px; }
.page-content-inner { max-width: 860px; margin: 0 auto; }
.page-featured-image { max-width: 900px; margin: 0 auto 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: var(--bg-gray); }
.page-featured-image img { width: 100% !important; height: 100% !important; max-width: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   About page (Gioi thieu)
   ========================================================================== */
.about-intro-section .container.about-intro { max-width: 860px; }
.about-intro p { color: var(--text); font-size: 15px; line-height: 1.75; }
.contact-section .stats-bar-inner { margin: 0; }

.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px 22px;
	box-shadow: var(--shadow);
	text-align: center;
}
.value-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px; height: 54px;
	border-radius: 50%;
	background: rgba(237, 108, 2, .1);
	color: var(--orange);
	margin-bottom: 14px;
}
.value-card-icon .vcna-icon { width: 26px; height: 26px; }
.value-card h3 { font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-light); line-height: 1.55; margin: 0; }

.strengths-grid { grid-template-columns: repeat(4, 1fr); }
.strengths-grid .why-us-item { text-align: left; }

.contact-cta-standalone { max-width: 720px; margin: 0 auto; }

.page-rating-wrap { text-align: center; }
.page-rating-label { font-weight: 700; color: var(--navy); margin: 0 0 8px; font-size: 15px; }
.page-rating-wrap .kk-star-ratings { display: inline-block; }

/* ==========================================================================
   Contact page (Lien he)
   ========================================================================== */
.contact-intro-text { max-width: 720px; margin: 0 auto 28px; text-align: center; color: var(--text-light); font-size: 15px; }

.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-info-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 24px 18px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.contact-info-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: rgba(237, 108, 2, .1);
	color: var(--orange);
	margin-bottom: 10px;
}
.contact-info-icon .vcna-icon { width: 22px; height: 22px; }
.contact-info-card strong { font-size: 13px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .3px; }
.contact-info-card a,
.contact-info-value { font-size: 15px; font-weight: 700; color: var(--navy); word-break: break-word; }
.contact-info-card a:hover { color: var(--orange); }
.contact-info-card small { color: var(--text-light); font-size: 12px; }

.contact-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contact-detail-text p { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.contact-social { display: flex; gap: 10px; margin: 18px 0 22px; }
.social-icon--outline {
	width: 38px; height: 38px;
	background: transparent;
	border: 1px solid var(--border);
	color: var(--navy);
}
.social-icon--outline:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.social-icon--outline .vcna-icon { width: 16px; height: 16px; }
.contact-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 340px; }
.contact-map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Price table page (Bang gia thue xe tai)
   ========================================================================== */
.section-subtitle--left-note { text-align: left; margin: -4px 0 18px; font-size: 13px; }

.price-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; }
.price-table { width: 100%; table-layout: fixed; border-collapse: collapse; font-size: 14px; background: var(--white); min-width: 560px; }
.price-table th, .price-table td { border: 1px solid var(--border); padding: 12px 14px; text-align: left; word-break: break-word; }
.price-table thead th { background: var(--navy); color: var(--white); font-weight: 700; }
.price-table tbody tr:nth-child(even) { background: var(--bg-gray); }
/* Bang chi co 2 cot, noi dung ngan: bo min-width tren mobile de khong phai vuot ngang moi doc duoc. */
@media (max-width: 600px) {
	.price-table:has(thead tr th:nth-child(2):last-child) { min-width: 0; font-size: 13px; }
	.price-table:has(thead tr th:nth-child(2):last-child) th,
	.price-table:has(thead tr th:nth-child(2):last-child) td { padding: 10px 8px; }
}

.price-note-box {
	background: var(--bg-gray);
	border-left: 3px solid var(--orange);
	border-radius: 8px;
	padding: 16px 20px;
	font-size: 13px;
	color: var(--text-light);
}
.price-note-box strong { display: block; color: var(--navy); margin-bottom: 8px; font-size: 14px; }
.price-note-box ul { padding-left: 18px; list-style: disc; }
.price-note-box li { margin-bottom: 4px; line-height: 1.5; }

.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }

.fees-breakdown-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fees-breakdown-col {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 22px 24px;
}
.fees-breakdown-col h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	margin: 0 0 14px;
	color: var(--navy);
}
.fees-breakdown-col h3 .vcna-icon { width: 20px; height: 20px; }
.fees-breakdown-col--yes h3 { color: var(--navy); }
.fees-breakdown-col--no h3 { color: var(--text-light); }
.fees-breakdown-col ul { list-style: none; margin: 0; padding: 0; }
.fees-breakdown-col li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.fees-breakdown-col li:last-child { border-bottom: none; }
.fee-check { color: #1a8a4a; font-weight: 700; flex-shrink: 0; }
.fee-cross { color: #c0392b; font-weight: 700; flex-shrink: 0; }

.spec-image-wrap { max-width: 560px; margin: 0 auto; text-align: center; }
.spec-image-wrap img { border-radius: var(--radius); box-shadow: var(--shadow); }
.spec-image-wrap small { display: block; margin-top: 10px; color: var(--text-light); font-size: 12px; }

.truck-spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 14px; }
.truck-spec-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform .2s ease;
}
.truck-spec-card:hover { transform: translateY(-4px); }
.truck-spec-card img { width: 100%; height: auto; display: block; }
.truck-spec-caption { padding: 14px 18px; border-top: 1px solid var(--border); }
.truck-spec-caption strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 3px; }
.truck-spec-caption span { font-size: 13px; color: var(--text-light); }
.truck-spec-note { text-align: center; font-size: 12.5px; color: var(--text-light); margin: 0; }

.related-services-row { display: flex; flex-wrap: wrap; gap: 12px; }
.related-service-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 30px;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	box-shadow: var(--shadow);
}
.related-service-link:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.related-service-link .vcna-icon { width: 13px; height: 13px; }

/* ==========================================================================
   FAQ page (Cau hoi thuong gap)
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	font-weight: 700;
	color: var(--navy);
	font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-toggle-icon { flex-shrink: 0; color: var(--orange); transition: transform .2s ease; }
.faq-item[open] summary .faq-toggle-icon { transform: rotate(180deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-answer { padding: 4px 20px 20px; color: var(--text-light); font-size: 14px; line-height: 1.7; }
.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--orange); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ==========================================================================
   Company review list (Cong ty van tai Nghe An)
   ========================================================================== */
.company-list { display: flex; flex-direction: column; gap: 18px; max-width: 860px; margin: 0 auto; }
.company-card {
	display: flex;
	gap: 18px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 22px 24px;
}
.company-rank {
	flex-shrink: 0;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	display: flex; align-items: center; justify-content: center;
	font-weight: 800;
	font-size: 13px;
}
.company-card-body h3 { font-size: 17px; margin-bottom: 8px; }
.company-card-body h3 a { color: var(--navy); }
.company-card-body h3 a:hover { color: var(--orange); }
.company-card-body p { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 10px; }
.company-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.company-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text); }
.company-contact li span:first-child { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.company-contact .vcna-icon { width: 15px; height: 15px; }
.company-contact a { color: var(--navy); font-weight: 600; }
.company-contact a:hover { color: var(--orange); }

/* ==========================================================================
   Chuyen nha tron goi page
   ========================================================================== */
.intro-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin: 16px 0 22px; }
.intro-checklist li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text); }
.intro-checklist .check { color: var(--orange); font-weight: 800; flex-shrink: 0; }
.about-intro-media { margin-top: 20px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-intro-media img { width: 100%; display: block; }

.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.area-pill {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 30px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	box-shadow: var(--shadow);
}
.area-pill .vcna-icon { width: 13px; height: 13px; color: var(--orange); }
.area-note { font-size: 13px; color: var(--text-light); }
a.area-pill { text-decoration: none; transition: background .15s ease, color .15s ease; }
a.area-pill:hover { background: var(--navy); color: var(--white); }
a.area-pill:hover .vcna-icon { color: var(--white); }

.process-timeline--3 { grid-template-columns: repeat(3, 1fr); }
.process-timeline--4 { grid-template-columns: repeat(4, 1fr); }
.process-timeline--8 { grid-template-columns: repeat(4, 1fr); row-gap: 30px; }
.process-timeline--8::before { display: none; }
.process-timeline--5 { grid-template-columns: repeat(5, 1fr); }

.intro-checklist--1col { grid-template-columns: 1fr; }
.intro-checklist a { color: var(--orange); font-weight: 600; }
.intro-checklist a:hover { text-decoration: underline; }

.delivery-modes-grid { grid-template-columns: 1fr 1fr; }
.fleet-capacity-grid { grid-template-columns: repeat(3, 1fr); }

.work-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-gallery--3 { grid-template-columns: repeat(3, 1fr); }
.work-gallery-item { margin: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.work-gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.work-gallery-item figcaption { padding: 8px 10px; font-size: 12px; color: var(--text-light); text-align: center; }

.price-table-title { font-size: 15px; color: var(--navy); margin: 22px 0 10px; }
.price-table-title:first-of-type { margin-top: 0; }
.price-note-inline { font-size: 12px; color: var(--text-light); font-style: italic; }

.commitment-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.commitment-list li {
	display: flex; align-items: center; gap: 12px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px 18px;
	font-size: 14px;
	color: var(--text);
	box-shadow: var(--shadow);
}
.commitment-list .vcna-icon { color: var(--orange); width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================================
   Archive (category/tag)
   ========================================================================== */
.archive-hero { background: var(--bg-gray); padding: 28px 0 30px; border-bottom: 1px solid var(--border); }
.archive-hero h1 { font-size: 26px; margin-bottom: 6px; }
.archive-hero p { color: var(--text-light); font-size: 14px; margin: 0; }

.archive-body-wrap { padding: 34px 0 50px; }
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.post-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	transition: transform .2s ease;
}
.post-card:hover { transform: translateY(-3px); }
.post-card-media { display: block; height: 170px; background: var(--bg-gray); overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-media-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--border); }
.post-card-body { padding: 16px 18px; display: flex; flex-direction: column; flex: 1; }
.post-card-body h2 { font-size: 16px; line-height: 1.4; margin-bottom: 8px; }
.post-card-body h2 a { color: var(--navy); }
.post-card-body h2 a:hover { color: var(--orange); }
.post-card-body p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.post-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-light); border-top: 1px solid var(--border); padding-top: 12px; margin-top: auto; }
.post-card-cat-link { color: var(--orange); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: .2px; }
.post-card-cat-link:hover { color: var(--orange-dark); }
.post-card-readmore { display: inline-flex; align-items: center; gap: 4px; color: var(--orange); font-weight: 700; }
.post-card-readmore .vcna-icon { width: 12px; height: 12px; }

.archive-empty { text-align: center; padding: 60px 20px; color: var(--text-light); }

.vcna-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 40px; }
.vcna-pagination a,
.vcna-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid var(--border);
	color: var(--navy);
	font-size: 13px;
	font-weight: 600;
}
.vcna-pagination a:hover { border-color: var(--orange); color: var(--orange); }
.vcna-pagination .current { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Da bo hide-rule kk Star Ratings (2026-07-11): du lieu vote spam o bai 254 va 915 da duoc
   xoa sach (reset ve 0 vote qua DB), va "Exclude Categories" trong Settings cua plugin da duoc
   go het de rating hien thi tu dong tro lai o moi bai viet. */

/* ==========================================================================
   Blog sidebar layout (dung chung cho single.php + archive.php)
   ========================================================================== */
.blog-layout-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.blog-main-col { min-width: 0; overflow-x: hidden; }
.entry-content { overflow-x: hidden; }
.entry-content table:not(.price-table) { display: block; overflow-x: auto; }
.blog-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 90px; }

.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.sidebar-widget-cta { background: transparent; border: none; padding: 0; box-shadow: none; }
.sidebar-widget-cta .contact-cta-box-inner { padding: 22px; }
.sidebar-widget-title { font-size: 15px; color: var(--navy); margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block; }

.sidebar-category-list li { border-bottom: 1px solid var(--border); }
.sidebar-category-list li:last-child { border-bottom: none; }
.sidebar-category-list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 2px; font-size: 13.5px; color: var(--text); }
.sidebar-category-list a:hover { color: var(--orange); }
.sidebar-category-list a span { flex-shrink: 0; background: var(--bg-gray); color: var(--text-light); font-size: 11px; padding: 2px 8px; border-radius: 10px; }

.sidebar-recent-list li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar-recent-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-recent-thumb { flex-shrink: 0; width: 62px; height: 62px; border-radius: 8px; overflow: hidden; background: var(--bg-gray); display: block; }
.sidebar-recent-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-recent-thumb-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--border); }
.sidebar-recent-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 12.5px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 4px; }
.sidebar-recent-title:hover { color: var(--orange); }
.sidebar-recent-cat { display: inline-block; color: var(--orange); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .2px; }
.sidebar-recent-cat:hover { color: var(--orange-dark); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
	.hero-bg-overlay { background: linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,.9) 55%, #fff 75%); }
	.hero-content { max-width: 100%; }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.two-col-grid { grid-template-columns: 1fr; }
	.routes-grid { grid-template-columns: repeat(2, 1fr); }
	.process-timeline { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
	.process-timeline::before { display: none; }
	.fleet-cta-grid { grid-template-columns: 1fr; }
	.fleet-grid { grid-template-columns: repeat(5, 1fr); }
	.news-grid { grid-template-columns: repeat(2, 1fr); }
	.testimonials-track .testimonial-card { flex: 0 0 calc(50% - 9px); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.related-posts-grid { grid-template-columns: repeat(2, 1fr); }
	.archive-grid { grid-template-columns: repeat(2, 1fr); }
	.value-cards { grid-template-columns: 1fr; }
	.strengths-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-info-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-detail-grid { grid-template-columns: 1fr; }
	.contact-map-embed { height: 280px; }
	.type-grid { grid-template-columns: repeat(2, 1fr); }
	.fees-breakdown-grid { grid-template-columns: 1fr; }
	.truck-spec-grid { grid-template-columns: 1fr; }
	.company-card { flex-direction: column; gap: 10px; }
	.process-timeline--3 { grid-template-columns: 1fr; row-gap: 24px; }
	.process-timeline--3::before { display: none; }
	.process-timeline--4 { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
	.process-timeline--8 { grid-template-columns: repeat(2, 1fr); }
	.process-timeline--5 { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
	.fleet-capacity-grid { grid-template-columns: repeat(2, 1fr); }
	.delivery-modes-grid { grid-template-columns: 1fr; }
	.work-gallery { grid-template-columns: repeat(2, 1fr); }
	.intro-checklist { grid-template-columns: 1fr; }
	.blog-layout-grid { grid-template-columns: 1fr; }
	.blog-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
	.blog-sidebar .sidebar-widget,
	.blog-sidebar .sidebar-widget-cta { flex: 1 1 260px; }
}

@media (max-width: 768px) {
	.topbar-left { display: none; }
	.topbar-mobile-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex: 1 1 auto;
		gap: 8px;
		padding-left: 6px;
	}
	.topbar-mobile-icons { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
	.topbar-mobile-row .social-icon { width: 22px; height: 22px; flex-shrink: 0; }
	.topbar-mobile-row .social-icon .vcna-icon { width: 11px; height: 11px; }
	.topbar-brand-mobile {
		display: inline-flex;
		align-items: center;
		color: #fff;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .2px;
	}
	.topbar-track,
	.topbar-right .social-icon { display: none; }

	.site-header {
		position: sticky;
		top: 0;
		transition: transform .28s ease;
	}
	.site-header.is-header-hidden { transform: translateY(-100%); }

	.site-header-inner { flex-wrap: wrap; padding: 8px 14px; }
	.mobile-menu-toggle { display: flex; padding: 4px; }
	.mobile-menu-toggle .vcna-icon { width: 22px; height: 22px; }
	.header-phone { display: none; }
	.site-header-cta { display: none; }
	.site-header-inner { gap: 8px; }
	.header-search { margin-left: auto; }
	.header-search-toggle { width: 34px; height: 34px; }

	a.site-logo-image, div.site-logo-image { height: 40px; max-height: 40px; }
	.site-logo-image img,
	.site-logo-image img.custom-logo {
		max-height: 40px !important;
		max-width: 150px !important;
	}
	.site-logo-icon .vcna-icon { width: 28px; height: 28px; }
	.site-logo-line1 { font-size: 11px; }
	.site-logo-line2 { font-size: 16px; }
	.site-logo-tagline { display: none; }

	.hero-service-icons {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 6px;
	}
	.hero-service-icons li { padding: 8px 4px; font-size: 9.5px; gap: 3px; }
	.hero-service-icons li .vcna-icon { width: 18px; height: 18px; }

	/* Mobile off-canvas nav drawer */
	body.mobile-nav-is-open { overflow: hidden; }
	/* An thanh bottom-nav + back-to-top khi drawer dang mo, tranh de len phan duoi cua menu */
	body.mobile-nav-is-open .mobile-bottom-nav,
	body.mobile-nav-is-open .back-to-top { display: none; }

	.mobile-nav-overlay {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(9, 16, 38, .55);
		z-index: 900;
		opacity: 0;
		transition: opacity .25s ease;
	}
	.mobile-nav-overlay.is-open { display: block; opacity: 1; }

	.main-nav {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: min(320px, 86vw);
		max-width: 100%;
		background: var(--white);
		z-index: 950;
		padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0));
		display: flex;
		flex-direction: column;
		overflow-y: auto;
		transform: translateX(-100%);
		transition: transform .3s ease;
		box-shadow: 10px 0 30px rgba(9, 16, 38, .18);
	}
	.main-nav.is-open { transform: translateX(0); }

	.mobile-nav-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding-bottom: 16px;
		margin-bottom: 16px;
		border-bottom: 1px solid var(--border);
	}
	.site-logo--mobile-nav { gap: 8px; }
	.site-logo--mobile-nav .site-logo-icon .vcna-icon { width: 28px; height: 28px; }
	.site-logo--mobile-nav .site-logo-line1 { font-size: 11px; }
	.site-logo--mobile-nav .site-logo-line2 { font-size: 16px; }
	.mobile-nav-close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		flex-shrink: 0;
		border-radius: 50%;
		border: none;
		background: var(--bg-gray);
		color: var(--navy);
		cursor: pointer;
	}
	.mobile-nav-close:hover { background: var(--orange); color: var(--white); }
	.mobile-nav-close .vcna-icon { width: 16px; height: 16px; }

	.main-nav-list {
		flex: 1 1 auto;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 10px;
		padding: 0;
		overflow: visible;
		white-space: normal;
	}
	.main-nav-list li { width: 100%; }
	.main-nav-list a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		background: var(--bg-gray);
		border-radius: 12px;
		padding: 13px 14px;
		border-bottom: none;
		font-size: 13px;
	}
	.main-nav-list .menu-item-has-children > a::after,
	.main-nav-list a::after {
		content: '';
		width: 7px;
		height: 7px;
		flex-shrink: 0;
		border-right: 2px solid var(--text-light);
		border-top: 2px solid var(--text-light);
		transform: rotate(45deg);
	}
	.main-nav-list a:hover,
	.main-nav-list .current-menu-item > a {
		background: var(--navy);
		color: var(--white);
		border-color: transparent;
	}
	.main-nav-list a:hover::after,
	.main-nav-list .current-menu-item > a::after { border-color: var(--white); }

	.main-nav-list .sub-menu {
		display: none;
		position: static;
		box-shadow: none;
		border: none;
		background: transparent;
		min-width: 0;
		padding: 8px 0 2px 10px;
		margin-top: 6px;
		gap: 8px;
	}
	.main-nav-list li.sub-menu-open > .sub-menu { display: flex; }
	.main-nav-list .sub-menu a { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; }
	.main-nav-list .sub-menu .current-menu-item > a { background: var(--navy); color: var(--white); border-color: transparent; }

	.mobile-nav-contact {
		display: block;
		flex-shrink: 0;
		margin-top: 16px;
		width: 100%;
		background: linear-gradient(120deg, var(--navy), var(--navy-light));
		border-radius: 16px;
		padding: 16px;
	}
	.mobile-nav-contact-label {
		display: flex;
		align-items: center;
		gap: 8px;
		color: #cfd8ef;
		font-size: 12px;
		margin-bottom: 10px;
	}
	.mobile-nav-contact-label .mobile-nav-contact-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		flex-shrink: 0;
		border-radius: 50%;
		background: var(--orange);
		color: var(--white);
		animation: vcna-ring 2.6s ease-in-out infinite;
		transform-origin: 50% 20%;
	}
	.mobile-nav-contact-icon .vcna-icon { width: 13px; height: 13px; }
	.mobile-nav-contact-phone {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		background: rgba(255, 255, 255, .1);
		border: 1px solid rgba(255, 255, 255, .25);
		border-radius: 12px;
		padding: 14px 10px;
		color: var(--white);
		font-size: 26px;
		font-weight: 800;
		letter-spacing: .3px;
	}
	.hero h1 { font-size: 30px; }
	.hero { padding-bottom: 48px; }
	.hero-benefits { grid-template-columns: 1fr; }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.stats-bar-inner { grid-template-columns: repeat(2, 1fr); margin: 0 8px; padding: 16px 18px; }
	.stat-item:nth-child(3)::before { display: none; }
	.routes-grid { grid-template-columns: 1fr; }
	.why-us-grid { grid-template-columns: 1fr; }
	.section-title--sm { font-size: 17px; white-space: normal; }
	.section-header-row--routes { flex-wrap: wrap; }
	.section-header-row--routes .section-title::after { width: 32px; }
	.section-subtitle--inline {
		left: 44px;
		max-width: calc(100% - 44px);
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.why-us-item { align-items: center; text-align: center; }
	.why-us-item strong,
	.why-us-item small { text-align: center; }
	.process-timeline { grid-template-columns: repeat(2, 1fr); }
	.fleet-grid { grid-template-columns: repeat(3, 1fr); }
	.testimonials-track .testimonial-card { flex: 0 0 85%; }
	.testimonial-nav { display: none; }
	.footer-grid { grid-template-columns: 1fr; }
	.contact-cta-box-inner { text-align: center; align-items: center; }
	.contact-cta-box-inner .btn { align-self: center; }

	.post-hero h1 { font-size: 24px; }
	.page-hero h1 { font-size: 22px; }
	.archive-hero h1 { font-size: 20px; }
	.related-posts-grid { grid-template-columns: 1fr; }
	.archive-grid { grid-template-columns: 1fr; }
	.blog-sidebar { flex-direction: column; }
	.blog-sidebar .sidebar-widget,
	.blog-sidebar .sidebar-widget-cta { flex: 1 1 auto; }

	/* Thanh thao tac nhanh co dinh o day man hinh mobile */
	body { padding-bottom: 50px; }
	body.mobile-nav-is-open { padding-bottom: 0; }

	.mobile-bottom-nav {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 800;
		background: var(--navy);
		box-shadow: 0 -10px 26px rgba(9, 16, 38, .28);
		padding: 5px 8px calc(5px + env(safe-area-inset-bottom, 0));
		gap: 8px;
	}
	.mobile-bottom-nav-item {
		position: relative;
		flex: 1 1 0;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 6px;
		padding: 7px 4px;
		border-radius: 10px;
		color: #cfd8ef;
		font-size: 11px;
		font-weight: 700;
		text-align: center;
		transition: background .15s ease, transform .12s ease;
	}
	.mobile-bottom-nav-item:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 8px;
		bottom: 8px;
		right: -4px;
		width: 1px;
		background: rgba(255, 255, 255, .14);
	}
	.mobile-bottom-nav-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		border-radius: 50%;
		background: rgba(255, 255, 255, .12);
		flex-shrink: 0;
	}
	.mobile-bottom-nav-icon .vcna-icon { width: 14px; height: 14px; }

	.mobile-bottom-nav-item--call .mobile-bottom-nav-icon { background: rgba(76, 201, 122, .22); color: #4fd47b; }
	.mobile-bottom-nav-item--call { color: #d7f5e2; }
	.mobile-bottom-nav-item--call:active,
	.mobile-bottom-nav-item--call:focus-visible { background: rgba(76, 201, 122, .16); }
	.mobile-bottom-nav-item--call:active .mobile-bottom-nav-icon { background: rgba(76, 201, 122, .4); }

	.mobile-bottom-nav-item--zalo .mobile-bottom-nav-icon { background: rgba(0, 145, 255, .22); color: #4fb2ff; }
	.mobile-bottom-nav-item--zalo { color: #cfe8ff; }
	.mobile-bottom-nav-item--zalo:active,
	.mobile-bottom-nav-item--zalo:focus-visible { background: rgba(0, 145, 255, .16); }
	.mobile-bottom-nav-item--zalo:active .mobile-bottom-nav-icon { background: rgba(0, 145, 255, .4); }

	.mobile-bottom-nav-item--primary {
		background: var(--orange);
		color: var(--white);
	}
	.mobile-bottom-nav-item--primary::after { display: none; }
	.mobile-bottom-nav-item--primary .mobile-bottom-nav-icon { background: rgba(255, 255, 255, .22); color: var(--white); }
	.mobile-bottom-nav-item--primary:active,
	.mobile-bottom-nav-item--primary:focus-visible { background: var(--orange-dark); }

	.mobile-bottom-nav-item:active { transform: scale(.95); }
	.mobile-bottom-nav-item:focus-visible { outline: 2px solid rgba(255, 255, 255, .6); outline-offset: 2px; }

	.back-to-top { bottom: 78px; }
}

/* ==========================================================================
   Policy / legal document pages (Chinh sach nguoi dung, Quy dinh, ...)
   ========================================================================== */
.policy-notes-grid { grid-template-columns: repeat(2, 1fr); }

.policy-list { list-style: none; margin: 0; padding: 0; max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: 28px; }
.policy-item { display: flex; gap: 18px; scroll-margin-top: 100px; }
.policy-item-number {
	flex-shrink: 0;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--white);
	display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-size: 15px;
}
.policy-item-body h2 { font-size: 18px; margin: 4px 0 10px; color: var(--navy); }
.policy-item-body h3 { font-size: 15px; margin: 1.2em 0 8px; color: var(--navy); }
.policy-item-body small { display: block; color: var(--text-light); font-size: 13px; margin-top: -4px; }
.policy-item-body h4 { font-size: 14px; margin: 1.1em 0 6px; color: var(--navy); }

.packing-guide-list { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.packing-guide-item {
	background: var(--bg-gray);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px 18px;
}
.packing-guide-item h4 { margin-top: 0; }
.packing-guide-item ul { margin-bottom: 0; }
.policy-item-body .legal-table { min-width: 900px; font-size: 13.5px; }
.policy-item-body .legal-table td:first-child { text-align: center; width: 40px; }
.policy-item-body p { font-size: 14.5px; line-height: 1.75; color: var(--text); margin-bottom: 1em; }
.policy-item-body ul { margin: 0 0 1em; padding-left: 20px; }
.policy-item-body li { font-size: 14.5px; line-height: 1.7; color: var(--text); margin-bottom: 6px; }
.policy-item-body a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }

.policy-address-box {
	background: var(--bg-gray);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px 20px;
}
.policy-address-box p { margin-bottom: 8px; }
.policy-address-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.policy-address-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text); }
.policy-address-list .vcna-icon { color: var(--orange); width: 18px; height: 18px; flex-shrink: 0; }
.policy-address-list a { color: var(--text); text-decoration: none; }
.policy-address-list a:hover { color: var(--orange); }

@media (max-width: 768px) {
	.policy-notes-grid { grid-template-columns: 1fr; }
	.policy-item { gap: 12px; }
	.policy-item-number { width: 32px; height: 32px; font-size: 13px; }
}
