/* =====================================================================
 * Celléva – Homepage sectors  (revision 2)
 *
 * Font: Montserrat (heading) + Roboto (body)
 * Mặc định nền trắng, mỗi card / sector phụ dùng beige #F8F1EA
 * ===================================================================== */

/* Headings dùng Montserrat */
.celleva-section h1,
.celleva-section h2,
.celleva-section h3,
.celleva-section h4 {
	font-family: var(--font-head);
}

/* =========================================================
 * SECTOR 1 – HERO
 * ========================================================= */
.celleva-s1 {
	min-height: 760px;
	background-color: var(--cl-bg-soft);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	padding-block: clamp(60px, 8vw, 130px) clamp(120px, 12vw, 180px);
	overflow: hidden;
}
.celleva-s1::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(248,241,234,.95) 0%, rgba(248,241,234,.75) 35%, rgba(248,241,234,0) 60%);
	pointer-events: none;
}
.celleva-s1 .celleva-container { position: relative; z-index: 1; }

.celleva-section h1.celleva-s1__title {
	font-family: var(--font-display); /* TUV Domaine Display */
	font-weight: 500;
	font-size: clamp(36px, 11vw, 100px);
	line-height: 1.0;
	letter-spacing: 0.005em;
	margin: 0;
	color: var(--cl-text);
	overflow-wrap: break-word;
}
.celleva-s1__title span { display: block; }

/* Nút "Khám phá dịch vụ" – 300x60px, nền #C68781, bo góc 15px */
.celleva-s1__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 300px;
	height: 56px;
	margin-top: 28px;
	padding: 0 8px 0 28px;
	background: var(--cl-pink); /* #C68781 */
	color: #fff;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 50px;
	transition: background .25s ease, transform .25s ease;
}
/* Mũi tên trong vòng tròn trắng */
.celleva-s1__btn span {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	color: var(--cl-pink);
	font-size: 20px;
	line-height: 1;
}
.celleva-s1__btn:hover {
	background: #b3736d;
	transform: translateY(-2px);
}

.celleva-s1__subtitle {
	font-family: var(--font-head); /* Montserrat */
	font-style: normal;
	font-weight: 600;             /* SemiBold */
	font-size: 32px;
	margin: 14px 0 22px;
	color: var(--cl-text);
}
.celleva-s1__desc {
	max-width: 620px;
	color: var(--cl-text);
	font-size: 20px;
	font-weight: 600;             /* SemiBold */
	line-height: 1.7;
	margin: 0;
}

/* =========================================================
 * SECTOR 2 – 4 USP cards (floating)
 * ========================================================= */
.celleva-s2 {
	/* Card USP nằm vắt từ hero xuống – nửa trên chồng lên hero (beige),
	 * nửa dưới nằm trên nền trắng sector 3.
	 * KHÔNG dùng margin-bottom âm vì sẽ kéo tiêu đề s3 chồng lên card. */
	background: transparent;
	margin-top: -55px;
	margin-bottom: 0;
	padding-block: 0;
	position: relative;
	z-index: 5;
}
.celleva-s2__card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 24px 60px -25px rgba(74, 47, 38, .25);
	padding: 0 clamp(24px, 3vw, 48px);
	height: 185px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	align-items: center;
}
.celleva-s2__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-inline: 12px;
	position: relative;
}
.celleva-s2__item + .celleva-s2__item::before { display: none; }
.celleva-s2__icon {
	flex: 0 0 46px;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--cl-bg-soft);
	display: grid; place-items: center;
	color: var(--cl-pink);
}
.celleva-s2__icon img { width: 26px; height: 26px; object-fit: contain; }
.celleva-s2__icon svg { width: 24px; height: 24px; display: block; }
.celleva-s2__text { display: flex; flex-direction: column; }
.celleva-s2__text span {
	font-family: var(--font-head); /* Montserrat */
	font-weight: 600;              /* SemiBold */
	font-size: 20px;
	line-height: 24px;
	color: var(--cl-text);
}

/* =========================================================
 * SECTOR 3 – TRIẾT LÝ THƯƠNG HIỆU (nền trắng)
 * ========================================================= */
.celleva-s3 {
	background: var(--cl-bg);
	/* padding-top đủ lớn để nội dung (tiêu đề eyebrow) không bị card USP che khuất. */
	padding-top: clamp(50px, 5vw, 70px);
}
.celleva-s3__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(40px, 5vw, 96px);
	align-items: center;
}
/* Theo thiết kế: eyebrow NHỎ (Montserrat) phía trên, tiêu đề LỚN serif bên dưới
 * – ngược với mặc định .celleva-eyebrow (serif lớn) nên override trong phạm vi s3. */
.celleva-s3 .celleva-eyebrow {
	font-family: var(--font-head);              /* Montserrat */
	font-weight: 600;                           /* SemiBold */
	font-size: 24px;
	letter-spacing: 0.18em;
	line-height: 1.4;
	margin: 0 0 14px;
}
.celleva-s3__heading {
	font-family: var(--font-display);           /* TUV Domaine Display – serif lớn */
	font-weight: 400;                           /* Regular */
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	margin: 0 0 22px;
	max-width: 560px;
	color: var(--cl-text);
}
.celleva-s3__desc { color: var(--cl-text-soft); font-size: 20px; font-weight: 600; line-height: 1.75; }
.celleva-s3__desc p { margin: 0 0 14px; }
.celleva-s3__intro .celleva-arrow-link { margin-top: 6px; }

/* 3 card chữ nhật bo góc, nền trắng, có shadow mềm – khớp Figma sector2.
 * Side card: 290x390. Center card: 300x485 và nhô lên cao hơn.
 * Ảnh bên trong là vòng tròn nhỏ (~96px) ở top center; PNG nguồn 2/3/4.png
 * đã pre-cropped hình tròn nên không cần CSS clip thêm. */
/* Card giữa chồng đè lên 2 card bên (margin âm) + z-index cao hơn
 * → cảm giác 3D nổi lên phía trước. KHÔNG dùng gap. */
.celleva-s3__cards {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.celleva-s3__card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(40, 24, 16, 0.08), 0 2px 8px rgba(40, 24, 16, 0.05);
	padding: 50px 22px 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* Ảnh sát đầu card, text ngay dưới ảnh với gap cố định.
	 * Trước đây dùng space-between khiến card giữa (cao 485px) đẩy text rớt xuống đáy → cách xa ảnh. */
	justify-content: flex-start;
	gap: 22px;
	position: relative;
	flex-shrink: 0;
}
.celleva-s3__card:not(.is-main) { width: 290px; height: 390px; z-index: 1; }
.celleva-s3__card.is-main {
	width: 300px;
	height: 485px;
	z-index: 2;                       /* nổi lên trên 2 card bên */
	margin: 0 -20px;                  /* lấn 20px sang mỗi card bên (giảm 10px so với trước để không đè text) */
	box-shadow: 0 24px 50px rgba(40, 24, 16, 0.12), 0 4px 12px rgba(40, 24, 16, 0.06);
}

.celleva-s3__card-img {
	width: 96px;
	height: 96px;
	margin: 0;             /* khoảng cách avatar → text do justify-content: space-between đảm nhận */
	display: block;
	line-height: 0;
	border-radius: 50%;
	overflow: hidden;
	background: transparent;
	flex-shrink: 0;
}
.celleva-s3__card-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

.celleva-s3__card-body {
	padding: 0;
	text-align: center;
}
.celleva-s3__card-title {
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 600;              /* SemiBold */
	letter-spacing: 0.08em;
	line-height: 1.35;
	margin: 0 0 14px;
	color: var(--cl-text);
}
.celleva-s3__card-desc {
	font-size: 12px;
	font-weight: 600;              /* SemiBold */
	color: var(--cl-text-soft);
	line-height: 1.6;
	margin: 0;
}

/* ---------- Link "xem thêm" mũi tên (dùng chung s3 / s6 / s7) ---------- */
.celleva-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-head);
	font-weight: 400;              /* Regular */
	font-size: 20px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cl-pink);
	white-space: nowrap;
	transition: gap .2s ease, color .2s ease;
}
.celleva-arrow-link span { font-size: 1.25em; line-height: 0; }
.celleva-arrow-link:hover { gap: 12px; color: var(--cl-text); }

/* Header có link "xem thêm" căn phải (s6 / s7). */
.celleva-head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	max-width: none;
}
.celleva-head--split .celleva-head__text { max-width: 880px; }

/* =========================================================
 * SECTOR 4 – TRỤ CỘT QUAN TRỌNG (nền trắng, card body beige)
 * ========================================================= */
.celleva-s4 { background: var(--cl-bg); padding-block: 28px; }
.celleva-s4__head {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 28px;
}
.celleva-s4__eyebrow {
	margin-bottom: 0;
	font-family: var(--font-display); /* TUV Domaine Display */
	font-weight: 400;              /* Regular */
	font-size: 48px;
	color: var(--cl-text);        /* màu đen */
}
.celleva-s4__count {
	color: var(--cl-pink);
	font-weight: 700;
	margin-right: .25em;
}
.celleva-s4__desc {
	color: var(--cl-text-soft);
	font-family: var(--font-body);
	font-weight: 600;              /* SemiBold */
	font-size: 20px;
	margin: 0;
}

/* Tabs: nền beige nhạt, bo nhẹ, căn giữa, hover gạch chân */
.celleva-s4__tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 0;
	margin: 28px 0 36px;
	background: var(--cl-bg-soft);   /* #F8F1EA – beige nhạt */
	border-radius: 6px;
	padding: 6px 8px;
}
.celleva-s4__tab {
	display: block;
	text-align: center;
	padding: 14px 12px;
	font-family: var(--font-body);
	font-weight: 500;              /* Medium */
	font-size: 20px;
	color: var(--cl-text);
	border: 0;
	background: transparent;
	text-decoration: none;
	position: relative;
	transition: color .2s;
}
.celleva-s4__tab::after {
	content: '';
	position: absolute;
	left: 50%; bottom: 8px;
	transform: translateX(-50%);
	width: 0; height: 1px;
	background: var(--cl-text);
	transition: width .25s ease;
}
.celleva-s4__tab:hover::after,
.celleva-s4__tab.is-active::after { width: calc(100% - 24px); }
.celleva-s4__tab:hover { color: var(--cl-pink); }

.celleva-s4__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.celleva-s4__card {
	background: transparent; /* ảnh ngoài beige */
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.celleva-s4__card-img {
	width: 100%;
	aspect-ratio: 3 / 2.1;
	background: var(--cl-bg-soft) center/cover no-repeat;
	border-radius: 14px 14px 0 0;
}
.celleva-s4__card-body {
	background: var(--cl-bg-soft);   /* nền beige theo design */
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	border-radius: 0 0 14px 14px;
}
.celleva-s4__num {
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 600;
	color: var(--cl-pink);
	letter-spacing: 0.05em;
}
.celleva-s4__card-title {
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin: 0;
	color: var(--cl-text);
}
.celleva-s4__card-desc {
	font-size: 15px;
	font-weight: 500;              /* Medium */
	color: var(--cl-text-soft);
	line-height: 1.6;
	margin: 0;
}
.celleva-s4__link {
	margin-top: auto;
	font-family: var(--font-head);
	font-size: 11.5px;
	letter-spacing: 0.12em;
	font-weight: 700;
	color: var(--cl-text);
	text-transform: uppercase;
}
.celleva-s4__link:hover { color: var(--cl-pink); }

/* =========================================================
 * SECTOR 5 – ĐỘI NGŨ CHUYÊN GIA (nền trắng, card beige)
 * ========================================================= */
.celleva-s5 { background: var(--cl-bg); padding-block: 28px; }
.celleva-s5__grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(40px, 5vw, 90px);
	align-items: start;
}
.celleva-s5__heading {
	font-family: var(--font-head);              /* Montserrat */
	font-weight: 600;                           /* SemiBold */
	font-size: 20px;
	line-height: 1.25;
	color: var(--cl-text);
	margin: 6px 0 22px;
}
.celleva-s5__desc { color: var(--cl-text-soft); font-size: 20px; font-weight: 600; line-height: 1.8; }
.celleva-s5__intro .celleva-arrow-link { margin-top: 14px; }
.celleva-s5__desc p { margin: 0 0 14px; }
/* Đoạn thứ 3 "Một phương pháp chăm sóc da toàn diện và khác biệt" in đậm như sub-heading. */
.celleva-s5__desc p:nth-of-type(3) {
	color: var(--cl-text);
	font-weight: 600;
	margin-bottom: 6px;
}
.celleva-s5__desc p:nth-of-type(3) + p { margin-top: 0; }

.celleva-s5__doctors {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.celleva-s5__doctor {
	background: var(--cl-bg-soft);   /* card beige */
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.celleva-s5__photo {
	width: 100%;
	aspect-ratio: 1 / 1.05;
	background: var(--cl-bg-soft);
	overflow: hidden;
}
.celleva-s5__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.celleva-s5__name {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
	/* min-height = 2 dòng × 18px × line-height 1.3 ≈ 47px → bio luôn thẳng hàng dù tên dài ngắn khác nhau */
	min-height: 47px;
	margin: 14px 16px 14px;
	color: var(--cl-text);
}
.celleva-s5__pos {
	font-size: 12px;
	color: var(--cl-pink);
	margin: 0 16px 20px;
}
.celleva-s5__bio {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: var(--cl-text-soft);
	line-height: 1.55;
	margin: 0 16px 18px;
	padding-left: 16px;
	list-style: disc;
}
.celleva-s5__bio li { margin-bottom: 4px; }
.celleva-s5__bio li::marker { color: var(--cl-pink); }

/* =========================================================
 * SECTOR 6 – TRẢI NGHIỆM QUIET LUXURY
 * 4 ảnh: ảnh đầu nhỏ (bed), giữa to (reception), 2 ảnh phải đứng
 *   Theo Figma: layout 4 cột nhưng kích thước khác nhau
 * ========================================================= */
.celleva-s6 { background: var(--cl-bg); }
.celleva-s6__head { margin-bottom: 28px; }
.celleva-s6__heading {
	font-family: var(--font-head);              /* Montserrat */
	font-weight: 600;                           /* SemiBold */
	font-size: 20px;
	line-height: 1.25;
	color: var(--cl-text);
	margin: 6px 0 14px;
}
.celleva-s6__desc {
	color: var(--cl-text-soft);
	font-size: 20px;
	font-weight: 600;                           /* SemiBold */
	line-height: 1.75;
	margin: 0;
}
.celleva-s6__gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.celleva-s6__cell {
	aspect-ratio: 382 / 305;       /* tỉ lệ landscape theo Figma */
	max-width: 382px;
	width: 100%;
	margin: 0 auto;
	border-radius: 12px;
	background: var(--cl-bg-soft) center/cover no-repeat;
}

/* =========================================================
 * SECTOR 7 – BÍ QUYẾT
 * ========================================================= */
.celleva-s7 { background: var(--cl-bg); margin-top: 10px; }
.celleva-s7__head { margin-bottom: 28px; }
.celleva-s7__desc { color: var(--cl-text-soft); margin: 4px 0 0; font-size: 20px; font-weight: 600; }
.celleva-s7__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.celleva-s7__card {
	display: flex;
	flex-direction: column;
	color: inherit;
	background: var(--cl-bg-soft);              /* beige nhạt #F8F1EA – nền card */
	border-radius: 12px;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}
.celleva-s7__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px -16px rgba(40, 24, 16, 0.18);
}
.celleva-s7__img {
	width: 100%;
	aspect-ratio: 380 / 285;                    /* khớp kích thước gốc ảnh upload */
	background: var(--cl-bg-soft) center/cover no-repeat;
}
.celleva-s7__body {
	padding: 18px 20px 22px;                    /* khối text trên nền beige */
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-grow: 1;                               /* body căng để các card cao bằng nhau */
}
.celleva-s7__title {
	font-family: var(--font-head);              /* Montserrat Regular */
	font-size: 20px;
	font-weight: 400;                           /* Regular */
	letter-spacing: 0.04em;
	line-height: 1.35;
	margin: 0;
	color: var(--cl-text);
	text-transform: uppercase;
}
.celleva-s7__excerpt {
	font-family: var(--font-body);
	font-size: clamp(12px, 0.85vw, 14px);
	color: var(--cl-text-soft);
	margin: 0;
	line-height: 1.55;
}

/* =========================================================
 * SECTOR 8 – ĐỔI MỚI – background ảnh 20
 * ========================================================= */
.celleva-s8 {
	background-color: var(--cl-bg-soft);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
	padding-block: clamp(50px, 5vw, 90px);   /* full-bleed image cần dày hơn để text breath */
	position: relative;
}
.celleva-s8__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 4vw, 80px);
	align-items: center;
}
.celleva-s8__text { max-width: 640px; }
.celleva-s8__eyebrow {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: clamp(20px, 1.6vw, 28px);
	letter-spacing: 0.02em;
	color: var(--cl-text);
	margin: 0 0 14px;
}
.celleva-s8__heading {
	font-family: var(--font-head);              /* Montserrat */
	font-weight: 500;                           /* Medium */
	font-size: clamp(24px, 2.8vw, 40px);
	line-height: 1.25;
	margin: 0 0 22px;
	color: var(--cl-text);
}
.celleva-s8__tag {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 12.5px;
	letter-spacing: 0.16em;
	color: var(--cl-pink);
	font-weight: 500;
}

/* =========================================================
 * SECTOR 9 – TESTIMONIALS (pink bg, 98% trong khung lá nguyệt quế)
 * ========================================================= */
.celleva-s9 {
	background: var(--cl-pink);
	color: #fff;
	padding-block: clamp(40px, 4vw, 60px);   /* pink testimonial – cần dày vừa cho slider */
}
.celleva-s9__grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(40px, 5vw, 80px);
	align-items: center;
}
.celleva-s9__badge {
	display: block;
	width: 100%;
	max-width: 460px;
	height: auto;
}

/* Items container: mặc định grid 2 cột (1-2 testimonials).
 * Khi > 2 testimonials, thêm class --slide để tự trượt ngang. */
.celleva-s9__items {
	min-width: 0;
}
.celleva-s9__items:not(.celleva-s9__items--slide) .celleva-s9__track {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* === Slider variant (pure-CSS, no JS, no arrow/dot) ===
 * Render items 2 lần → loop seamless. Pause-step animation:
 *   show [0,1] → slide → show [1,2] → slide → show [2,3 = dup A,B] → loop về 0
 * Tại frame 100% (translateX -150%) hiển thị duplicate A,B → trùng visual với
 * frame 0% nên animation infinite không bị giật. */
.celleva-s9__items--slide {
	overflow: hidden;
}
.celleva-s9__items--slide .celleva-s9__track {
	display: flex;
	gap: 44px;                          /* gap thật giữa các card (không nằm trong card background) */
	width: 100%;
	animation: celleva-s9-slide 18s ease-in-out infinite;
	/* Shift = item-width + gap; default 50% - 22px + 44px = 50% + 22px. */
	--s9-shift: calc(50% + 22px);
}
.celleva-s9__items--slide .celleva-s9__item {
	flex: 0 0 var(--s9-item-w, calc(50% - 22px));
	box-sizing: border-box;
}

@keyframes celleva-s9-slide {
	0%, 27%  { transform: translateX(0); }                            /* hold 5s – A, B */
	33%, 60% { transform: translateX(calc(-1 * var(--s9-shift))); }   /* hold 5s – B, C */
	66%, 93% { transform: translateX(calc(-2 * var(--s9-shift))); }   /* hold 5s – C, A */
	100%     { transform: translateX(calc(-3 * var(--s9-shift))); }   /* duplicate – seamless loop */
}

.celleva-s9__item {
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 14px;
	padding: 22px 24px;
	margin: 0;
	color: #fff;
	position: relative;
}
.celleva-s9__person {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.celleva-s9__avatar {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,.45);
	flex: 0 0 38px;
}
.celleva-s9__person-meta strong {
	display: block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 13.5px;
}
.celleva-s9__person-meta em {
	font-style: normal;
	font-size: 11.5px;
	opacity: .9;
}
.celleva-s9__quote {
	margin-left: auto;
	font-family: var(--font-head);
	font-size: 56px;
	line-height: 0.5;
	opacity: .85;
	color: #fff;
	align-self: flex-start;
}
.celleva-s9__item blockquote {
	margin: 0;
	font-family: var(--font-body);
	font-size: 13px;
	line-height: 1.65;
	opacity: .98;
	color: #fff;
}

/* =========================================================
 * SECTOR 10 + 11 GỘP – CTA | BẢN ĐỒ | LIÊN HỆ (1 dải 3 cột theo thiết kế)
 * ========================================================= */
.celleva-s10 {
	background: #F7F2ED;                        /* nền theo Figma */
	padding-block: clamp(40px, 4vw, 70px);     /* CTA full-bleed bg, cần dày hơn default */
}
.celleva-contact__grid {
	display: grid;
	grid-template-columns: 1.05fr 1.25fr 0.9fr;
	gap: clamp(28px, 3.2vw, 56px);
	align-items: start;
}
.celleva-contact__cta { align-self: center; }

/* Cột bản đồ. */
.celleva-contact__map {
	border-radius: 14px;
	overflow: hidden;
	min-height: 360px;
	height: 100%;
	background: var(--cl-bg-soft);
}
.celleva-contact__map iframe {
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
	display: block;
}
.celleva-contact__map-placeholder { padding: 24px; color: var(--cl-text-soft); font-size: 13px; }

/* Cột thông tin liên hệ. */
.celleva-contact__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(20px, 1.7vw, 26px);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cl-pink);
	margin: 0 0 20px;
}
.celleva-contact__row {
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 12px;
	margin-bottom: 18px;
	font-family: var(--font-body);
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--cl-text);
}
.celleva-contact__icon { color: var(--cl-pink); display: inline-flex; align-items: flex-start; padding-top: 1px; }
.celleva-contact__row strong { display: block; font-weight: 600; }
.celleva-contact__row a { color: var(--cl-pink); text-decoration: none; word-break: break-word; }
.celleva-contact__row a:hover { text-decoration: underline; }
.celleva-contact__addresses { list-style: none; padding: 0; margin: 0; }
.celleva-contact__addresses li { margin-bottom: 4px; }
.celleva-contact__addresses li::before { content: '- '; }

/* Heading CTA = pink display style (TUV Domaine Display 48px, letter-spacing 25). */
.celleva-s10__heading {
	font-family: var(--font-display);
	font-weight: 400;                           /* Regular */
	font-size: 30px;
	letter-spacing: 0.025em;
	line-height: 1.15;
	color: var(--cl-pink);
	margin: 0 0 16px;
	text-transform: uppercase;
}
.celleva-s10__desc {
	color: var(--cl-text-soft);
	margin: 0 0 22px;
	font-size: 20px;
	font-weight: 600;                           /* SemiBold */
	line-height: 1.7;
	max-width: 520px;
}
.celleva-contact__cta .celleva-btn { padding: 18px 32px; font-size: 15px; }
.celleva-s10__sub {
	display: block;
	margin-top: 14px;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.16em;
	color: var(--cl-text-soft);
	font-weight: 500;
	text-transform: uppercase;
}
/* "TƯ VẤN RIÊNG TƯ - BẢO MẬT THÔNG TIN": phần sau dấu " - " in màu hồng. */
.celleva-s10__sub-em { color: var(--cl-pink); }

/* =========================================================
 * SECTOR 11 – LOCATION (map to hơn)
 * ========================================================= */
.celleva-s11 { padding-block: 28px; background: var(--cl-bg); }
.celleva-s11__grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: clamp(40px, 5vw, 80px);
	align-items: start;
}
.celleva-s11__heading {
	font-family: var(--font-head);              /* Montserrat */
	font-weight: 500;                           /* Medium */
	font-size: clamp(24px, 2.8vw, 40px);
	line-height: 1.25;
	margin: 4px 0 24px;
	color: var(--cl-text);
}
/* Layout: mỗi block (addresses / hours / hotline) = icon trái + nội dung phải.
 * Text: Montserrat Regular 20px, line-height 24px (theo spec Figma). */
.celleva-s11__block {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 14px;
	margin-bottom: 28px;
	font-family: var(--font-body);     /* Montserrat */
	font-weight: 400;                  /* Regular */
	font-size: 20px;
	line-height: 24px;                 /* khoảng cách dòng 24 */
	color: var(--cl-text);
}
.celleva-s11__icon {
	color: var(--cl-pink);
	display: inline-flex;
	align-items: flex-start;
	padding-top: 2px;
}
.celleva-s11__block-body strong { display: block; }
.celleva-s11__block a { color: var(--cl-pink); }

.celleva-s11__addresses {
	list-style: none;
	padding: 0;
	margin: 0;
}
.celleva-s11__addresses li {
	padding: 0;
	color: var(--cl-text);
}
.celleva-s11__addresses li::before {
	content: '- ';
	color: inherit;
}

.celleva-s11__map {
	border-radius: 14px;
	overflow: hidden;
	min-height: 520px;          /* TO hơn nhiều theo design */
	background: var(--cl-bg-soft);
}
.celleva-s11__map iframe {
	width: 100%;
	height: 100%;
	min-height: 520px;
	border: 0;
	display: block;
}
.celleva-s11__map-placeholder {
	padding: 24px;
	color: var(--cl-text-soft);
	font-size: 13px;
}

/* SECTOR 12 (footer) CSS đã chuyển sang global.css để dùng chung mọi trang. */

/* =====================================================================
 *  RESPONSIVE
 * ===================================================================== */
@media (max-width: 1180px) {
	.celleva-s2__card { grid-template-columns: repeat(2, 1fr); gap: 8px 18px; }
	.celleva-s2__item:nth-child(odd)::before { display: none; }

	.celleva-s3__grid,
	.celleva-s5__grid,
	.celleva-s8__inner,
	.celleva-s9__grid,
	.celleva-s10__inner,
	.celleva-s11__grid {
		grid-template-columns: 1fr;
	}
	/* Dải liên hệ: 1 cột CTA + (bản đồ | liên hệ) 2 cột ở tablet. */
	.celleva-contact__grid { grid-template-columns: 1fr 1fr; }
	.celleva-contact__cta { grid-column: 1 / -1; }
	/* Header có link "xem thêm": xuống dòng, link về trái. */
	.celleva-head--split { flex-direction: column; align-items: flex-start; gap: 14px; }
	.celleva-s11__info {
		text-align: center;
	}
	.celleva-s11__block {
		justify-items: center;
		text-align: left; /* text bên trong vẫn trái cho dễ đọc */
	}
	.celleva-s11__icon { justify-self: center; }
	/* eyebrow + heading căn giữa */
	.celleva-s11__info .celleva-eyebrow,
	.celleva-s11__heading { text-align: center; }
	/* block: icon + text căn giữa cả khối */
	.celleva-s11__block {
		grid-template-columns: auto;
		justify-content: center;
		gap: 8px;
	}
	.celleva-s11__icon { width: 100%; display: flex; justify-content: center; }

	.celleva-s4__grid,
	.celleva-s7__grid,
	.celleva-s6__gallery,
	.celleva-s5__doctors {
		grid-template-columns: repeat(2, 1fr);
	}
	/* Tablet: giữ overlap (flex layout từ rule chính, không cần override). */

	.celleva-s4__tabs { grid-template-columns: repeat(2, 1fr); }

	.celleva-s9__items:not(.celleva-s9__items--slide) .celleva-s9__track { grid-template-columns: 1fr; }
	/* Tablet/mobile slider: 1 testimonial visible mỗi frame, gap không cần thiết */
	.celleva-s9__items--slide .celleva-s9__track { --s9-item-w: 100%; --s9-shift: 100%; gap: 0; }
	.celleva-s11__map { min-height: 380px; }
	.celleva-s11__map iframe { min-height: 380px; }
}

@media (max-width: 640px) {
	.celleva-s1 { background-position: top right; min-height: 560px; padding-block: 120px 140px; }
	.celleva-s1::before { background: linear-gradient(180deg, rgba(248,241,234,.4) 0%, rgba(248,241,234,.95) 60%); }

	/* Mobile: card float giữa hero và sector 3 */
	.celleva-s2 { margin-top: -80px; margin-bottom: 0; }
	.celleva-s2__card {
		grid-template-columns: 1fr;
		height: auto;          /* bỏ height cố định 185px – tự giãn theo 4 item dọc */
		padding: 18px 20px 22px; /* top / inline / bottom – đủ bao trọn 4 item */
	}
	.celleva-s2__item + .celleva-s2__item::before { display: none; }
	.celleva-s2__item { padding-block: 14px; border-top: 1px solid var(--cl-line); }
	.celleva-s2__item:first-child { border-top: none; }
	.celleva-s2__text span { font-size: 15px; line-height: 20px; }
	/* Sector 3 chỉ cần breathing room nhỏ — card đã kết thúc đúng tại ranh giới sector 3 */
	.celleva-s3 { padding-top: 32px; }

	/* Mobile: stack dọc, bỏ overlap. */
	.celleva-s3__cards { flex-direction: column; gap: 20px; }
	.celleva-s3__card:not(.is-main),
	.celleva-s3__card.is-main { width: 100%; max-width: 320px; height: auto; min-height: 0; padding: 28px 22px; margin: 0; }
	.celleva-s4__grid,
	.celleva-s7__grid,
	.celleva-s6__gallery,
	.celleva-s5__doctors {
		grid-template-columns: 1fr;
	}
	.celleva-s4__tabs { grid-template-columns: 1fr; }
	.celleva-contact__grid { grid-template-columns: 1fr; }
	.celleva-contact__map { min-height: 300px; }
	.celleva-contact__map iframe { min-height: 300px; }
	.celleva-contact__info { padding: 0 35px 0 35px; }

	/* Mobile: căn giữa tất cả đoạn mô tả (__desc); desktop giữ căn trái. */
	.celleva-s1__desc,
	.celleva-s3__desc,
	.celleva-s4__desc,
	.celleva-s5__desc,
	.celleva-s6__desc,
	.celleva-s7__desc,
	.celleva-s10__desc { text-align: center; }
	/* Mobile: chỉnh font theo yêu cầu. */
	.celleva-s4__tab { font-size: 17px; }
	.celleva-eyebrow { font-size: clamp(37px, 3.2vw, 48px); }
	.celleva-s10__heading { font-size: 29px; }

	/* Footer responsive đã chuyển sang global.css. */
}
