/*
* CHERRY BABYSITTER PHU QUOC – FLATSOME LANDING PAGE
* Dán toàn bộ file này vào cuối flatsome-child/style.css.
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
	--cbpq-blue: #0b6fc2;
	--cbpq-blue-dark: #074c86;
	--cbpq-blue-soft: #edf7ff;
	--cbpq-blue-pale: #f5faff;
	--cbpq-ink: #17324d;
	--cbpq-muted: #60758a;
	--cbpq-white: #ffffff;
	--cbpq-line: #d9ebf8;
	--cbpq-radius: 24px;
	--cbpq-shadow: 0 20px 55px rgba(11, 111, 194, .14);
}

.cbpq-section,
.cbpq-contact-rail {
	font-family: 'Poppins', sans-serif;
	color: var(--cbpq-ink);
}

.cbpq-section .section-content {
	position: relative;
	z-index: 2;
}

.cbpq-section h1,
.cbpq-section h2,
.cbpq-section h3,
.cbpq-section p,
.cbpq-section ul {
	font-family: inherit;
}

.cbpq-section h1,
.cbpq-section h2,
.cbpq-section h3 {
	color: var(--cbpq-ink);
	letter-spacing: -.03em;
}

.cbpq-section h1 {
	max-width: 700px;
	margin: 0 0 24px;
	font-size: clamp(38px, 4.4vw, 68px);
	font-weight: 800;
	line-height: 1.08;
}

.cbpq-section h2 {
	margin: 0 0 20px;
	font-size: clamp(30px, 3.1vw, 48px);
	font-weight: 800;
	line-height: 1.15;
}

.cbpq-section h3 {
	margin: 25px 0 10px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
}

.cbpq-section p,
.cbpq-section li {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}

.cbpq-section p {
	margin-bottom: 16px;
	color: var(--cbpq-muted);
}

.cbpq-cta p {
	color: var(--cbpq-navy) !important;
}

.cbpq-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 16px;
	color: var(--cbpq-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
}

.cbpq-kicker::before {
	width: 30px;
	height: 3px;
	border-radius: 10px;
	background: var(--cbpq-blue);
	content: '';
}

.cbpq-hero {
	overflow: hidden;
	background:
		radial-gradient(circle at 9% 15%, rgba(90, 190, 255, .24), transparent 30%),
		linear-gradient(135deg, #f7fcff 0%, #e7f5ff 100%);
}

.cbpq-hero::before,
.cbpq-hero::after {
	position: absolute;
	border-radius: 50%;
	content: '';
	pointer-events: none;
}

.cbpq-hero::before {
	top: -170px;
	right: -130px;
	width: 430px;
	height: 430px;
	background: rgba(11, 111, 194, .09);
}

.cbpq-hero::after {
	right: 36%;
	bottom: -80px;
	width: 170px;
	height: 170px;
	border: 34px solid rgba(11, 111, 194, .08);
}

.cbpq-lead {
	max-width: 660px;
	margin-bottom: 8px !important;
	color: #47647f !important;
	font-size: 17px !important;
	line-height: 1.85 !important;
}

.cbpq-btn.button {
	min-height: 48px;
	margin: 12px 10px 0 0;
	padding: 0 24px;
	border: 2px solid transparent;
	box-shadow: none;
	font-size: 14px;
	font-weight: 700;
	line-height: 44px;
	text-transform: none;
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.cbpq-btn.button:hover {
	transform: translateY(-2px);
}

.cbpq-btn-primary.button {
	border-color: var(--cbpq-blue);
	background: var(--cbpq-blue) !important;
	color: var(--cbpq-white) !important;
	box-shadow: 0 12px 26px rgba(11, 111, 194, .25);
}

.cbpq-btn-primary.button:hover {
	border-color: var(--cbpq-blue-dark);
	background: var(--cbpq-blue-dark) !important;
}

.cbpq-btn-ghost.button {
	border-color: var(--cbpq-blue);
	background: transparent !important;
	color: var(--cbpq-blue) !important;
}

.cbpq-image {
	position: relative;
	overflow: hidden;
	margin: 0;
	border-radius: var(--cbpq-radius);
	background: #dceffc;
	box-shadow: var(--cbpq-shadow);
}

.cbpq-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform .55s ease;
}

/* UX Builder Image outputs an .img-inner wrapper. Keep the native Image
element while preserving the same crop, radius and hover behavior. */
.cbpq-image > .img-inner,
.cbpq-image .img-inner {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: inherit;
}

.cbpq-image:hover img {
	transform: scale(1.025);
}

.cbpq-image-hero {
	aspect-ratio: 1.03 / 1;
	border: 10px solid rgba(255, 255, 255, .72);
	border-radius: 34px;
	transform: rotate(1.5deg);
}

.cbpq-image-portrait {
	aspect-ratio: 4 / 4.6;
}

.cbpq-copy-card {
	padding: 12px 10px;
}

.cbpq-about-en .cbpq-copy-card {
	padding-left: 26px;
}

.cbpq-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
	margin: 8px 0 20px;
	padding: 0;
	list-style: none;
}

.cbpq-check-list li {
	position: relative;
	margin: 0;
	padding: 13px 14px 13px 44px;
	border: 1px solid var(--cbpq-line);
	border-radius: 14px;
	background: #fff;
	color: var(--cbpq-ink);
	line-height: 1.5;
}

.cbpq-check-list li::before {
	position: absolute;
	top: 13px;
	left: 14px;
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border-radius: 50%;
	background: var(--cbpq-blue);
	color: #fff;
	content: '✓';
	font-size: 12px;
	font-weight: 800;
}

.cbpq-section-heading {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.cbpq-section-heading p {
	margin: 0 auto;
	font-size: 17px;
}

.cbpq-team-row > .col,
.cbpq-stats-row > .col,
.cbpq-blog-row > .col {
	display: flex;
}

.cbpq-team-row .col-inner,
.cbpq-stats-row .col-inner,
.cbpq-blog-row .col-inner {
	width: 100%;
}

.cbpq-person-card {
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--cbpq-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(7, 76, 134, .09);
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
}

.cbpq-person-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--cbpq-shadow);
}

.cbpq-person-card img {
	display: block;
	width: 100%;
	aspect-ratio: .82 / 1;
	margin: 0;
	object-fit: cover;
	object-position: center top;
}

.cbpq-person-card h3 {
	margin: 0;
	padding: 16px 8px 18px;
	color: var(--cbpq-blue-dark);
	font-size: 18px;
}

.cbpq-cta {
	overflow: hidden;
	background: linear-gradient(135deg, var(--cbpq-blue-dark), var(--cbpq-blue)) !important;
}

.cbpq-cta::after {
	position: absolute;
	top: -110px;
	right: -70px;
	width: 340px;
	height: 340px;
	border: 70px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	content: '';
}

.cbpq-cta h2,
.cbpq-cta p {
	color: #fff;
}

.cbpq-cta h2 {
	margin-bottom: 12px;
}

.cbpq-cta p {
	max-width: 720px;
	margin-bottom: 0;
	opacity: .88;
}

.cbpq-btn-white.button {
	border-color: #fff;
	background: #fff !important;
	color: var(--cbpq-blue-dark) !important;
}

.cbpq-btn-outline-white.button {
	border-color: rgba(255, 255, 255, .8);
	background: transparent !important;
	color: #fff !important;
	background: linear-gradient(135deg, var(--cbpq-blue), #0795e5) !important;
}

.cbpq-stat-card {
	height: 100%;
	padding: 30px 28px 28px;
	border: 1px solid var(--cbpq-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(7, 76, 134, .07);
}

.cbpq-stat-number {
	margin-bottom: 8px;
	color: var(--cbpq-blue);
	font-size: clamp(44px, 5vw, 68px);
	font-weight: 800;
	letter-spacing: -.06em;
	line-height: 1;
}

.cbpq-stat-card h3 {
	margin: 12px 0;
}

.cbpq-stat-card p {
	margin: 0;
	font-size: 15px;
}

.cbpq-review-row {
	max-width: 620px !important;
	margin-bottom: 8px;
}

.cbpq-review-avatar {
	text-align: center;
}

.cbpq-review-avatar img {
	width: 96px;
	height: 96px;
	margin: 0 auto;
	border: 5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 10px 28px rgba(7, 76, 134, .17);
	object-fit: cover;
}

.cbpq-review-stars div {
	color: #ffb800;
	font-size: 31px;
	letter-spacing: .18em;
	text-shadow: 0 5px 18px rgba(255, 184, 0, .22);
}

.cbpq-post-col > .col-inner {
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--cbpq-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 38px rgba(7, 76, 134, .09);
	transition: transform .25s ease, box-shadow .25s ease;
}

.cbpq-post-col > .col-inner:hover {
	transform: translateY(-6px);
	box-shadow: var(--cbpq-shadow);
}

.cbpq-post-image {
	display: block;
	width: 100% !important;
	margin: 0 !important;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #d8edfb;
}

.cbpq-post-image .img-inner {
	width: 100%;
	height: 100%;
}

.cbpq-post-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform .45s ease;
}

.cbpq-post-col > .col-inner:hover .cbpq-post-image img {
	transform: scale(1.045);
}

.cbpq-post-placeholder {
	display: grid;
	aspect-ratio: 16 / 10;
	place-items: center;
	background:
		radial-gradient(circle at 74% 26%, rgba(255,255,255,.22), transparent 24%),
		linear-gradient(135deg, var(--cbpq-blue-dark), #36a6f0);
	color: #fff;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
}

.cbpq-post-body {
	padding: 24px 24px 26px;
}

.cbpq-post-category {
	margin-bottom: 10px;
	color: var(--cbpq-blue);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.cbpq-post-col h3 {
	margin: 0 0 18px;
	font-size: 20px;
	line-height: 1.42;
}

.cbpq-post-col h3 a {
	color: var(--cbpq-ink);
}

.cbpq-post-col h3 a:hover {
	color: var(--cbpq-blue);
}

.cbpq-post-date {
	color: var(--cbpq-muted);
	font-size: 13px;
	font-weight: 500;
}

.cbpq-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.cbpq-gallery-item {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: 18px;
	background: var(--cbpq-blue-soft);
}

.cbpq-gallery-item::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(7, 76, 134, .2));
	content: '';
	opacity: 0;
	transition: opacity .3s ease;
}

.cbpq-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform .45s ease;
}

.cbpq-gallery-item:hover::after {
	opacity: 1;
}

.cbpq-gallery-item:hover img {
	transform: scale(1.055);
}

.cbpq-contact-buttons {
	position: fixed;
	z-index: 9999;
	top: 50%;
	right: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transform: translateY(-50%);
}

.cbpq-contact-item {
	position: relative;
	display: flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border: 3px solid rgba(255, 255, 255, .92);
	border-radius: 50%;
	color: #fff !important;
	box-shadow: 0 9px 24px rgba(23, 50, 77, .22);
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}

.cbpq-contact-item:hover {
	transform: translateX(-4px);
	box-shadow: 0 12px 29px rgba(23, 50, 77, .3);
}

.cbpq-contact-zalo {
	background: #0068ff;
}

.cbpq-contact-phone {
	background: #16a66a;
}

.cbpq-contact-map {
	background: #f05454;
}

.cbpq-contact-facebook {
	background: #1877f2;
}

.cbpq-contact-instagram {
	background: linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045);
}

.cbpq-contact-icon svg {
	display: block;
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cbpq-contact-icon svg .is-fill {
	fill: currentColor;
	stroke: none;
}

.cbpq-contact-zalo svg {
	width: 29px;
	height: 29px;
}

.cbpq-contact-icon {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	font-size: 23px;
	font-weight: 800;
	line-height: 1;
}

.cbpq-contact-label {
	position: absolute;
	top: 50%;
	right: 61px;
	padding: 7px 10px;
	border-radius: 8px;
	background: #17324d;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	opacity: 0;
	pointer-events: none;
	transform: translate(8px, -50%);
	transition: opacity .2s ease, transform .2s ease;
	white-space: nowrap;
}

.cbpq-contact-item:hover .cbpq-contact-label {
	opacity: 1;
	transform: translate(0, -50%);
}

/* Khung CSS chuẩn bị sẵn cho header/footer Flatsome.
* Chưa kích hoạt thiết kế chi tiết để không ảnh hưởng cấu hình hiện tại.
* Khi có mẫu header/footer, chỉ cần viết tiếp trong hai selector này.
*/
body:has(.cbpq-hero) #header {
	--cbpq-header-blue: var(--cbpq-blue);
}

body:has(.cbpq-hero) #footer {
	--cbpq-footer-blue: var(--cbpq-blue-dark);
}

@media (max-width: 849px) {

	.cbpq-about-en .cbpq-copy-card,
	.cbpq-copy-card {
		padding-right: 0;
		padding-left: 0;
	}

	.cbpq-about-ko .row {
		display: flex;
		flex-direction: column-reverse;
	}

	.cbpq-check-list {
		grid-template-columns: 1fr;
	}

	.cbpq-team-row > .col:nth-child(5) {
		margin-right: auto;
		margin-left: auto;
	}

	.cbpq-stat-card,
	.cbpq-post-col > .col-inner {
		margin-bottom: 14px;
	}

	.cbpq-cta .col,
	.cbpq-cta .col-inner {
		text-align: left !important;
	}
}



@media (prefers-reduced-motion: reduce) {
	.cbpq-section *,
	.cbpq-contact-rail * {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

/* ========================================================================== */
/* PROFESSIONAL V2 – MODERN VISUAL SYSTEM                                     */
/* ========================================================================== */

:root {
	--cbpq-blue: #0878c9;
	--cbpq-blue-bright: #19a7f2;
	--cbpq-blue-dark: #064f89;
	--cbpq-navy: #102f49;
	--cbpq-sky: #eaf7ff;
	--cbpq-sky-2: #f6fbff;
	--cbpq-ink: #15324b;
	--cbpq-muted: #5f7588;
	--cbpq-line: rgba(8, 120, 201, .14);
	--cbpq-radius: 28px;
	--cbpq-shadow-sm: 0 12px 36px rgba(6, 79, 137, .09);
	--cbpq-shadow: 0 25px 70px rgba(6, 79, 137, .16);
	--cbpq-shadow-strong: 0 36px 90px rgba(6, 79, 137, .24);
}

.cbpq-section {
	position: relative;
	isolation: isolate;
	padding-top: 92px !important;
	padding-bottom: 92px !important;
}

.cbpq-section h2 {
	color: var(--cbpq-navy);
	font-size: clamp(32px, 3.3vw, 50px);
	line-height: 1.13;
}

.cbpq-section-heading {
	position: relative;
	margin-bottom: 44px;
}

.cbpq-section-heading::before {
	display: block;
	width: 52px;
	height: 5px;
	margin: 0 auto 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--cbpq-blue), var(--cbpq-blue-bright));
	box-shadow: 0 6px 18px rgba(25, 167, 242, .25);
	content: '';
}

/* Hero */

.cbpq-hero {
	min-height: min(840px, 92vh);
	overflow: hidden;
	padding-top: 88px !important;
	padding-bottom: 96px !important;
	background:
		radial-gradient(circle at 91% 12%, rgba(25, 167, 242, .22), transparent 28%),
		radial-gradient(circle at 5% 85%, rgba(8, 120, 201, .12), transparent 31%),
		linear-gradient(125deg, #ffffff 0%, #f4fbff 45%, #e6f6ff 100%) !important;
}

.cbpq-hero::before {
	top: -240px;
	right: -145px;
	width: 610px;
	height: 610px;
	border: 1px solid rgba(8, 120, 201, .12);
	background:
		radial-gradient(circle, rgba(255, 255, 255, .7) 0 2px, transparent 3px) 0 0 / 24px 24px,
		rgba(8, 120, 201, .055);
	transform: rotate(10deg);
}

.cbpq-hero::after {
	right: auto;
	bottom: -130px;
	left: 42%;
	width: 280px;
	height: 280px;
	border: 62px solid rgba(8, 120, 201, .055);
	filter: blur(.2px);
}

.cbpq-hero .row {
	min-height: 650px;
}

.cbpq-hero-copy {
	position: relative;
	z-index: 2;
	max-width: 650px;
	animation: cbpqHeroCopy .75s cubic-bezier(.2, .75, .25, 1) both;
}

.cbpq-hero h1 {
	max-width: 720px;
	margin-bottom: 26px;
	color: var(--cbpq-navy);
	font-size: clamp(50px, 5.25vw, 78px);
	font-weight: 800;
	letter-spacing: -.06em;
	line-height: .98;
}

.cbpq-title-brand {
	display: inline;
}

.cbpq-title-place {
	position: relative;
	z-index: 1;
	display: inline-block;
	color: var(--cbpq-blue);
	white-space: nowrap;
}

.cbpq-title-place::before {
	position: absolute;
	z-index: -1;
	right: -10px;
	bottom: 3px;
	left: -10px;
	height: .24em;
	border-radius: 99px;
	background: linear-gradient(90deg, rgba(25, 167, 242, .2), rgba(8, 120, 201, .1));
	content: '';
	transform: rotate(-1.5deg);
}

.cbpq-title-service {
	display: block;
	max-width: 610px;
	margin-top: 17px;
	color: #31546f;
	font-size: clamp(21px, 2.15vw, 31px);
	font-weight: 650;
	letter-spacing: -.035em;
	line-height: 1.35;
}

.cbpq-hero .cbpq-lead {
	position: relative;
	max-width: 625px;
	margin: 0 0 8px !important;
	padding: 18px 20px 18px 23px;
	border: 1px solid rgba(8, 120, 201, .12);
	border-left: 4px solid var(--cbpq-blue);
	border-radius: 0 18px 18px 0;
	background: rgba(255, 255, 255, .66);
	box-shadow: 0 12px 36px rgba(6, 79, 137, .06);
	color: #4f6d83 !important;
	font-size: 16px !important;
	line-height: 1.8 !important;
	backdrop-filter: blur(12px);
}

.cbpq-hero .cbpq-btn-primary.button {
	min-width: 168px;
	min-height: 54px;
	margin-top: 20px;
	padding: 0 26px;
	border-color: transparent;
	background: linear-gradient(135deg, var(--cbpq-blue), #0795e5) !important;
	box-shadow: 0 16px 36px rgba(8, 120, 201, .28);
	line-height: 50px;
}

.cbpq-hero .cbpq-btn-primary.button::after {
	display: inline-block;
	margin-left: 10px;
	content: '↗';
	font-size: 18px;
	transition: transform .2s ease;
}

.cbpq-hero .cbpq-btn-primary.button:hover::after {
	transform: translate(2px, -2px);
}

.cbpq-hero-media {
	position: relative;
	z-index: 2;
	width: 1200px !important;
	height: 675px;
	margin: 0 auto;
	animation: cbpqHeroMedia .9s .12s cubic-bezier(.2, .75, .25, 1) both;
}

.cbpq-image-hero {
	position: relative;
	overflow: hidden;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, .96);
	border-radius: 48px 48px 126px 48px;
	background: rgba(255, 255, 255, .84);
	box-shadow:
		0 0 0 1px rgba(8, 120, 201, .08),
		var(--cbpq-shadow-strong);
	transform: none;
	animation: cbpqImageFloat 6s ease-in-out infinite;
}

.cbpq-image-hero img {
	border-radius: 38px 38px 112px 38px;
}

.cbpq-image-hero::before {
	position: absolute;
	z-index: 4;
	top: 26px;
	left: 26px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 999px;
	background: rgba(6, 79, 137, .82);
	color: #fff;
	content: '24/7 CARE';
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	box-shadow: 0 10px 25px rgba(16, 47, 73, .2);
	backdrop-filter: blur(10px);
}

.cbpq-hero-media::before,
.cbpq-hero-media::after {
	position: absolute;
	z-index: -1;
	border-radius: 50%;
	content: '';
}

.cbpq-hero-media::before {
	top: -34px;
	right: -40px;
	width: 150px;
	height: 150px;
	background: linear-gradient(135deg, rgba(25, 167, 242, .33), rgba(8, 120, 201, .08));
}

.cbpq-hero-media::after {
	bottom: 22px;
	left: -42px;
	width: 105px;
	height: 105px;
	border: 24px solid rgba(8, 120, 201, .12);
}

/* About sections */

.cbpq-about {
	overflow: hidden;
}

.cbpq-about-en {
	background: #fff;
}

.cbpq-about-ko {
	background:
		radial-gradient(circle at 95% 20%, rgba(25, 167, 242, .12), transparent 27%),
		linear-gradient(135deg, #edf8ff, #f8fcff) !important;
}

.cbpq-about .cbpq-image-portrait {
	border: 10px solid #fff;
	border-radius: 34px;
	box-shadow: var(--cbpq-shadow);
}

.cbpq-about-en .cbpq-image-portrait {
	border-radius: 34px 98px 34px 34px;
}

.cbpq-about-ko .cbpq-image-portrait {
	border-radius: 98px 34px 34px 34px;
}

.cbpq-about .cbpq-copy-card {
	position: relative;
	padding: 40px 42px;
	border: 1px solid var(--cbpq-line);
	border-radius: 30px;
	background: rgba(255, 255, 255, .88);
	box-shadow: var(--cbpq-shadow-sm);
	backdrop-filter: blur(10px);
}

.cbpq-about .cbpq-copy-card::before {
	position: absolute;
	top: 28px;
	left: 0;
	width: 5px;
	height: 64px;
	border-radius: 0 99px 99px 0;
	background: linear-gradient(180deg, var(--cbpq-blue-bright), var(--cbpq-blue));
	content: '';
}

.cbpq-about .cbpq-copy-card h2 {
	font-size: clamp(29px, 2.7vw, 42px);
}

.cbpq-about .cbpq-copy-card h3 {
	position: relative;
	padding-left: 15px;
	color: var(--cbpq-blue-dark);
}

.cbpq-about .cbpq-copy-card h3::before {
	position: absolute;
	top: .36em;
	bottom: .36em;
	left: 0;
	width: 3px;
	border-radius: 99px;
	background: rgba(8, 120, 201, .35);
	content: '';
}

.cbpq-check-list {
	gap: 12px;
}

.cbpq-check-list li {
	border-color: rgba(8, 120, 201, .11);
	background: linear-gradient(145deg, #fff, #f8fcff);
	box-shadow: 0 8px 22px rgba(6, 79, 137, .055);
	transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.cbpq-check-list li:hover {
	border-color: rgba(8, 120, 201, .3);
	box-shadow: 0 12px 28px rgba(6, 79, 137, .1);
	transform: translateY(-2px);
}

/* Team */

.cbpq-team {
	background:
		linear-gradient(rgba(255,255,255,.94), rgba(255,255,255,.94)),
		radial-gradient(circle at center, rgba(8,120,201,.18) 1px, transparent 1.5px) 0 0 / 22px 22px;
}

.cbpq-person-card {
	position: relative;
	min-height: 340px;
	border: 0;
	border-radius: 28px;
	box-shadow: var(--cbpq-shadow-sm);
}

.cbpq-person-card::after {
	position: absolute;
	inset: 42% 0 0;
	background: linear-gradient(180deg, transparent, rgba(7, 50, 82, .76));
	content: '';
	pointer-events: none;
}

.cbpq-person-card img {
	height: 100%;
	min-height: 340px;
	aspect-ratio: auto;
}

.cbpq-person-card h3 {
	position: absolute;
	z-index: 2;
	right: 14px;
	bottom: 14px;
	left: 14px;
	margin: 0;
	padding: 13px 12px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 15px;
	background: rgba(255, 255, 255, .16);
	color: #fff;
	font-size: 18px;
	backdrop-filter: blur(12px);
}

.cbpq-person-card:hover {
	box-shadow: var(--cbpq-shadow);
	transform: translateY(-9px);
}

.cbpq-person-card:hover img {
	transform: scale(1.045);
}

@media (min-width: 850px) {
	.cbpq-team-row > .col:nth-child(2),
	.cbpq-team-row > .col:nth-child(4) {
		padding-top: 22px;
	}
}

/* CTA */

.cbpq-cta {
	overflow: hidden;
	padding-top: 58px !important;
	padding-bottom: 58px !important;
	background:
		radial-gradient(circle at 85% 20%, rgba(255,255,255,.14), transparent 23%),
		linear-gradient(120deg, #064f89 0%, #0878c9 62%, #19a7f2 100%) !important;
}

.cbpq-cta .row {
	padding: 29px 36px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 30px;
	background: rgba(255, 255, 255, .08);
	box-shadow: 0 22px 62px rgba(4, 53, 91, .2);
	backdrop-filter: blur(12px);
}

.cbpq-cta::after {
	top: -155px;
	right: -75px;
	width: 410px;
	height: 410px;
	border: 76px solid rgba(255, 255, 255, .07);
}

.cbpq-cta h2 {
	font-size: clamp(30px, 3vw, 46px);
}

.cbpq-cta .button {
	box-shadow: 0 12px 30px rgba(4, 53, 91, .18);
}

/* Statistics */

.cbpq-stats {
	background:
		radial-gradient(circle at 12% 0%, rgba(25, 167, 242, .1), transparent 30%),
		#f5fbff !important;
}

.cbpq-stat-card {
	position: relative;
	overflow: hidden;
	padding: 35px 31px 31px;
	border: 1px solid rgba(8, 120, 201, .12);
	border-top: 4px solid var(--cbpq-blue);
	border-radius: 25px;
	background: linear-gradient(150deg, #fff, #f9fdff);
	box-shadow: var(--cbpq-shadow-sm);
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.cbpq-stat-card::after {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 145px;
	height: 145px;
	border-radius: 50%;
	background: rgba(8, 120, 201, .055);
	content: '';
}

.cbpq-stat-card:hover {
	border-color: rgba(8, 120, 201, .24);
	box-shadow: var(--cbpq-shadow);
	transform: translateY(-7px);
}

.cbpq-stat-number {
	position: relative;
	z-index: 1;
	display: inline-block;
	background: linear-gradient(135deg, var(--cbpq-blue-dark), var(--cbpq-blue-bright));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Reviews */

.cbpq-reviews {
	overflow: hidden;
	background: #fff;
}

.cbpq-reviews::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 680px;
	height: 360px;
	border-radius: 50%;
	background: rgba(25, 167, 242, .08);
	content: '';
	filter: blur(70px);
	transform: translate(-50%, -50%);
}

.cbpq-review-row {
	position: relative;
	max-width: 650px !important;
	margin-top: 12px;
	padding: 30px 40px 18px;
	border: 1px solid var(--cbpq-line);
	border-radius: 30px 30px 0 0;
	background: rgba(255, 255, 255, .84);
	box-shadow: var(--cbpq-shadow-sm);
	backdrop-filter: blur(14px);
}

.cbpq-review-avatar img {
	width: 102px;
	height: 102px;
	border: 5px solid #fff;
	box-shadow: 0 12px 30px rgba(6, 79, 137, .2);
	transition: transform .24s ease, box-shadow .24s ease;
}

.cbpq-review-avatar:hover img {
	box-shadow: 0 16px 35px rgba(6, 79, 137, .28);
	transform: translateY(-5px) scale(1.035);
}

.cbpq-review-stars {
	display: inline-block;
	margin-top: -1px;
	padding: 12px 27px 15px;
	border: 1px solid var(--cbpq-line);
	border-top: 0;
	border-radius: 0 0 18px 18px;
	background: #fff;
	box-shadow: 0 14px 30px rgba(6, 79, 137, .08);
}

/* Blog */

.cbpq-blog {
	background:
		radial-gradient(circle at 90% 0%, rgba(25,167,242,.12), transparent 32%),
		linear-gradient(140deg, #edf8ff, #f8fcff) !important;
}

.cbpq-post-col > .col-inner {
	border: 1px solid rgba(8, 120, 201, .12);
	border-radius: 25px;
	box-shadow: var(--cbpq-shadow-sm);
}

.cbpq-post-image,
.cbpq-post-placeholder {
	position: relative;
	aspect-ratio: 16 / 10.2;
}

.cbpq-post-image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(6, 79, 137, .22));
	content: '';
	pointer-events: none;
}

.cbpq-post-placeholder {
	background:
		radial-gradient(circle at 27% 30%, rgba(255,255,255,.22) 0 2px, transparent 3px) 0 0 / 23px 23px,
		linear-gradient(135deg, var(--cbpq-blue-dark), var(--cbpq-blue-bright));
}

.cbpq-post-body {
	padding: 27px 27px 30px;
}

.cbpq-post-category {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--cbpq-sky);
}

.cbpq-post-col > .col-inner:hover {
	box-shadow: var(--cbpq-shadow);
	transform: translateY(-8px);
}

/* Gallery */

.cbpq-gallery {
	overflow: hidden;
	background: #fff;
}

.cbpq-gallery::before {
	position: absolute;
	right: -160px;
	bottom: -170px;
	width: 440px;
	height: 440px;
	border-radius: 50%;
	background: rgba(8, 120, 201, .055);
	content: '';
}

.cbpq-gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 16px;
}

.cbpq-gallery-item {
	grid-column: span 4;
	aspect-ratio: 1.25 / 1;
	border: 1px solid rgba(8, 120, 201, .08);
	border-radius: 22px;
	box-shadow: 0 10px 30px rgba(6, 79, 137, .08);
}

.cbpq-gallery-item:nth-child(1),
.cbpq-gallery-item:nth-child(2) {
	grid-column: span 6;
	aspect-ratio: 1.6 / 1;
}

.cbpq-gallery-item:nth-child(n+6) {
	grid-column: span 3;
	aspect-ratio: 1 / 1;
}

.cbpq-gallery-item::after {
	background:
		linear-gradient(180deg, transparent 48%, rgba(6, 79, 137, .32)),
		linear-gradient(135deg, rgba(25,167,242,.06), transparent);
}

.cbpq-gallery-item:hover {
	box-shadow: var(--cbpq-shadow-sm);
	transform: translateY(-4px);
}

/* Floating contact */

.cbpq-contact-buttons {
	right: 19px;
	gap: 12px;
}

.cbpq-contact-item {
	width: 56px;
	height: 56px;
	border: 3px solid rgba(255, 255, 255, .96);
	box-shadow: 0 13px 30px rgba(16, 47, 73, .24);
}

.cbpq-contact-item::before {
	position: absolute;
	inset: -6px;
	border: 1px solid currentColor;
	border-radius: 50%;
	content: '';
	opacity: .16;
}

.cbpq-contact-zalo::before {
	animation: cbpqContactPulse 2.4s ease-out infinite;
}

.cbpq-contact-label {
	right: 66px;
	max-width: 360px;
	padding: 9px 12px;
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(16, 47, 73, .18);
}

/* Motion */

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

@keyframes cbpqHeroMedia {
	from {
		opacity: 0;
		transform: translate(28px, 18px) scale(.965);
	}
	to {
		opacity: 1;
		transform: translate(0, 0) scale(1);
	}
}

@keyframes cbpqImageFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-9px);
	}
}

@keyframes cbpqContactPulse {
	0% {
		opacity: .28;
		transform: scale(.9);
	}
	75%, 100% {
		opacity: 0;
		transform: scale(1.35);
	}
}

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

@supports (animation-timeline: view()) {
	.cbpq-section:not(.cbpq-hero) > .section-content > .row {
		animation: cbpqSectionReveal linear both;
		animation-timeline: view();
		animation-range: entry 4% cover 28%;
	}
}

/* Responsive V2 */

@media (max-width: 1040px) {
	.cbpq-hero h1 {
		font-size: clamp(45px, 5vw, 64px);
	}

	.cbpq-title-service {
		font-size: clamp(20px, 2vw, 27px);
	}

	.cbpq-about .cbpq-copy-card {
		padding: 34px 32px;
	}

	.cbpq-person-card,
	.cbpq-person-card img {
		min-height: 300px;
	}
}

@media (max-width: 849px) {
	.cbpq-section {
		padding-top: 66px !important;
		padding-bottom: 66px !important;
	}

	.cbpq-hero {
		min-height: auto;
		padding-top: 58px !important;
		padding-bottom: 72px !important;
	}

	.cbpq-hero .row {
		min-height: 0;
	}

	.cbpq-hero-copy {
		max-width: 720px;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.cbpq-hero h1 {
		margin-right: auto;
		margin-left: auto;
	}

	.cbpq-title-service {
		margin-right: auto;
		margin-left: auto;
	}

	.cbpq-hero .cbpq-lead {
		margin-right: auto !important;
		margin-left: auto !important;
		border-left-width: 1px;
		border-radius: 18px;
		text-align: left;
	}

	.cbpq-hero-media {
        max-width: 100%;
        height: auto;
	}

	.cbpq-image-hero {
		border-radius: 38px 38px 92px 38px;
		animation: none;
	}

	.cbpq-image-hero img {
		border-radius: 29px 29px 81px 29px;
	}

	.cbpq-about .cbpq-copy-card {
		padding: 31px 27px;
	}

	.cbpq-about-en .cbpq-image-portrait,
	.cbpq-about-ko .cbpq-image-portrait {
		border-radius: 28px 70px 28px 28px;
	}

	.cbpq-person-card,
	.cbpq-person-card img {
		min-height: 390px;
	}

	.cbpq-cta .row {
		margin-right: 6px;
		margin-left: 6px;
		padding: 24px 20px;
	}

	.cbpq-gallery-item:nth-child(n) {
		grid-column: span 6;
		aspect-ratio: 1 / 1;
	}

	.cbpq-gallery-item:nth-child(1) {
		grid-column: span 12;
		aspect-ratio: 1.65 / 1;
	}
}

@media (max-width: 549px) {
	.cbpq-section {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}

	.cbpq-hero {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}

	.cbpq-hero h1 {
		font-size: 43px;
		line-height: 1.01;
	}

	.cbpq-title-brand,
	.cbpq-title-place {
		display: block;
	}

	.cbpq-title-place {
		width: fit-content;
		margin: 5px auto 0;
	}

	.cbpq-title-service {
		margin-top: 15px;
		font-size: 21px;
		line-height: 1.38;
	}

	.cbpq-hero .cbpq-lead {
		padding: 16px;
		font-size: 14px !important;
		line-height: 1.75 !important;
	}

	.cbpq-hero .cbpq-btn-primary.button {
		width: 100%;
		margin-right: 0;
	}

	.cbpq-hero-media::before {
		top: -18px;
		right: -12px;
		width: 90px;
		height: 90px;
	}

	.cbpq-hero-media::after {
		bottom: 4px;
		left: -9px;
		width: 62px;
		height: 62px;
		border-width: 14px;
	}

	.cbpq-image-hero {
		padding: 7px;
		border-radius: 28px 28px 66px 28px;
	}

	.cbpq-image-hero img {
		border-radius: 22px 22px 57px 22px;
	}

	.cbpq-image-hero::before {
		top: 18px;
		left: 18px;
		padding: 7px 11px;
		font-size: 9px;
	}

	.cbpq-about .cbpq-copy-card {
		padding: 27px 20px;
		border-radius: 23px;
	}

	.cbpq-about .cbpq-copy-card h2 {
		font-size: 28px;
	}

	.cbpq-about .cbpq-copy-card h3 {
		font-size: 18px;
	}

	.cbpq-person-card,
	.cbpq-person-card img {
		min-height: 275px;
	}

	.cbpq-stat-card {
		padding: 29px 24px 26px;
	}

	.cbpq-review-row {
		padding: 23px 12px 12px;
	}

	.cbpq-review-avatar img {
		width: 68px;
		height: 68px;
	}

	.cbpq-gallery-grid {
		gap: 10px;
	}

	.cbpq-gallery-item:nth-child(n) {
		grid-column: span 6;
		aspect-ratio: 1 / 1;
		border-radius: 14px;
	}

	.cbpq-gallery-item:nth-child(1) {
		grid-column: span 12;
		aspect-ratio: 1.45 / 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cbpq-hero-copy,
	.cbpq-hero-media,
	.cbpq-image-hero,
	.cbpq-contact-zalo::before,
	.cbpq-section:not(.cbpq-hero) > .section-content > .row {
		animation: none !important;
	}
}

/* ========================================================================== */
/* CUSTOM UX BUILDER ELEMENTS – TEAM + REVIEWS + LIGHTBOX SLIDER              */
/* ========================================================================== */

/* Team custom element */

.cbpq-team-block {
	width: min(1320px, calc(100% - 32px));
	margin: 0 auto;
}

.cbpq-team-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
	align-items: start;
}

.cbpq-team-card {
	position: relative;
	min-width: 0;
	overflow: visible;
	margin: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
	transition: transform .35s cubic-bezier(.2,.75,.25,1);
}

.cbpq-team-photo {
	position: relative;
	overflow: hidden;
	aspect-ratio: .76 / 1;
	border: 1px solid rgba(8, 120, 201, .1);
	border-radius: 12px;
	background: var(--cbpq-sky);
	box-shadow: 0 14px 38px rgba(6, 79, 137, .1);
	transition: border-color .3s ease, box-shadow .3s ease;
}

.cbpq-team-photo img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center top;
	transition: transform .55s cubic-bezier(.2,.75,.25,1);
}

.cbpq-image-slot {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	padding: 24px;
	background:
		linear-gradient(145deg, rgba(255,255,255,.82), rgba(225,244,255,.94)),
		var(--cbpq-sky);
	color: var(--cbpq-blue-dark);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.cbpq-team-image-slot {
	padding: 24px;
}

.cbpq-team-meta {
	padding: 17px 8px 0;
}

.cbpq-team-card h3 {
	margin: 0;
	padding: 0;
	color: var(--cbpq-blue-dark);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.cbpq-team-card:hover {
	box-shadow: none;
	transform: translateY(-6px);
}

.cbpq-team-card:hover .cbpq-team-photo {
	border-color: rgba(8, 120, 201, .28);
	box-shadow: 0 24px 55px rgba(6, 79, 137, .17);
}

.cbpq-team-card:hover .cbpq-team-photo img {
	transform: scale(1.055);
}

.cbpq-team-socials {
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 9px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .25s ease, transform .25s ease;
}

.cbpq-team-card:hover .cbpq-team-socials,
.cbpq-team-card:focus-within .cbpq-team-socials {
	opacity: 1;
	transform: translateY(0);
}

.cbpq-team-socials a {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: rgba(8, 120, 201, .09);
	color: var(--cbpq-blue) !important;
	transition: color .2s ease, background .2s ease, transform .2s ease;
}

.cbpq-team-socials a:hover {
	background: var(--cbpq-blue);
	color: #fff !important;
	transform: translateY(-2px);
}

.cbpq-team-socials svg {
	display: block;
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cbpq-team-socials svg .is-fill {
	fill: currentColor;
	stroke: none;
}

/* Compact review summary */

.cbpq-review-summary-block {
	position: relative;
	z-index: 2;
	width: min(920px, calc(100% - 32px));
	margin: 0 auto;
}

.cbpq-review-trust-card {
	display: flex;
	width: fit-content;
	min-height: 128px;
	align-items: center;
	justify-content: center;
	gap: 34px;
	margin: 0 auto;
	padding: 23px 38px;
	border: 1px solid rgba(8, 120, 201, .15);
	border-radius: 28px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 22px 65px rgba(6, 79, 137, .14);
	backdrop-filter: blur(16px);
}

.cbpq-review-people {
	display: flex;
	align-items: center;
	padding-left: 20px;
}

.cbpq-review-people img,
.cbpq-review-avatar-slot {
	position: relative;
	display: block;
	width: 78px;
	height: 78px;
	margin-left: -20px;
	border: 5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 11px 27px rgba(6, 79, 137, .18);
	object-fit: cover;
	transition: transform .25s ease;
}

.cbpq-review-avatar-slot {
	display: grid;
	place-items: center;
	background: var(--cbpq-sky);
	color: var(--cbpq-blue);
	font-size: 28px;
	font-weight: 600;
}

.cbpq-review-people > :nth-child(1) { z-index: 4; }
.cbpq-review-people > :nth-child(2) { z-index: 3; }
.cbpq-review-people > :nth-child(3) { z-index: 2; }
.cbpq-review-people > :nth-child(4) { z-index: 1; }

.cbpq-review-people:hover img:nth-child(1) { transform: translateX(-7px); }
.cbpq-review-people:hover img:nth-child(4) { transform: translateX(7px); }

.cbpq-review-divider {
	width: 1px;
	height: 68px;
	background: linear-gradient(180deg, transparent, rgba(8,120,201,.24), transparent);
}

.cbpq-review-rating {
	display: grid;
	min-width: 210px;
	min-height: 76px;
	place-items: center;
	border-radius: 19px;
	background: linear-gradient(145deg, #fff, #f8fcff);
	color: #ffb500;
	box-shadow: inset 0 0 0 1px rgba(255, 181, 0, .08);
}

.cbpq-review-rating span {
	font-size: 31px;
	letter-spacing: .15em;
	line-height: 1;
	text-shadow: 0 8px 20px rgba(255, 181, 0, .2);
}

/* Review gallery – equal cards */

.cbpq-review-gallery {
	position: relative;
	z-index: 3;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.cbpq-review-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cbpq-review-gallery-empty {
	max-width: 680px;
	margin: 0 auto;
	padding: 28px;
	border: 1px dashed rgba(8, 120, 201, .35);
	border-radius: 20px;
	background: var(--cbpq-sky);
	color: var(--cbpq-blue-dark);
	font-weight: 700;
	text-align: center;
}

.cbpq-review-gallery-item {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 1.25 / 1;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(8, 120, 201, .12);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 15px 42px rgba(6, 79, 137, .1);
	cursor: zoom-in;
	transition: transform .3s cubic-bezier(.2,.75,.25,1), box-shadow .3s ease, border-color .3s ease;
}

.cbpq-review-gallery-item::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(6, 79, 137, .32));
	content: '';
	opacity: 0;
	transition: opacity .3s ease;
}

.cbpq-review-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	transition: transform .48s cubic-bezier(.2,.75,.25,1);
}

.cbpq-review-gallery-item.is-photo img {
	object-fit: cover;
}

.cbpq-review-gallery-item.is-review img {
	padding: 10px;
	background: #fff;
	object-fit: contain;
}

.cbpq-review-gallery-zoom {
	position: absolute;
	z-index: 2;
	right: 17px;
	bottom: 17px;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid rgba(255,255,255,.55);
	border-radius: 50%;
	background: rgba(6, 79, 137, .78);
	color: #fff;
	font-size: 25px;
	line-height: 1;
	opacity: 0;
	transform: translateY(7px) scale(.92);
	transition: opacity .25s ease, transform .25s ease;
	backdrop-filter: blur(10px);
}

.cbpq-review-gallery-item:hover,
.cbpq-review-gallery-item:focus-visible {
	border-color: rgba(8, 120, 201, .3);
	box-shadow: 0 27px 62px rgba(6, 79, 137, .18);
	outline: none;
	transform: translateY(-7px);
}

.cbpq-review-gallery-item:hover::after,
.cbpq-review-gallery-item:focus-visible::after {
	opacity: 1;
}

.cbpq-review-gallery-item:hover img,
.cbpq-review-gallery-item:focus-visible img {
	transform: scale(1.035);
}

.cbpq-review-gallery-item:hover .cbpq-review-gallery-zoom,
.cbpq-review-gallery-item:focus-visible .cbpq-review-gallery-zoom {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Full-screen slider */

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

.cbpq-review-lightbox[hidden] {
	display: none !important;
}

.cbpq-review-lightbox {
	position: fixed;
	z-index: 100001;
	inset: 0;
	display: grid;
	padding: 26px;
	place-items: center;
	opacity: 0;
	transition: opacity .22s ease;
}

.cbpq-review-lightbox.is-open {
	opacity: 1;
}

.cbpq-review-lightbox-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(4, 23, 38, .88);
	cursor: zoom-out;
	backdrop-filter: blur(15px);
}

.cbpq-review-lightbox-panel {
	position: relative;
	z-index: 2;
	display: grid;
	width: min(1180px, 94vw);
	height: min(820px, 90vh);
	place-items: center;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 28px;
	background: rgba(10, 35, 54, .78);
	box-shadow: 0 38px 120px rgba(0,0,0,.48);
	overflow: hidden;
}

.cbpq-review-lightbox-stage {
	display: grid;
	width: calc(100% - 140px);
	height: calc(100% - 90px);
	place-items: center;
}

.cbpq-review-lightbox-stage img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	border-radius: 17px;
	box-shadow: 0 20px 70px rgba(0,0,0,.28);
	object-fit: contain;
}

.cbpq-review-lightbox-stage img.is-next {
	animation: cbpqSlideNext .3s cubic-bezier(.2,.75,.25,1) both;
}

.cbpq-review-lightbox-stage img.is-prev {
	animation: cbpqSlidePrev .3s cubic-bezier(.2,.75,.25,1) both;
}

.cbpq-review-lightbox-close,
.cbpq-review-lightbox-nav {
	position: absolute;
	z-index: 4;
	display: grid;
	margin: 0;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	color: #fff;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
	backdrop-filter: blur(12px);
}

.cbpq-review-lightbox-close {
	top: 18px;
	right: 18px;
	width: 48px;
	height: 48px;
	min-height: unset;
	font-size: 33px;
	font-weight: 300;
	line-height: 1;
}

.cbpq-review-lightbox-nav {
	top: 50%;
	width: 56px;
	height: 56px;
	min-height: unset;
	transform: translateY(-50%);
}

.cbpq-review-lightbox-close svg,
.cbpq-review-lightbox-nav svg {
	display: block;
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cbpq-review-lightbox-close svg {
	width: 22px;
	height: 22px;
	stroke-width: 2;
}

.cbpq-review-lightbox-nav.is-prev {
	left: 22px;
}

.cbpq-review-lightbox-nav.is-next {
	right: 22px;
}

.cbpq-review-lightbox-close:hover,
.cbpq-review-lightbox-nav:hover {
	background: var(--cbpq-blue);
}

.cbpq-review-lightbox-close:hover {
	transform: rotate(5deg);
}

.cbpq-review-lightbox-nav:hover {
	transform: translateY(-50%) scale(1.07);
}

.cbpq-review-lightbox-counter {
	position: absolute;
	bottom: 18px;
	left: 50%;
	min-width: 76px;
	padding: 8px 13px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 999px;
	background: rgba(255,255,255,.1);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	transform: translateX(-50%);
	backdrop-filter: blur(10px);
}

@keyframes cbpqSlideNext {
	from { opacity: 0; transform: translateX(34px) scale(.98); }
	to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes cbpqSlidePrev {
	from { opacity: 0; transform: translateX(-34px) scale(.98); }
	to { opacity: 1; transform: translateX(0) scale(1); }
}

@media (max-width: 849px) {
	.cbpq-team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.cbpq-team-card:last-child {
		width: calc(50% - 9px);
		grid-column: 1 / -1;
		justify-self: center;
	}

	.cbpq-review-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.cbpq-review-lightbox {
		padding: 14px;
	}

	.cbpq-review-lightbox-panel {
		width: 100%;
		height: 88vh;
		border-radius: 22px;
	}

	.cbpq-review-lightbox-stage {
		width: calc(100% - 94px);
		height: calc(100% - 82px);
	}

	.cbpq-review-lightbox-nav {
		width: 46px;
		height: 46px;
	}

	.cbpq-review-lightbox-nav.is-prev { left: 12px; }
	.cbpq-review-lightbox-nav.is-next { right: 12px; }
}

@media (max-width: 549px) {
	.cbpq-team-block,
	.cbpq-review-summary-block,
	.cbpq-review-gallery {
		width: calc(100% - 20px);
	}

	.cbpq-team-grid {
		gap: 12px;
	}

	.cbpq-team-card {
		border-radius: 0;
	}

	.cbpq-team-card h3 {
		padding: 0;
		font-size: 16px;
	}

	.cbpq-team-card:last-child {
		width: calc(50% - 6px);
	}

	.cbpq-review-trust-card {
		width: 100%;
		min-height: 0;
		flex-direction: column;
		gap: 17px;
		padding: 23px 16px;
	}

	.cbpq-review-people img,
	.cbpq-review-avatar-slot {
		width: 67px;
		height: 67px;
		border-width: 4px;
	}

	.cbpq-review-divider {
		width: 160px;
		height: 1px;
		background: linear-gradient(90deg, transparent, rgba(8,120,201,.24), transparent);
	}

	.cbpq-review-rating {
		min-width: 205px;
		min-height: 61px;
	}

	.cbpq-review-rating span {
		font-size: 27px;
	}

	.cbpq-review-gallery-grid {
		gap: 10px;
	}

	.cbpq-review-gallery-item {
		aspect-ratio: 1 / 1;
		border-radius: 15px;
	}

	.cbpq-review-gallery-item.is-review img {
		padding: 5px;
	}

	.cbpq-review-gallery-zoom {
		right: 9px;
		bottom: 9px;
		width: 34px;
		height: 34px;
		font-size: 20px;
		opacity: 1;
		transform: none;
	}

	.cbpq-review-lightbox {
		padding: 8px;
	}

	.cbpq-review-lightbox-panel {
		height: 86vh;
		border-radius: 18px;
	}

	.cbpq-review-lightbox-stage {
		width: calc(100% - 20px);
		height: calc(100% - 130px);
	}

	.cbpq-review-lightbox-nav {
		top: auto;
		bottom: 18px;
		transform: none;
	}

	.cbpq-review-lightbox-nav.is-prev { left: 16px; }
	.cbpq-review-lightbox-nav.is-next { right: 16px; }

	.cbpq-review-lightbox-nav:hover {
		transform: scale(1.07);
	}

	.cbpq-review-lightbox-counter {
		bottom: 31px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cbpq-team-card,
	.cbpq-team-card img,
	.cbpq-review-gallery-item,
	.cbpq-review-gallery-item img,
	.cbpq-review-people img,
	.cbpq-review-lightbox,
	.cbpq-review-lightbox-stage img {
		animation: none !important;
		transition: none !important;
	}
}

/* ========================================================================== */
/* FLATSOME UX BLOG                                                           */
/* ========================================================================== */

.cbpq-blog .cbpq-ux-blog {
	align-items: stretch;
}

.cbpq-blog .cbpq-ux-blog > .col {
	display: flex;
	padding-bottom: 24px;
}

.cbpq-blog .cbpq-ux-blog > .col > .col-inner,
.cbpq-blog .cbpq-ux-blog .box-blog-post {
	width: 100%;
	height: 100%;
}

.cbpq-blog .cbpq-ux-blog .box-blog-post {
	overflow: hidden;
	border: 1px solid rgba(8, 120, 201, .12);
	border-radius: 25px;
	background: #fff;
	box-shadow: var(--cbpq-shadow-sm);
	transition: transform .3s cubic-bezier(.2,.75,.25,1), box-shadow .3s ease;
}

.cbpq-blog .cbpq-ux-blog .box-blog-post:hover {
	box-shadow: var(--cbpq-shadow);
	transform: translateY(-8px);
}

.cbpq-blog .cbpq-ux-blog .box-image,
.cbpq-blog .cbpq-ux-blog .box-image .image-cover {
	height: 230px;
	padding-top: 0 !important;
	background: #d8edfb;
}

.cbpq-blog .cbpq-ux-blog .box-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s cubic-bezier(.2,.75,.25,1);
}

.cbpq-blog .cbpq-ux-blog .box-blog-post:hover .box-image img {
	transform: scale(1.045);
}

.cbpq-blog .cbpq-ux-blog .box-text {
	padding: 25px 26px 28px;
}

.cbpq-blog .cbpq-ux-blog .post-title {
	color: var(--cbpq-ink);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.42;
}

.cbpq-blog .cbpq-ux-blog .is-divider {
	width: 42px;
	height: 3px;
	margin: 13px 0;
	background: var(--cbpq-blue);
}

.cbpq-blog .cbpq-ux-blog .post-meta,
.cbpq-blog .cbpq-ux-blog .from_the_blog_excerpt {
	color: var(--cbpq-muted);
	font-size: 13px;
}

.cbpq-blog .cbpq-ux-blog .badge {
	top: 16px;
	left: 16px;
}

.cbpq-blog .cbpq-ux-blog .badge-inner {
	border: 0;
	border-radius: 12px;
	background: var(--cbpq-blue);
	box-shadow: 0 8px 22px rgba(6, 79, 137, .2);
}

/* ========================================================================== */
/* FLATSOME HEADER / MENU                                                     */
/* ========================================================================== */

#header .header-wrapper {
	background: #fff;
}

@media (min-width: 850px) {
	#header .header-main {
		height: auto !important;
        background: radial-gradient(circle at 10% 15%, rgba(104, 205, 255, .38), transparent 24%), radial-gradient(circle at 88% 80%, rgba(7, 63, 112, .46), transparent 31%), linear-gradient(118deg, #06365e 0%, #075f9f 35%, #0b83d2 66%, #20a8ef 100%);
        background-size: 160% 160%;
        box-shadow: 0 22px 55px rgba(5, 73, 125, .22), inset 0 1px 0 rgba(255, 255, 255, .25);
	}
	
	#header .header-main .header-inner {
		position: relative;
        width: 100%;
        max-width: 1200px;
        min-height: 96px;
        padding: 0 25px;
        animation: cbpqHeaderGradient 13s ease infinite;
	}

	#header .stuck .header-main .header-inner {
		min-height: 78px;
	}

	#header #logo {
		width: auto !important;
		min-width: 260px;
		margin-right: 25px;
	}

	#header #logo a {
		display: inline-flex;
		align-items: center;
		gap: 15px;
		color: #fff;
	}

	#header #logo a::after {
		content: 'Monmoonbabysister Phú Quốc';
		font-family: 'Poppins', sans-serif;
		font-size: 16px;
		font-weight: 700;
		line-height: 1.25;
		text-shadow: 0 2px 14px rgba(3, 40, 70, .26);
		white-space: nowrap;
	}

	#header #logo img {
		width: auto;
		max-width: 70px;
		max-height: 66px !important;
		padding: 4px;
		border: 1px solid rgba(255,255,255,.46);
		border-radius: 13px;
		background: rgba(255,255,255,.95);
		box-shadow: 0 9px 25px rgba(3, 46, 80, .2);
		object-fit: contain;
	}

	#header .header-nav-main {
		width: 100%;
		justify-content: center;
		gap: 30px;
	}

	#header .header-nav-main > li {
		margin: 0;
	}

	#header .header-nav-main > li > a {
		position: relative;
		min-height: 45px;
		padding: 0 16px;
		border: 1px solid transparent;
		border-radius: 999px;
		color: rgba(255, 255, 255, .92);
		font-family: 'Poppins', sans-serif;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0;
		text-shadow: 0 1px 8px rgba(3, 45, 78, .2);
		text-transform: none;
		transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
	}

	#header .header-nav-main > li > a:hover,
	#header .header-nav-main > li.active > a,
	#header .header-nav-main > li.current-menu-item > a {
		border-color: rgba(255,255,255,.27);
		background: rgba(255, 255, 255, .15);
		box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 8px 22px rgba(3, 49, 85, .12);
		color: #fff;
		transform: translateY(-1px);
	}

	#header .header-nav-main > li.cbpq-menu-contact {
		margin-left: 12px;
	}

	#header .header-nav-main > li.cbpq-menu-contact > a,
	#header .header-button .button,
	#header li.header-button-1 .button,
	#header li.header-button-2 .button {
		min-width: 138px;
		justify-content: center;
		padding: 0 23px;
		border: 1px solid rgba(255,255,255,.72);
		border-radius: 999px;
		background: linear-gradient(145deg, #fff, #eaf7ff);
		color: var(--cbpq-blue-dark) !important;
		text-shadow: none;
		box-shadow: 0 11px 28px rgba(3, 54, 94, .24), inset 0 1px 0 #fff;
	}

	#header .header-nav-main > li.cbpq-menu-contact > a:hover,
	#header .header-button .button:hover,
	#header li.header-button-1 .button:hover,
	#header li.header-button-2 .button:hover {
		border-color: #fff;
		background: #fff;
		color: var(--cbpq-blue) !important;
		box-shadow: 0 16px 34px rgba(3, 54, 94, .3), inset 0 1px 0 #fff;
		transform: translateY(-2px);
	}
}

@media (max-width: 849px) {
	#header .header-main {
		height: auto !important;
		background: #fff;
	}

	#header .header-main .header-inner {
		min-height: 66px;
		padding: 0 14px;
		background:
			radial-gradient(circle at 12% 20%, rgba(104, 205, 255, .32), transparent 30%),
			linear-gradient(125deg, #06365e, #0878c9 64%, #20a8ef);
		box-shadow: 0 14px 34px rgba(5, 73, 125, .2);
	}

	#header #logo img {
		max-height: 52px !important;
		padding: 3px;
		border-radius: 9px;
		background: #fff;
	}

	#header .nav > li > a,
	#header .nav-icon a,
	#header .icon-menu,
	#header .icon-search {
		padding: 0 !important;
	}
	#header .nav > li > a {
		padding: 4px 6px !important;
		color: #07558f !important;
		border-radius: 4px;
		background: linear-gradient(135deg, #ffffff 0%, #dff5ff 48%, #9ddcff 100%) !important;
	}
	.logo-mobile {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.logo-mobile img {
		width: 80px;
		height: auto;
		border-radius: 15px;
	}
}

@keyframes cbpqHeaderGradient {
	0%, 100% { background-position: 0% 45%; }
	50% { background-position: 100% 55%; }
}

#blog {
	scroll-margin-top: 128px;
}

/* ========================================================================== */
/* UX BUILDER FOOTER                                                          */
/* ========================================================================== */

.cbpq-footer {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	font-family: 'Poppins', sans-serif;
	background:
		radial-gradient(circle at 85% 0%, rgba(25, 167, 242, .2), transparent 32%),
		linear-gradient(135deg, #052f50, #075f9e);
	color: rgba(255, 255, 255, .82);
}

.cbpq-footer-inner {
	display: grid;
	max-width: 1200px;
	grid-template-columns: 1.1fr 1.55fr .9fr;
	align-items: center;
	gap: 46px;
	margin: 0 auto;
	padding: 52px 24px 42px;
}

.cbpq-footer-brand {
	display: flex;
	align-items: center;
	gap: 17px;
}

.cbpq-footer-brand img,
.cbpq-footer-logo-slot {
	display: grid;
	width: 78px;
	height: 78px;
	flex: 0 0 78px;
	place-items: center;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 16px;
	background: rgba(255,255,255,.94);
	box-shadow: 0 12px 30px rgba(0,0,0,.15);
	object-fit: contain;
}

.cbpq-footer-logo-slot {
	padding: 9px;
	color: var(--cbpq-blue-dark);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}

.cbpq-footer-brand strong {
	color: #fff;
	font-size: 18px;
	line-height: 1.35;
}

.cbpq-footer-address > span,
.cbpq-footer-connect > span {
	display: block;
	margin-bottom: 9px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.cbpq-footer-address a,
.cbpq-footer-address p {
	margin: 0;
	color: rgba(255,255,255,.82) !important;
	font-size: 14px;
	line-height: 1.7;
}

.cbpq-footer-address a:hover {
	color: #fff !important;
}

.cbpq-footer-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cbpq-footer-socials a {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	color: #fff !important;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.cbpq-footer-socials a:hover {
	border-color: rgba(255,255,255,.55);
	background: var(--cbpq-blue-bright);
	transform: translateY(-3px);
}

.cbpq-footer-socials svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cbpq-footer-socials svg .is-fill {
	fill: currentColor;
	stroke: none;
}

.cbpq-footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 24px 22px;
	border-top: 1px solid rgba(255,255,255,.12);
	color: rgba(255,255,255,.62);
	font-size: 12px;
	text-align: center;
}

@media (max-width: 849px) {
	.cbpq-footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

	.cbpq-footer-brand {
		grid-column: 1 / -1;
	}
	.mobile-sidebar ul li:first-child {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
}

@media (max-width: 549px) {
	.cbpq-blog .cbpq-ux-blog .box-image,
	.cbpq-blog .cbpq-ux-blog .box-image .image-cover {
		height: 210px;
	}

	.cbpq-team-socials {
		opacity: 1;
		transform: none;
	}

	.cbpq-footer-inner {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-top: 40px;
		text-align: center;
	}

	.cbpq-footer-brand {
		grid-column: auto;
		justify-content: center;
	}

	.cbpq-footer-socials {
		justify-content: center;
	}
}

@media (hover: none) {
	.cbpq-team-socials {
		opacity: 1;
		transform: none;
	}
}

/* Contact CTA SVG – đồng bộ gradient xanh và hiệu ứng hover */
.cbpq-contact-zalo {
	background: linear-gradient(145deg, #0068ff, #00a9ff);
}

.cbpq-contact-phone {
	background: linear-gradient(145deg, #16b978, #07915b);
}

.cbpq-contact-map {
	background: linear-gradient(145deg, #ff6d6d, #e94343);
}

.cbpq-contact-facebook {
	background: linear-gradient(145deg, #2584f3, #0b5fcb);
}

.cbpq-contact-instagram {
	background: linear-gradient(145deg, #7d3ec7 4%, #db2f75 52%, #f89b3d 100%);
}

.cbpq-contact-item {
	isolation: isolate;
	overflow: visible;
}

.cbpq-contact-item::after {
	position: absolute;
	z-index: -1;
	inset: 5px;
	border-radius: 50%;
	background: inherit;
	content: '';
	filter: blur(13px);
	opacity: .28;
	transition: opacity .2s ease, transform .2s ease;
}

.cbpq-contact-item:hover::after {
	opacity: .48;
	transform: scale(1.14);
}

.cbpq-contact-icon svg {
	filter: drop-shadow(0 2px 5px rgba(0,0,0,.16));
}

@media (prefers-reduced-motion: reduce) {
	#header .header-main .header-inner {
		animation: none !important;
	}
}

/* ========================================================================== */
/* ABOUT PAGE V2                                                              */
/* ========================================================================== */

.cbpq-about-page-hero {
	position: relative;
	overflow: hidden;
	min-height: 380px;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 16% 20%, rgba(134, 222, 255, .34), transparent 27%),
		radial-gradient(circle at 84% 82%, rgba(4, 55, 96, .38), transparent 31%),
		linear-gradient(125deg, #06365e 0%, #0878c9 58%, #24b2f2 100%) !important;
}

.cbpq-about-page-hero::before,
.cbpq-about-page-hero::after {
	position: absolute;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 50%;
	content: '';
	pointer-events: none;
}

.cbpq-about-page-hero::before {
	top: -175px;
	right: -80px;
	width: 430px;
	height: 430px;
}

.cbpq-about-page-hero::after {
	bottom: -205px;
	left: -95px;
	width: 360px;
	height: 360px;
}

.cbpq-about-page-heading {
	position: relative;
	z-index: 2;
	max-width: 850px;
	margin: 0 auto;
	color: rgba(255,255,255,.86);
}

.cbpq-about-eyebrow {
	display: inline-flex;
	margin-bottom: 18px;
	padding: 9px 16px;
	border: 1px solid rgba(255,255,255,.32);
	border-radius: 999px;
	background: rgba(255,255,255,.12);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.cbpq-about-page-heading h1 {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(52px, 7vw, 88px);
	font-weight: 800;
	letter-spacing: -.045em;
	line-height: .98;
	text-shadow: 0 12px 35px rgba(3, 45, 78, .22);
}

.cbpq-about-page-heading p {
	max-width: 680px;
	margin: 0 auto;
	color: rgba(255,255,255,.84);
	font-size: 18px;
	line-height: 1.75;
}

.cbpq-about-page-section .row {
	max-width: 1200px;
}

.cbpq-about-page-team {
	background:
		linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.95)),
		radial-gradient(circle at center, rgba(8,120,201,.18) 1px, transparent 1.5px) 0 0 / 22px 22px;
}

@media (max-width: 549px) {
	.cbpq-about-page-hero {
		min-height: 310px;
	}

	.cbpq-about-page-heading h1 {
		font-size: 52px;
	}

	.cbpq-about-page-heading p {
		font-size: 15px;
	}
}

/* ========================================================================== */
/* MOBILE OFF-CANVAS MENU – FLATSOME                                          */
/* ========================================================================== */

@media (max-width: 849px) {
	body .mfp-wrap.off-canvas .mfp-content,
	body .off-canvas .mfp-content {
		width: min(88vw, 372px);
		background:
			radial-gradient(circle at 18% 5%, rgba(87, 199, 255, .28), transparent 27%),
			linear-gradient(155deg, #052f50 0%, #075f9e 58%, #087dcc 100%);
		box-shadow: 25px 0 70px rgba(2, 31, 53, .34);
	}

	body .mfp-wrap.off-canvas .mfp-container,
	body .off-canvas .mfp-container {
		padding: 0;
	}

	body .off-canvas .sidebar-menu {
		min-height: 100vh;
		padding: 26px 22px 38px;
		background: transparent;
		color: #fff;
	}

/* 	body .off-canvas .sidebar-menu::before {
		display: block;
		margin: 0 50px 28px 0;
		padding: 8px 0 18px;
		border-bottom: 1px solid rgba(255,255,255,.14);
		color: #fff;
		content: 'Cherry Babysitter\A Phu Quoc';
		font-family: 'Poppins', sans-serif;
		font-size: 19px;
		font-weight: 700;
		line-height: 1.35;
		text-shadow: 0 5px 18px rgba(2, 32, 55, .25);
		white-space: pre-line;
	} */

	body .off-canvas .mfp-close {
		top: 20px;
		right: 5px;
		align-items: center;
        justify-content: center;
        display: flex;
		width: 42px;
		height: 42px;
		min-height: 42px;
		border: 1px solid rgba(255,255,255,.25);
		border-radius: 50%;
		background: rgba(255,255,255,.1);
		color: #fff;
		font-size: 0;
		opacity: 1;
		backdrop-filter: blur(10px);
	}

	body .off-canvas .mfp-close::before,
	body .off-canvas .mfp-close::after {
		position: absolute;
		top: 19px;
		left: 11px;
		width: 20px;
		height: 2px;
		border-radius: 99px;
		background: currentColor;
		content: '';
	}

	body .off-canvas .mfp-close::before { transform: rotate(45deg); }
	body .off-canvas .mfp-close::after { transform: rotate(-45deg); }

	body .off-canvas .searchform {
		margin: 0 0 25px;
		padding: 5px;
		border: 1px solid rgba(255,255,255,.19);
		border-radius: 17px;
		background: rgba(255,255,255,.1);
		box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
		backdrop-filter: blur(12px);
	}

	body .off-canvas .searchform .flex-row {
		align-items: stretch;
	}

	body .off-canvas .searchform input[type='search'] {
		height: 46px;
		margin: 0;
		padding: 0 14px;
		border: 0;
		background: transparent;
		box-shadow: none;
		color: #fff;
		font-family: 'Poppins', sans-serif;
		font-size: 14px;
	}

	body .off-canvas .searchform input[type='search']::placeholder {
		color: rgba(255,255,255,.62);
	}

	body .off-canvas .searchform button {
		width: 46px;
		min-height: 46px;
		margin: 0;
		border: 0;
		border-radius: 13px;
		background: #fff;
		color: var(--cbpq-blue-dark);
	}

	body .off-canvas .nav-sidebar {
		margin: 0;
	}

	body .off-canvas .nav-sidebar > li {
		margin: 0;
		padding: 8px 0;
		border: 0;
	}

	body .off-canvas .nav-sidebar > li > a {
		min-height: 52px;
		align-items: center;
		padding: 0 17px;
		border: 1px solid transparent;
		border-radius: 15px;
		color: rgba(255,255,255,.86);
		font-family: 'Poppins', sans-serif;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: .01em;
		text-transform: none;
		transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
	}

	body .off-canvas .nav-sidebar > li > a:hover,
	body .off-canvas .nav-sidebar > li.current-menu-item > a,
	body .off-canvas .nav-sidebar > li.active > a {
		border-color: rgba(255,255,255,.2);
		background: rgba(255,255,255,.12);
		color: #fff;
		transform: translateX(4px);
	}

	body .off-canvas .nav-sidebar > li.cbpq-menu-contact > a {
		justify-content: center;
		margin-top: 10px;
		border-color: rgba(255,255,255,.8);
		background: linear-gradient(145deg, #fff, #dff3ff);
		color: var(--cbpq-blue-dark);
		box-shadow: 0 12px 28px rgba(2, 37, 64, .24);
		text-align: center;
	}

	body .off-canvas .nav-sidebar > li.cbpq-menu-empty,
	body .off-canvas .sidebar-menu [class*='newsletter'],
	body .off-canvas .sidebar-menu .social-icons,
	body .off-canvas .sidebar-menu li.html-social-icons,
	body .off-canvas .sidebar-menu .header-newsletter-item,
	body .off-canvas .sidebar-menu .widget_nav_menu + .widget,
	body .off-canvas .sidebar-menu .ux-menu-link--newsletter {
		display: none !important;
	}

	body .off-canvas .nav-sidebar::after {
		display: block;
		margin-top: 24px;
		padding: 18px;
		border: 1px solid rgba(255,255,255,.14);
		border-radius: 17px;
		background: rgba(255,255,255,.08);
		color: rgba(255,255,255,.76);
		content: '24/7 Childcare in Phu Quoc\A Zalo: 0919 088 566';
		font-family: 'Poppins', sans-serif;
		font-size: 12px;
		font-weight: 500;
		line-height: 1.75;
		text-align: left;
		white-space: pre-line;
		backdrop-filter: blur(10px);
	}
}

/* SVG thật cho CTA nổi và Footer, không phụ thuộc icon-font của Flatsome */
.cbpq-contact-icon .cbpq-svg,
.cbpq-footer-socials .cbpq-svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cbpq-contact-icon .cbpq-svg .is-fill,
.cbpq-footer-socials .cbpq-svg .is-fill {
	fill: currentColor;
	stroke: none;
}

.cbpq-contact-icon .cbpq-svg-phone,
.cbpq-contact-icon .cbpq-svg-map {
	width: 24px;
	height: 24px;
}

.cbpq-contact-icon .cbpq-svg-zalo {
	width: 30px;
	height: 30px;
	stroke-width: 2.7;
}

.cbpq-footer-socials .cbpq-svg-zalo {
	width: 25px;
	height: 25px;
	stroke-width: 2.7;
}

.cbpq-footer-socials .cbpq-svg-whatsapp {
	width: 23px;
	height: 23px;
}
/* Nút Contact Us nổi bật trên menu */
#header #masthead > div >div:nth-child(4) > ul > li > a{
	position: relative;
	min-width: 150px;
	min-height: 50px;
	justify-content: center;
	overflow: hidden;
	padding: 0 28px !important;
	border: 2px solid #fff !important;
	border-radius: 999px !important;
	background: linear-gradient(
		135deg,
		#ffffff 0%,
		#dff5ff 48%,
		#9ddcff 100%
	) !important;
	color: #07558f !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .01em;
	text-shadow: none !important;
	box-shadow:
		0 10px 28px rgba(0, 43, 82, .28),
		0 0 0 5px rgba(255, 255, 255, .12),
		inset 0 1px 0 #fff;
	animation: cbpqContactButtonGlow 2.5s ease-in-out infinite;
	transition:
		transform .25s ease,
		box-shadow .25s ease,
		background .25s ease !important;
}

/* Vệt sáng chạy trên nút */
#header #masthead > div >div:nth-child(4) > ul  > li > a::before {
	position: absolute;
	top: -50%;
	left: -45%;
	width: 30%;
	height: 200%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, .85),
		transparent
	);
	content: "";
	transform: rotate(22deg);
	animation: cbpqContactShine 3.2s ease-in-out infinite;
	pointer-events: none;
}

/* Hover */
#header #masthead > div >div:nth-child(4) > ul > li > a:hover {
	border-color: #fff !important;
	background: linear-gradient(
		135deg,
		#ffffff,
		#bfeaff
	) !important;
	color: #063f70 !important;
	box-shadow:
		0 16px 38px rgba(0, 42, 80, .34),
		0 0 0 7px rgba(255, 255, 255, .18),
		0 0 28px rgba(120, 213, 255, .65);
	transform: translateY(-3px) scale(1.035);
}

@keyframes cbpqContactButtonGlow {
	0%,
	100% {
		box-shadow:
			0 10px 28px rgba(0, 43, 82, .28),
			0 0 0 4px rgba(255, 255, 255, .10);
	}

	50% {
		box-shadow:
			0 14px 34px rgba(0, 43, 82, .34),
			0 0 0 7px rgba(255, 255, 255, .18),
			0 0 25px rgba(130, 219, 255, .48);
	}
}

@keyframes cbpqContactShine {
	0%,
	55% {
		left: -45%;
	}

	100% {
		left: 125%;
	}
}

/* Tắt chuyển động nếu thiết bị yêu cầu giảm hiệu ứng */
@media (prefers-reduced-motion: reduce) {
	#header #masthead > div > div:nth-child(4) > ul > li > a,
	#header #masthead > div > div:nth-child(4) > ul > li > a::before {
		animation: none !important;
	}
}
.absolute-footer {
	display: none;
}

/* ========================================================================== */
/* ZALO WORDMARK + SCROLL EXPERIENCE V2.1                                    */
/* ========================================================================== */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 112px;
}

/* Chữ Zalo trong bong bóng chat rõ hơn SVG nét mảnh khi hiển thị 20–30px. */
.cbpq-zalo-mark {
	position: relative;
	display: grid;
	width: 32px;
	height: 25px;
	place-items: center;
	border: 2px solid #fff;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 3px 9px rgba(0, 55, 125, .22);
	color: #0878df;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	transform: translateY(-1px);
}

.cbpq-zalo-mark::after {
	position: absolute;
	bottom: -6px;
	left: 5px;
	width: 0;
	height: 0;
	border-top: 7px solid #fff;
	border-right: 7px solid transparent;
	content: '';
}

.cbpq-zalo-word {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: -.7px;
	transform: translateX(-.3px);
}

.cbpq-contact-zalo .cbpq-contact-icon {
	filter: drop-shadow(0 2px 5px rgba(0, 45, 110, .2));
}

.cbpq-footer-socials .cbpq-zalo-mark {
	width: 28px;
	height: 22px;
	border-radius: 6px;
	box-shadow: 0 2px 7px rgba(0, 35, 85, .2);
}

.cbpq-footer-socials .cbpq-zalo-mark::after {
	bottom: -5px;
	border-top-width: 6px;
	border-right-width: 6px;
}

.cbpq-footer-socials .cbpq-zalo-word {
	font-size: 9px;
}

/* Thanh mảnh trên đầu trang cho biết tiến độ cuộn. */
.cbpq-scroll-progress {
	position: fixed;
	z-index: 100001;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, #0068ff 0%, #12bdf5 58%, #79ddff 100%);
	box-shadow: 0 2px 10px rgba(0, 104, 255, .28);
	transform: scaleX(0);
	transform-origin: 0 50%;
	pointer-events: none;
	will-change: transform;
}

/* Hiệu ứng xuất hiện theo vùng nhìn: nhẹ, một lần, không gây giật mobile. */
.cbpq-reveal-enabled .cbpq-scroll-reveal {
	opacity: 0;
	filter: blur(4px);
	transform: translate3d(0, 34px, 0) scale(.992);
	transition:
		opacity .72s cubic-bezier(.22, 1, .36, 1),
		transform .72s cubic-bezier(.22, 1, .36, 1),
		filter .72s ease;
	transition-delay: var(--cbpq-reveal-delay, 0ms);
	will-change: opacity, transform, filter;
}

.cbpq-reveal-enabled .cbpq-scroll-reveal.is-visible {
	opacity: 1;
	filter: blur(0);
	transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 849px) {
	html {
		scroll-padding-top: 78px;
	}

	.cbpq-scroll-progress {
		height: 3px;
	}

	.cbpq-reveal-enabled .cbpq-scroll-reveal {
		filter: none;
		transform: translate3d(0, 24px, 0);
		transition-duration: .62s;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.cbpq-reveal-enabled .cbpq-scroll-reveal,
	.cbpq-reveal-enabled .cbpq-scroll-reveal.is-visible {
		opacity: 1;
		filter: none;
		transform: none;
		transition: none;
	}

	.cbpq-scroll-progress {
		box-shadow: none;
	}
}
@media (max-width: 549px) {
	.cbpq-section h1 {
		font-size: 36px;
	}

	.cbpq-section h2 {
		font-size: 30px;
	}

	.cbpq-section p,
	.cbpq-section li {
		font-size: 15px;
	}

	.cbpq-image-hero {
		border-width: 6px;
		border-radius: 25px;
		transform: none;
	}

	.cbpq-person-card img {
		aspect-ratio: .88 / 1;
	}

	.cbpq-review-avatar img {
		width: 70px;
		height: 70px;
		border-width: 3px;
	}

	.cbpq-review-stars div {
		font-size: 25px;
	}

	.cbpq-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
	}

	.cbpq-gallery-item {
		border-radius: 13px;
	}

	.cbpq-contact-buttons {
		top: auto;
		right: 12px;
		bottom: 12px;
		left: 12px;
		flex-direction: row;
		justify-content: center;
		padding: 8px;
		border: 1px solid rgba(255,255,255,.75);
		border-radius: 999px;
		background: rgba(255,255,255,.88);
		box-shadow: 0 12px 35px rgba(23,50,77,.18);
		backdrop-filter: blur(12px);
		transform: none;
	}

	.cbpq-contact-item {
		width: 36px;
		height: 36px;
		border-width: 2px;
	}

	.cbpq-contact-item:hover {
		transform: translateY(-3px);
	}

	.cbpq-contact-label {
		display: none;
	}
	.cbpq-zalo-mark {
		width: 24px;
	}
}