/* ===== Hero ===== */
.hero { padding: 36px 0 64px; overflow: hidden; }

.hero-image {
	--bleed: max(24px, calc((100vw - var(--container)) / 2 + 24px));
	width: calc(100% + var(--bleed));
	margin-right: calc(var(--bleed) * -1);
}

.eyebrow {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 16px;
}

.hero-content h1 {
	font-size: 46px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--text-dark);
	margin: 0 0 16px;
}

.hero-desc {
	font-size: 16px;
	line-height: 1.6;
	max-width: 480px;
	margin: 0 0 22px;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 24px;
}
.hero-badges_badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--text-dark);
	background: #fff;
	box-shadow: var(--shadow-card);
}
.badge-icon {width: 20px; height: 20px; color: var(--secondary); flex-shrink: 0; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.ph-img {
	background: linear-gradient(135deg, #FDECEC 0%, #FBE9D0 100%);
	border: 1px dashed #E7C3C1;
	color: #B5555A;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	border-radius: var(--radius-md);
	padding: 16px;
}

.ph-hero {
	aspect-ratio: 2/1;
	border-radius: var(--radius-lg) 0 0 var(--radius-lg);
	font-size: 15px;
	min-height: 320px;
	overflow: hidden;
}

/* ===== Cards / Grid ===== */
/* .service-card / .news-card: gộp luôn style "card" chung (bg trắng, viền, bo góc,
đổ bóng, hover nhấc lên) trực tiếp vào từng class — không dùng class .card riêng
nữa vì mỗi card giờ là 1 [col] độc lập trong native Flatsome row. */
.service-card .col-inner,
.news-card .post-item .col-inner {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card .col-inner:hover,
.news-card .post-item .col-inner:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
	border-color: #F7D3D2;
}

.service-card .col-inner { padding: 24px 22px; text-align: center; }
.service-card h3 {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--text-dark);
	margin: 12px 0 6px;
}
.service-card p { font-size: 15px; line-height: 1.55; margin: 0 0 10px; }

.icon-circle {
	width: 65px; height: 65px;
	border-radius: 50%;
	border: 1.5px solid #f1e6c2;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto;
	color: var(--secondary);
	background: #fffbef;
	transition: background .25s ease, transform .25s ease;
}
.icon-circle svg { width: 35px; height: 35px; }
.icon-circle.small { width: 55px; height: 55px; }
.icon-circle.small svg { width: 30px; height: 30px; }
.service-card:hover .icon-circle { background: var(--primary); color: #fff; transform: scale(1.06); }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--primary);
	font-weight: 600;
	font-size: 16px;
	transition: gap .2s ease;
}
.link-arrow:hover { gap: 10px; }

/* ===== Countries ===== */
.country-card{ padding: 0 6px 20px !important; }
.country-card .col-inner{ transition: transform .3s ease; border-radius: var(--radius-sm);overflow: hidden;}
.country-card .col-inner:hover { transform: translateY(-4px); }
.ph-country {
	position: relative;
	padding: 0;
	display: block;
	margin-bottom: 0 !important;
}
.flag {
	position: absolute;
	top: 10px; left: 10px;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.flag img {
	height: 22px !important;
	width: 22px !important;
}
.country-name a {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 22px 10px 10px;
	background: linear-gradient(to top, rgba(20,10,10,0.62), rgba(20,10,10,0));
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-align: left;
}

/* ===== Why choose ===== */
.section_subtitle{
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	margin-top: 20px;
	margin-bottom: 10px;
}
.col.why-item{
	flex-basis: 20%;
	max-width: 50%;
}
.why-box {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}
.why-box.row > .col > .col-inner { height: 100%; position: relative; }
.why-item { text-align: center;     padding-top: 25px !important;    padding-bottom: 25px !important;}
.why-box.row > .col > .col-inner::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -15px;
	border-right: 1px dashed var(--border);
}

.why-box.row > .col:last-child > .col-inner::after {
	display: none;
}
.why-item h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 12px 0 6px;
}
.why-item p {
	font-size: 15px;
	line-height: 1.5;
	margin: 0;
	color: var(--text-body);
}

/* ===== Stats bar ===== */
.stats-bar {
	background: linear-gradient(90deg, var(--primary) 0%, #870704 100%);
	padding: 40px 0;
	margin: 8px 0;
}
.stat-item .col-inner{
	display: flex;
	align-items: center;
	gap: 14px;
	color: #fff;
}
.stat-item p{margin-bottom: 0;}
.stat-icon { width: 30px; height: 30px; flex-shrink: 0; opacity: 0.95; }
.stat-item strong {
	display: block;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.2;
}
.stat-item span {
	font-size: 12.5px;
	font-weight: 500;
	opacity: 0.92;
}

/* ===== News ===== */
.proj .news-card .box-text{width: 100%;}
.news-card .post-item .col-inner { overflow: hidden; height: 100%;}
.news-card .box-text { padding: 16px 18px 18px; width: 60%; }
.news-card .post-item .col-inner .box.box-normal {display: flex;}
.news-card .post-item .box.box-normal .box-image {
	width: 40%;
}
.news-card .post-item .box.box-normal .box-image .image-cover {
	height: 100%;
}
.news-card .post-meta {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 10px;
	opacity: 1;
}
.news-card .box-text .post-title {
	margin: 0;
}
.news-card .box-text .post-title a {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-dark);
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.news-card .box-text .post-title a:hover {
	color: var(--primary);
}
.news-card .from_the_blog_excerpt {
	font-size: 15px; line-height: 1.5; margin: 0 0 8px; 
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.news-card a.button.is-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--secondary);
	font-weight: 600;
	font-size: 16px;
	transition: gap .2s ease;
	margin: 0;
	text-transform: none;
	padding: 0;
	line-height: 1;
	min-height: auto;
}


@media (max-width: 600px){
	.stat-item .col-inner{
		padding-bottom: 15px;
	}
	.why-box{
		max-width: 95% !important;
		justify-content: center;
	}
	.col.why-item{
		flex-basis: 100%;
		max-width: 100%;
	}
	.why-box.row > .col > .col-inner::after {
		border-right: 0;
	}

	.why-box.row > .col > .col-inner::before {
		content: "";
		border-bottom: 1px dashed var(--border);
		position: absolute;
		bottom: -25px;
		width: 100%;
		left: 0;
	}

	.why-box.row > .col:nth-child(5) > .col-inner::before,
	.why-box.row > .col:nth-child(6) > .col-inner::before {
		border: 0;
	}
}