/* ══ nha-khoa-nu-cuoi-xua — RETRO-BOLD Identity ══
   Font: Space Grotesk (heading weight 800, wide letter-spacing) | Tone: cream-dominant, poster-retro
   Identity: vintage poster palette, dashed/thick borders, offset shadows, frame elements
   Class prefix: nc- (nu-cuoi-xua)
   Bootstrap: 5.3.3 | Design: RETRO-BOLD token
   Accent chính: Teal cổ điển #1f7a6b | Phụ (nhỏ, không phải accent chính): Mustard #c98a1f
*/

:root {
  --bg:           #f5efdd;   /* Nền tổng thể — cream ấm */
  --bg-2:         #ede2c6;   /* Nền cream đậm hơn — dải phụ */
  --surface:      #fffbf1;   /* Card, panel */
  --dark:         #1c2b26;   /* Footer, dải tối trong hero */
  --dark2:        #12201c;   /* Dark section đậm hơn */
  --border:       #241f16;   /* Border đậm — dùng cho khung retro */
  --border-light: #ddd0ac;   /* Divider nhẹ */
  --text:         #241f16;   /* Text chính — nâu đen ấm */
  --text-2:       #5c5344;   /* Text phụ */
  --text-3:       #8c8270;   /* Text mờ */
  --cream-ink:    #f5efdd;   /* Text trên nền tối */
  --cream-ink-2:  rgba(245,239,221,.62);

  --accent:       #1f7a6b;   /* Teal cổ điển — accent CHÍNH */
  --accent-h:     #175f53;   /* Teal hover đậm hơn */
  --accent-light: #e2efec;   /* Teal nền nhạt */
  --accent-mid:   #2f9683;   /* Teal sáng hơn, dùng trên nền tối */

  --mustard:      #c98a1f;   /* Mustard — CHỈ dùng điểm nhấn phụ nhỏ (badge/icon), không phải accent chính */
  --mustard-light:#f4e6c8;

  --danger:       #e24b4a;

  --sans: 'Space Grotesk', sans-serif;
  --bs-body-font-family: var(--sans);
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text);
  --bs-border-color: var(--border);
}

/* ── Reset & Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--sans); margin: 0; }
p { margin: 0; }
ul { margin: 0; }

/* ── Layout ── */
.wd-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}
.sec-pad { padding: clamp(72px, 10vw, 128px) 0; }

/* ── Reveal animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ── Retro frame decoration (dùng lặp lại khắp trang) ── */
.nc-frame-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2.5px solid var(--mustard);
}
.nc-frame-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.nc-frame-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.nc-frame-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.nc-frame-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* ── Section header — light bg ── */
.nc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 2px solid var(--text);
  padding: 5px 14px;
  margin-bottom: 20px;
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--mustard);
}
.nc-title {
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.nc-title span { color: var(--accent); }
.nc-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 540px;
}

/* Section header — dark bg */
.nc-eyebrow-dk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--mustard);
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 2px solid var(--cream-ink);
  padding: 5px 14px;
  margin-bottom: 20px;
}
.nc-title-dk {
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 800;
  color: var(--cream-ink);
  line-height: 1.08;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.nc-title-dk span { color: var(--accent-mid); }
.nc-sub-dk {
  font-size: 15px;
  font-weight: 400;
  color: var(--cream-ink-2);
  line-height: 1.75;
  max-width: 540px;
}

/* ──────────────────────────────────────
   NAV — Nav-5 poster: centered logo (framed) + links below
   ────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--bg);
  border-bottom: 3px solid var(--text);
}
.nc-nav-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0 10px;
  gap: 12px;
}
.nc-logo {
  justify-self: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  border: 2px solid var(--text);
  padding: 8px 18px;
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--accent);
  white-space: nowrap;
}
.nc-logo span { color: var(--accent); }
.nc-nav-cta {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border: 2px solid var(--text);
  box-shadow: 3px 3px 0 var(--text);
  transition: all .18s;
}
.nc-nav-cta:hover {
  background: var(--text);
  color: var(--bg);
  transform: translate(2px,2px);
  box-shadow: 1px 1px 0 var(--accent);
}
.nc-hamburger {
  justify-self: start;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: 2px solid var(--text);
  background: var(--surface);
}
.nc-hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--text);
}
.nc-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nc-hamburger.open span:nth-child(2) { opacity: 0; }
.nc-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nc-nav-links {
  list-style: none;
  padding: 10px 0 12px;
  margin: 0;
  border-top: 1px dashed var(--border-light);
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}
.nc-nav-links a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-2);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
.nc-nav-links a:hover,
.nc-nav-links a.active { color: var(--accent); }
.nc-nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--mustard);
}
.nc-nav-mob {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nc-nav-mob.open { opacity: 1; pointer-events: auto; }
.nc-nav-mob a {
  font-size: 20px;
  font-weight: 700;
  color: var(--cream-ink-2);
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color .2s;
}
.nc-nav-mob a:hover { color: var(--mustard); }
.nc-nav-mob .nc-mob-cta {
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 34px;
  border: 2px solid var(--cream-ink);
  font-size: 13px;
  letter-spacing: 2px;
}
@media (max-width: 860px) {
  .nc-nav-cta { display: none; }
  .nc-hamburger { display: flex; }
  .nc-nav-links { display: none; }
  .nc-nav-top { grid-template-columns: auto 1fr auto; }
}

/* ──────────────────────────────────────
   HERO — H8: Stacked Horizontal Strips (poster bands)
   ────────────────────────────────────── */
.nc-hero { padding-top: 96px; }
.nc-strip { position: relative; overflow: hidden; }
.nc-strip-inner { position: relative; z-index: 2; }

.nc-strip-1 {
  background: var(--bg);
  padding: clamp(48px,8vw,84px) 0 clamp(36px,5vw,56px);
  border-bottom: 3px solid var(--text);
}
.nc-strip-1::before {
  content: '';
  position: absolute;
  top: 20px; right: 6%;
  width: 120px; height: 120px;
  border: 2px dashed var(--mustard);
  border-radius: 50%;
  opacity: .5;
}
.nc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border: 2px solid var(--text);
  padding: 6px 16px;
  margin-bottom: 26px;
  background: var(--surface);
  box-shadow: 4px 4px 0 var(--mustard);
}
.nc-hero-h1 {
  font-size: clamp(42px, 7.4vw, 96px);
  font-weight: 800;
  color: var(--text);
  line-height: .96;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.nc-hero-h1 span { color: var(--accent); display: block; }
.nc-hero-lead {
  font-size: clamp(15px,1.6vw,18px);
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
}

.nc-strip-2 {
  background: var(--accent);
  padding: clamp(26px,3.6vw,38px) 0;
  border-bottom: 3px solid var(--text);
}
.nc-strip-2-text {
  font-size: clamp(17px,2.3vw,26px);
  font-weight: 700;
  color: #fff;
  letter-spacing: .4px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nc-strip-2-text .nc-dot { color: var(--mustard); font-weight: 800; }

.nc-strip-3 {
  background: var(--dark);
  padding: clamp(34px,5vw,52px) 0;
  border-bottom: 3px solid var(--text);
}
.nc-strip-3-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.nc-strip-3-stats {
  display: flex;
  gap: clamp(20px,4vw,44px);
  flex-wrap: wrap;
}
.nc-strip-3-stat { text-align: left; }
.nc-strip-3-num {
  font-size: clamp(24px,3vw,34px);
  font-weight: 800;
  color: var(--mustard);
  line-height: 1;
}
.nc-strip-3-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--cream-ink-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.nc-strip-3-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.nc-strip-4 {
  background: var(--bg-2);
  padding: 12px 0;
  overflow: hidden;
}
.nc-marquee {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-2);
  animation: ncMarquee 24s linear infinite;
  width: max-content;
}
.nc-marquee span { color: var(--mustard); }
@keyframes ncMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ──────────────────────────────────────
   BUTTONS — thick border + offset shadow, hover invert
   ────────────────────────────────────── */
.nc-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border: 2.5px solid var(--text);
  box-shadow: 4px 4px 0 var(--text);
  font-family: var(--sans);
  cursor: pointer;
  transition: all .18s;
}
.nc-btn:hover {
  background: var(--text);
  color: var(--bg);
  transform: translate(3px,3px);
  box-shadow: 1px 1px 0 var(--accent);
}
.nc-btn-outline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--surface);
  color: var(--text);
  padding: 13.5px 30px;
  border: 2.5px solid var(--text);
  box-shadow: 4px 4px 0 var(--accent);
  font-family: var(--sans);
  cursor: pointer;
  transition: all .18s;
}
.nc-btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  transform: translate(3px,3px);
  box-shadow: 1px 1px 0 var(--mustard);
}
.nc-btn-light {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--bg);
  color: var(--text);
  padding: 14px 30px;
  border: 2.5px solid var(--cream-ink);
  box-shadow: 4px 4px 0 var(--mustard);
  font-family: var(--sans);
  cursor: pointer;
  transition: all .18s;
}
.nc-btn-light:hover {
  background: var(--mustard);
  color: var(--dark);
  transform: translate(3px,3px);
  box-shadow: 1px 1px 0 var(--cream-ink);
}
.nc-btn-dark-outline {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: transparent;
  color: var(--cream-ink);
  padding: 13.5px 30px;
  border: 2.5px solid var(--cream-ink);
  box-shadow: 4px 4px 0 var(--accent-mid);
  font-family: var(--sans);
  cursor: pointer;
  transition: all .18s;
}
.nc-btn-dark-outline:hover {
  background: var(--cream-ink);
  color: var(--dark);
  transform: translate(3px,3px);
  box-shadow: 1px 1px 0 var(--mustard);
}

/* ──────────────────────────────────────
   PAGE HERO — inner pages
   ────────────────────────────────────── */
.nc-page-hero {
  padding: calc(96px + clamp(36px,5vw,56px)) 0 clamp(40px,6vw,64px);
  background: var(--bg);
  border-bottom: 3px solid var(--text);
  position: relative;
  overflow: hidden;
}
.nc-page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border: 2px dashed var(--accent);
  opacity: .35;
}
.nc-ph-crumb {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.nc-ph-crumb a { color: var(--accent); }
.nc-ph-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .8px;
  line-height: 1.02;
  margin-bottom: 14px;
}
.nc-ph-title span { color: var(--accent); }
.nc-ph-sub {
  font-size: 15px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
}

/* ──────────────────────────────────────
   GRID-CARDS — service / doctor cards (dashed + offset shadow)
   ────────────────────────────────────── */
.nc-card {
  background: var(--surface);
  border: 2px dashed var(--text);
  border-radius: 3px;
  box-shadow: 5px 5px 0 var(--text);
  overflow: hidden;
  height: 100%;
  transition: all .22s ease;
  position: relative;
}
.nc-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: 8px 8px 0 var(--mustard);
  border-style: solid;
  border-color: var(--accent);
}
.nc-card-img { aspect-ratio: 4/3; overflow: hidden; border-bottom: 2px solid var(--text); }
.nc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nc-card:hover .nc-card-img img { transform: scale(1.06); }
.nc-card-body { padding: 20px 22px 24px; transition: background .22s, color .22s; }
.nc-card:hover .nc-card-body { background: var(--accent); }
.nc-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--mustard);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
  transition: color .22s;
}
.nc-card:hover .nc-card-tag { color: var(--cream-ink); }
.nc-card-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
  transition: color .22s;
}
.nc-card:hover .nc-card-name { color: #fff; }
.nc-card-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
  transition: color .22s;
}
.nc-card:hover .nc-card-desc { color: rgba(255,255,255,.85); }
.nc-card-price {
  font-size: 19px;
  font-weight: 800;
  color: var(--accent);
  transition: color .22s;
}
.nc-card:hover .nc-card-price { color: var(--mustard-light); }
.nc-card-price-from {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-right: 4px;
  transition: color .22s;
}
.nc-card:hover .nc-card-price-from { color: rgba(255,255,255,.6); }

/* Doctor card variant */
.nc-doc-img { aspect-ratio: 3/4; }
.nc-doc-role {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
  transition: color .22s;
}
.nc-card:hover .nc-doc-role { color: var(--mustard-light); }

/* ──────────────────────────────────────
   FEATURE-ICON-ROW — USP, không có card border
   ────────────────────────────────────── */
.nc-feat-row { display: flex; flex-direction: column; gap: 6px; }
.nc-feat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid var(--text);
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--accent);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.nc-feat-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.nc-feat-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ──────────────────────────────────────
   STAT-BAR — dải số liệu, 1 màu bg riêng
   ────────────────────────────────────── */
.nc-stat-bar {
  background: var(--accent);
  border-top: 3px solid var(--text);
  border-bottom: 3px solid var(--text);
}
.nc-stat-item {
  text-align: center;
  padding: 34px 16px;
  position: relative;
}
.nc-stat-num {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.nc-stat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

/* ──────────────────────────────────────
   ALTERNATING-STRIPS — câu chuyện thương hiệu
   ────────────────────────────────────── */
.nc-story-row { padding: clamp(48px,7vw,88px) 0; border-bottom: 1px dashed var(--border-light); }
.nc-story-row:last-child { border-bottom: none; }
.nc-story-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--mustard);
  border: 2px solid var(--text);
  padding: 5px 14px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.nc-story-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: .3px;
  margin-bottom: 14px;
}
.nc-story-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.8;
}
.nc-story-img {
  border: 3px solid var(--text);
  box-shadow: 8px 8px 0 var(--accent);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.nc-story-img img { width: 100%; height: 100%; object-fit: cover; }

/* ──────────────────────────────────────
   TIMELINE — lịch sử phòng khám (cau-chuyen.html)
   ────────────────────────────────────── */
.nc-timeline { position: relative; padding-left: 0; }
.nc-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(to bottom, var(--text) 0 8px, transparent 8px 16px);
  transform: translateX(-50%);
}
.nc-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.nc-tl-item:last-child { margin-bottom: 0; }
.nc-tl-item.right { flex-direction: row-reverse; }
.nc-tl-dot {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  background: var(--mustard);
  border: 3px solid var(--text);
  border-radius: 50%;
  z-index: 2;
}
.nc-tl-content {
  width: calc(50% - 40px);
  background: var(--surface);
  border: 2px dashed var(--text);
  box-shadow: 5px 5px 0 var(--accent);
  padding: 22px 24px;
}
.nc-tl-item.right .nc-tl-content { margin-left: auto; }
.nc-tl-year { font-size: 20px; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.nc-tl-text { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }
@media (max-width: 767px) {
  .nc-timeline::before { left: 18px; }
  .nc-tl-item, .nc-tl-item.right { flex-direction: row; padding-left: 40px; }
  .nc-tl-dot { left: 18px; }
  .nc-tl-content, .nc-tl-item.right .nc-tl-content { width: 100%; margin-left: 0; }
}

/* ──────────────────────────────────────
   LIST-ELEGANT — đánh giá khách hàng / bảng giá dịch vụ
   ────────────────────────────────────── */
.nc-list { list-style: none; padding: 0; margin: 0; }
.nc-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 2px dashed var(--border-light);
  flex-wrap: wrap;
}
.nc-list-item:first-child { border-top: 2px dashed var(--border-light); }
.nc-list-left { flex: 1; min-width: 240px; }
.nc-list-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 10px;
}
.nc-list-meta {
  font-size: 12.5px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nc-list-meta span { color: var(--accent); }
.nc-list-stars { color: var(--mustard); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }

/* Price list variant */
.nc-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px dashed var(--border-light);
}
.nc-price-item:first-child { border-top: 2px dashed var(--border-light); }
.nc-price-name { font-size: 14.5px; font-weight: 600; color: var(--text); }
.nc-price-note { display: block; font-size: 12px; color: var(--text-3); font-weight: 400; margin-top: 2px; }
.nc-price-val { font-size: 16px; font-weight: 800; color: var(--accent); white-space: nowrap; }
.nc-price-group-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  margin: 40px 0 4px;
}
.nc-price-group-title:first-of-type { margin-top: 0; }

/* ──────────────────────────────────────
   CTA BANNER
   ────────────────────────────────────── */
.nc-cta {
  background: var(--dark);
  border-top: 3px solid var(--text);
  border-bottom: 3px solid var(--text);
  padding: clamp(56px,8vw,88px) 0;
  position: relative;
  overflow: hidden;
}
.nc-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border: 2px dashed var(--mustard);
  border-radius: 50%;
  opacity: .3;
}

/* ──────────────────────────────────────
   FORM — đặt lịch / liên hệ
   ────────────────────────────────────── */
.nc-form-wrap {
  background: var(--surface);
  border: 3px solid var(--text);
  box-shadow: 8px 8px 0 var(--accent);
  padding: clamp(26px, 4vw, 44px);
}
.nc-step-badge {
  width: 28px; height: 28px;
  background: var(--mustard);
  border: 2px solid var(--text);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nc-step-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.nc-form-wrap .form-label {
  color: var(--text-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nc-form-wrap .form-control,
.nc-form-wrap .form-select {
  background: var(--bg);
  border: 2px solid var(--text);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 14px;
}
.nc-form-wrap .form-control::placeholder { color: var(--text-3); }
.nc-form-wrap .form-control:focus,
.nc-form-wrap .form-select:focus {
  background: var(--bg);
  border-color: var(--accent);
  box-shadow: 3px 3px 0 var(--accent);
  color: var(--text);
}
.nc-time-slot {
  padding: 9px 12px;
  border: 2px solid var(--text);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  text-align: center;
  font-family: var(--sans);
  background: var(--bg);
  transition: all .15s;
}
.nc-time-slot:hover { border-color: var(--accent); color: var(--accent); }
.nc-time-slot.selected { background: var(--accent); border-color: var(--text); color: #fff; box-shadow: 2px 2px 0 var(--text); }
.nc-time-slot.disabled { opacity: .35; pointer-events: none; text-decoration: line-through; }
.nc-form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  color: var(--accent-h);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}
.nc-form-success[hidden] { display: none; }

.nc-info-panel {
  background: var(--dark);
  border: 3px solid var(--text);
  box-shadow: 8px 8px 0 var(--mustard);
  padding: 28px;
  color: var(--cream-ink);
}
.nc-info-row { display: flex; gap: 14px; margin-bottom: 22px; }
.nc-info-row:last-child { margin-bottom: 0; }
.nc-info-icon {
  width: 42px; height: 42px;
  border: 2px solid var(--cream-ink);
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.nc-info-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--mustard);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.nc-info-val { font-size: 13.5px; color: var(--cream-ink-2); font-weight: 400; line-height: 1.65; }
.nc-info-val a { color: var(--cream-ink); }
.nc-info-val a:hover { color: var(--mustard); }

.nc-map-wrap {
  border: 3px solid var(--text);
  box-shadow: 8px 8px 0 var(--accent);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.nc-map-wrap iframe { width: 100%; height: 100%; display: block; filter: sepia(.35) saturate(.7) hue-rotate(-10deg); }

/* ──────────────────────────────────────
   FOOTER — dark retro poster layout, khung viền
   ────────────────────────────────────── */
.nc-footer {
  background: var(--dark);
  border-top: 5px solid var(--mustard);
  color: var(--cream-ink);
}
.nc-footer-top { padding: clamp(56px,8vw,96px) 0 clamp(40px,5vw,64px); }
.nc-footer-brand {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  color: var(--cream-ink);
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 2px solid var(--cream-ink);
  padding: 8px 18px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0 var(--mustard);
}
.nc-footer-brand span { color: var(--accent-mid); }
.nc-footer-tagline {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--cream-ink-2);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.nc-footer-social { display: flex; gap: 10px; }
.nc-social-link {
  width: 38px; height: 38px;
  border: 2px solid var(--cream-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-ink);
  font-size: 13px;
  font-weight: 700;
  transition: all .18s;
}
.nc-social-link:hover { background: var(--mustard); color: var(--dark); border-color: var(--mustard); }
.nc-footer-col-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--mustard);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.nc-footer-links { list-style: none; padding: 0; margin: 0; }
.nc-footer-links li { margin-bottom: 12px; }
.nc-footer-links a {
  font-size: 13.5px;
  color: var(--cream-ink-2);
  font-weight: 400;
  transition: color .2s;
}
.nc-footer-links a:hover { color: var(--mustard); }
.nc-footer-hours { list-style: none; padding: 0; margin: 0; }
.nc-footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--cream-ink-2);
  font-weight: 400;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(245,239,221,.15);
}
.nc-footer-hours li span:last-child { color: var(--mustard); font-weight: 700; }
.nc-footer-bottom {
  border-top: 2px solid rgba(245,239,221,.15);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.nc-footer-copy { font-size: 12px; color: var(--cream-ink-2); font-weight: 400; }
.nc-footer-copy a { color: var(--mustard); }

/* ──────────────────────────────────────
   ZALO FLOAT
   ────────────────────────────────────── */
.nc-zalo-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #0068FF;
  border: 3px solid var(--text);
  box-shadow: 4px 4px 0 var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  transition: all .2s;
}
.nc-zalo-float:hover {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 var(--text);
}

/* ──────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────── */
@media (max-width: 767px) {
  .nc-strip-3-row { flex-direction: column; align-items: flex-start; }
  .nc-footer-bottom { justify-content: center; text-align: center; }
  .nc-price-item, .nc-list-item { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (max-width: 576px) {
  .nc-hero { padding-top: 88px; }
  .nc-page-hero { padding-top: calc(88px + 24px); }
}
