/* ===== CAMI – Gội Đầu Thế Hệ Mới ===== */
:root {
  --green:   #0E2B22;
  --green2:  #12362B;
  --green3:  #1B4638;
  --green4:  #234d3f;
  --gold:    #C9971A;
  --gold2:   #E4B84A;
  --gold3:   #F1D68A;
  --gold4:   #fdf0c2;
  --cream:   #F6EFE1;
  --cream2:  #FBF6EC;
  --terra:   #D9633F;
  --ink:     #1F2420;
  --muted:   #5c6660;
  --light:   #8fa89a;
  --radius:  18px;
  --radius-lg: 28px;
  --shadow:  0 20px 60px rgba(14,43,34,.15);
  --shadow-gold: 0 8px 32px rgba(201,151,26,.35);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: var(--ink);
  background: var(--cream2);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; text-wrap: balance; }
p { text-wrap: pretty; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== UTILITIES ===== */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }

.eyebrow {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 8px 0 16px; color: var(--green); }
.sec-head p { color: var(--muted); font-size: 1.05rem; }
.on-dark .sec-head h2 { color: var(--cream); }
.on-dark .sec-head p { color: #a8c4b8; }
.on-dark .eyebrow { color: var(--gold2); }

.orn {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin: 10px 0;
}
.orn span { height: 1px; width: 60px; }
.orn span:first-child { background: linear-gradient(90deg, transparent, var(--gold)); }
.orn span:last-child  { background: linear-gradient(90deg, var(--gold), transparent); }
.orn i { color: var(--gold); font-size: 1rem; font-style: normal; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 60px;
  font-weight: 600; font-size: .95rem;
  transition: var(--transition); white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #d4a017 0%, #f0c040 40%, #e8b830 70%, #c9971a 100%);
  color: #1a0f00;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(201,151,26,.55), 0 0 0 1px rgba(255,220,80,.2);
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  animation: btn-sweep 4s ease-in-out infinite;
}
@keyframes btn-sweep { 0%,40%{left:-80%} 70%,100%{left:130%} }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(201,151,26,.65); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(246,239,225,.5);
}
.btn-ghost:hover { background: rgba(246,239,225,.1); border-color: var(--gold2); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green3); transform: translateY(-2px); }
.btn-zalo {
  background: #0068FF;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,104,255,.35);
}
.btn-zalo:hover { background: #0057d9; transform: translateY(-3px); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; transition: var(--transition);
}
.nav.scrolled {
  background: rgba(9,28,22,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.nav.scrolled .nav-bar { padding: 10px 28px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 60px; width: 60px; object-fit: contain; transition: var(--transition); filter: brightness(1.1); }
.nav.scrolled .brand-logo { height: 48px; width: 48px; }
.brand-text { color: var(--cream); line-height: 1.2; }
.brand-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold2); display: block; letter-spacing: .04em;
}
.brand-text small {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: #8fa89a;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a:not(.nav-cta) {
  color: rgba(246,239,225,.85); font-size: .88rem; font-weight: 500;
  position: relative; padding: 4px 0;
  transition: color .4s ease-in-out;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: #C9971A;
  opacity: 0; transform: scaleX(.85); transform-origin: left;
  transition: opacity .4s ease-in-out, transform .4s ease-in-out;
}
.nav-links a:not(.nav-cta):hover { color: #C9971A; }
.nav-links a:not(.nav-cta):hover::after { opacity: 1; transform: scaleX(1); }

.nav-links a.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: #C9971A;
  color: var(--green) !important; padding: 12px 32px; border-radius: 50px;
  font-weight: 600; font-size: .85rem; letter-spacing: .01em;
  white-space: nowrap; line-height: 1;
  transition: box-shadow .4s ease-in-out, transform .4s ease-in-out, background .4s ease-in-out;
  box-shadow: 0 0 0 0 rgba(201,151,26,0);
}
.nav-links a.nav-cta:hover {
  color: var(--green) !important;
  transform: translateY(-2px);
  background: #C9971A;
  box-shadow: 0 6px 18px rgba(201,151,26,.35), 0 0 26px 6px rgba(228,184,74,.4);
}

.burger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed; inset: 0; background: rgba(9,28,22,.98);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transform: translateX(100%); transition: .4s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(16px);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--cream); font-size: 1.4rem;
  font-family: 'Playfair Display', serif; letter-spacing: .04em;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold2); }
.mobile-close {
  position: absolute; top: 22px; right: 26px;
  font-size: 2rem; color: var(--gold2); line-height: 1;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  color: var(--cream); overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(9,28,22,.97) 0%,
    rgba(12,40,31,.88) 50%,
    rgba(12,40,31,.60) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 100px; max-width: 680px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,151,26,.18); border: 1px solid rgba(201,151,26,.35);
  padding: 8px 18px; border-radius: 60px; margin-bottom: 28px;
}
.hero-tag span { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold2); font-weight: 600; }
.hero-dot { width: 6px; height: 6px; background: var(--gold2); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 10px;
}
.hero h1 em { font-style: italic; color: var(--gold2); }
.hero-h1-sub { font-size: clamp(1.7rem, 4.2vw, 3rem); white-space: nowrap; }
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 700; font-style: italic;
  color: var(--gold2);
  margin-bottom: 22px; line-height: 1.3;
  letter-spacing: .04em;
  text-shadow: 0 2px 16px rgba(201,151,26,.45);
}
.hero-desc { font-size: 1.05rem; color: #c5dcd4; max-width: 620px; margin-bottom: 36px; white-space: nowrap; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex; gap: 0;
  padding-top: 28px; border-top: 1px solid rgba(201,151,26,.25);
  background: rgba(9,28,22,.45);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,151,26,.2);
  margin-top: 8px;
}
.hero-stat {
  flex: 1; padding: 18px 10px; text-align: center;
  border-right: 1px solid rgba(201,151,26,.15);
  transition: background .3s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(201,151,26,.08); }
.hero-stat strong {
  font-size: 1.75rem; font-weight: 800; color: var(--gold2); display: block;
  text-shadow: 0 0 20px rgba(201,151,26,.5);
  line-height: 1.1; margin-bottom: 4px;
  white-space: nowrap;
}
.hero-stat span { font-size: .7rem; color: #a8c4ba; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; }

.hero-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dot-btn {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(246,239,225,.35); transition: .3s; cursor: pointer;
}
.hero-dot-btn.active { background: var(--gold2); width: 24px; border-radius: 4px; }

.scroll-hint {
  position: absolute; bottom: 38px; right: 40px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(246,239,225,.5); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
}
.scroll-arrow {
  width: 1px; height: 48px; background: linear-gradient(180deg, var(--gold2), transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(.4);opacity:.4} }

/* ===== ABOUT ===== */
.about {
  background: var(--cream2);
  /* Vừa 1 khung màn hình, không tràn sang section khác */
  min-height: 92svh;
  display: flex; align-items: center;
  padding: 80px 0;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: stretch;
  width: 100%;
}

.about-imgs { position: relative; display: flex; align-self: stretch; }
.about-img-main { display: none; }
.about-img-float { display: none !important; }
.about-badge {
  position: absolute; top: 20px; left: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #2a1e02; padding: 14px 18px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-gold);
  z-index: 5;
}
.about-badge strong { font-size: 1.6rem; font-weight: 800; display: block; line-height: 1; }
.about-badge span { font-size: .62rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 600; }

.about-content { padding-left: 8px; }

/* Tiêu đề About nổi bật, căn giữa */
.about-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--green);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -.01em;
  position: relative;
  padding-bottom: 18px;
}
.about-h2::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
}

.about-content p {
  color: var(--muted); margin-bottom: 16px; font-size: 1.02rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.about-content p.visible { opacity: 1; transform: none; }

.about-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px; background: white;
  border-radius: var(--radius); border-left: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(14,43,34,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  opacity: 0; transform: translateX(-20px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s;
}
.about-feature.visible { opacity: 1; transform: none; }
.about-feature:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 28px rgba(14,43,34,.12);
  border-left-color: var(--gold2);
}
.about-feature-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green3));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.about-feature:hover .about-feature-icon { transform: scale(1.1) rotate(-5deg); }
.about-feature-icon svg { width: 22px; height: 22px; stroke: var(--gold2); fill: none; stroke-width: 2; }
.about-feature h3 {
  font-size: .93rem; color: var(--green); margin-bottom: 4px;
  white-space: normal; overflow: visible;
}
.about-feature p { font-size: .86rem; color: var(--muted); margin: 0; opacity: 1; transform: none; }

/* Shimmer effect cho ảnh About */
.about-img-shimmer {
  position: relative;
  overflow: hidden !important;
}
.about-img-shimmer::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-15deg);
  animation: about-shimmer 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes about-shimmer { 0%,35%{left:-100%} 68%,100%{left:150%} }

/* Zoom subtle khi hover ảnh */
.about-img-main img, .about-img-float img {
  transition: transform .6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-float:hover img { transform: scale(1.06); }

/* About slider — fade + Ken Burns như hero */
.about-slider {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
  /* pause khi hover */
  --about-paused: running;
}
.about-slider:hover { --about-paused: paused; }

/* Slides xếp chồng tuyệt đối — fade qua lại */
.about-slides-wrap { position: absolute; inset: 0; }
.about-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  overflow: hidden;
}
.about-slide.active { opacity: 1; z-index: 1; }

/* Ảnh — Ken Burns zoom chậm khi active */
.about-slide img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transform-origin: center center;
}
.about-slide.active img {
  animation: kenBurnsAbout 8s ease-in-out forwards;
  animation-play-state: var(--about-paused);
}
@keyframes kenBurnsAbout {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, -1%); }
}

/* Shimmer sweep trên ảnh active */
.about-slide.active::after {
  content: '';
  position: absolute; top: 0; left: -100%; z-index: 2;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-15deg);
  animation: about-shimmer 5s ease-in-out 1.5s 1 forwards;
  pointer-events: none;
}
@keyframes about-shimmer { 0%{left:-100%} 100%{left:150%} }

/* Progress bar */
.about-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,.2); z-index: 3;
}
.about-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  width: 0%;
  animation: aboutProgress 5s linear infinite;
  animation-play-state: var(--about-paused);
}
@keyframes aboutProgress { 0%{width:0%} 100%{width:100%} }

/* Dots */
.about-slider-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 4;
}
.about-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background .35s, transform .35s, width .35s;
  cursor: pointer; border: none;
  touch-action: manipulation;
}
.about-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  width: 22px; border-radius: 4px;
}

/* Reduced-motion: tắt tất cả animation about */
@media (prefers-reduced-motion: reduce) {
  .about-img-shimmer::after { animation: none; }
  .about-img-main img, .about-img-float img { transition: none; }
  .about-feature { transition: none; }
  .about-content p { transition: none; }
}

/* ===== SERVICES ===== */
.services { background: var(--green); }

/* Tab nav */
.svc-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.svc-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 100px;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  border: 1px solid rgba(201,151,26,.3);
  background: rgba(255,255,255,.05); color: #8fa89a;
  transition: all .25s ease; touch-action: manipulation;
  min-height: 48px; white-space: nowrap;
}
.svc-tab:hover { border-color: rgba(201,151,26,.6); color: var(--gold2); background: rgba(201,151,26,.08); }
.svc-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1a1000; border-color: transparent;
  box-shadow: 0 6px 24px rgba(201,151,26,.35);
}
.svc-tab svg { flex-shrink: 0; }
.svc-tab.active svg { stroke: #1a1000; }

/* Panels */
.svc-panel { display: none; }
.svc-panel.active { display: block; animation: svcFadeIn .3s ease; }
@keyframes svcFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Group label */
.svc-group-label {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.svc-group-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(201,151,26,.4), transparent);
}

/* Cards grid */
.svc-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-3col { grid-template-columns: repeat(3, 1fr); }

/* Card */
.svc-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,151,26,.18);
  border-radius: var(--radius-lg); padding: 28px 26px;
  position: relative; display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
  isolation: isolate;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,151,26,.45);
  box-shadow: 0 20px 56px rgba(0,0,0,.28);
}
.svc-featured { border-color: rgba(201,151,26,.35); background: rgba(201,151,26,.06); }
.svc-vip {
  background: linear-gradient(145deg, rgba(201,151,26,.12), rgba(14,43,34,.4));
  border-color: rgba(201,151,26,.5);
}

/* Card image */
.svc-card-img {
  margin: -28px -26px 20px;
  height: 190px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  flex-shrink: 0;
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-badge { top: 0; }

/* Card badge */
.svc-badge {
  position: absolute; top: -1px; right: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1a1000; font-size: .65rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 0 0 10px 10px;
}
.svc-badge-green { background: linear-gradient(135deg, #1B8A5A, #22A86E); color: white; }
.svc-badge-gold { background: linear-gradient(135deg, #B8860B, var(--gold)); color: #1a1000; }

/* Card top row */
.svc-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.svc-name-wrap { flex: 1; }
.svc-name { font-size: 1.1rem; font-weight: 700; color: var(--cream); line-height: 1.35; margin-bottom: 4px; }
.svc-duration { font-size: .78rem; color: #8fa89a; font-weight: 500; }
@keyframes price-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,151,26,.55), 0 0 0 0 rgba(228,184,74,.25); }
  50%       { box-shadow: 0 0 0 7px rgba(201,151,26,.15), 0 0 0 14px rgba(228,184,74,.05); }
}
@keyframes price-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.svc-price-circle {
  flex-shrink: 0;
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, #C9971A 0%, #E4B84A 50%, #C9971A 100%);
  background-size: 200% auto;
  border: 2px solid rgba(255,220,100,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: #fff;
  font-family: 'Playfair Display', serif; text-align: center; line-height: 1;
  position: relative;
  animation: price-pulse 2.4s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
  letter-spacing: -.01em;
}
.svc-price-circle::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  background-size: 200% auto;
  animation: price-shine 2.8s linear infinite;
  pointer-events: none;
}
.svc-card:hover .svc-price-circle { transform: scale(1.1); }

.svc-price-gold {
  background: linear-gradient(135deg, #b8830f 0%, #E4B84A 40%, #f5d070 65%, #C9971A 100%);
  background-size: 200% auto;
  border-color: rgba(255,230,120,.7);
  box-shadow: 0 0 20px rgba(228,184,74,.5);
  animation: price-pulse 2s ease-in-out infinite;
}

/* Gift row */
.svc-gift {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; color: var(--gold2); font-weight: 600;
  background: rgba(201,151,26,.1); border-radius: 8px;
  padding: 7px 12px; margin-bottom: 16px;
}
.svc-gift svg { flex-shrink: 0; stroke: var(--gold2); }

/* Description */
.svc-desc { font-size: .88rem; color: #8fa89a; line-height: 1.6; margin-bottom: 18px; }

/* Steps */
.svc-steps { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex: 1; }
.svc-steps li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .82rem; color: #a8c4b8; line-height: 1.4;
}
.svc-num {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,151,26,.18); border: 1px solid rgba(201,151,26,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800; color: var(--gold2);
  letter-spacing: -.01em;
}

/* Card CTA */
.svc-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: 100px; margin-top: auto;
  background: rgba(255,255,255,.08); border: 1px solid rgba(201,151,26,.3);
  color: var(--cream2); font-size: .84rem; font-weight: 600;
  text-decoration: none; transition: all .22s ease; touch-action: manipulation;
  min-height: 44px;
}
.svc-btn:hover { background: rgba(201,151,26,.18); border-color: var(--gold2); color: var(--gold2); }
.svc-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1a1000; border-color: transparent;
  box-shadow: 0 6px 20px rgba(201,151,26,.3);
}
.svc-btn-gold:hover { background: linear-gradient(135deg, var(--gold2), #f0cc60); color: #1a1000; }

/* Card icon (health panel) */
.svc-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,151,26,.12); border: 1px solid rgba(201,151,26,.25);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.svc-card-icon svg { stroke: var(--gold2); }

/* Dual price (health panel) */
.svc-dual-price {
  display: flex; align-items: center; gap: 0; justify-content: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,151,26,.2);
  border-radius: 14px; padding: 14px 8px; margin-bottom: 14px;
}
.svc-price-opt { flex: 1; text-align: center; }
.svc-opt-time { display: block; font-size: .72rem; color: #8fa89a; margin-bottom: 4px; font-weight: 500; }
.svc-opt-price { display: block; font-size: 1.25rem; font-weight: 800; color: var(--gold2); font-family: 'Playfair Display', serif; }
.svc-price-divider { width: 1px; align-self: stretch; background: rgba(201,151,26,.25); margin: 0 8px; }

/* Add-ons grid */
.svc-addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc-addon-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,151,26,.15);
  border-radius: var(--radius); padding: 20px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform .22s ease, border-color .22s ease;
}
.svc-addon-card:hover { transform: translateY(-3px); border-color: rgba(201,151,26,.4); }
.svc-addon-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,151,26,.1); border: 1px solid rgba(201,151,26,.2);
  display: flex; align-items: center; justify-content: center;
}
.svc-addon-icon svg { stroke: var(--gold2); }
.svc-addon-name { font-size: .83rem; color: var(--cream2); font-weight: 600; line-height: 1.35; }
.svc-addon-price { font-size: 1.1rem; font-weight: 800; color: var(--gold2); font-family: 'Playfair Display', serif; }
.svc-addon-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 24px; padding: 14px 18px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,151,26,.15);
  border-radius: 12px; font-size: .82rem; color: #8fa89a; line-height: 1.55;
}
.svc-addon-note svg { flex-shrink: 0; stroke: var(--gold); margin-top: 1px; }

/* Bottom CTA */
.svc-cta {
  text-align: center; margin-top: 56px; padding: 40px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,151,26,.18);
  border-radius: var(--radius-lg);
}
.svc-cta p { color: #8fa89a; margin-bottom: 20px; font-size: 1rem; }
.svc-cta .btn { display: inline-flex; }

/* ===== PROCESS ===== */
.process { background: var(--cream2); }
.process-img-wrap { text-align: center; margin-bottom: 48px; }
.process-img-wrap img { max-width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step {
  background: white; border-radius: var(--radius);
  padding: 26px 22px; text-align: center;
  box-shadow: 0 4px 20px rgba(14,43,34,.07);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold);
  opacity: .4; line-height: 1; margin-bottom: 12px;
}
.process-step h4 { font-size: .95rem; color: var(--green); margin-bottom: 8px; }
.process-step p { font-size: .82rem; color: var(--muted); }

/* ===== OFFERS ===== */
.offers { background: var(--green2); }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(201,151,26,.25);
  transition: var(--transition); background: rgba(255,255,255,.04);
  position: relative;
}

/* Water Ripple – click/touch ripple element */
.offer-ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  opacity: 1;
  animation: offer-water-ripple 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  background: radial-gradient(circle, rgba(228,184,74,.28) 0%, rgba(201,151,26,.10) 45%, transparent 70%);
}
@keyframes offer-water-ripple {
  to { transform: scale(4); opacity: 0; }
}

/* Water Ripple – ambient concentric rings on image overlay */
.offer-img { position: relative; }
.offer-img::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 40% at 50% 85%,
      rgba(201,151,26,.18) 0%,
      rgba(201,151,26,.06) 45%,
      transparent 70%);
  animation: offer-ambient-pulse 4s ease-in-out infinite;
}
@keyframes offer-ambient-pulse {
  0%, 100% { opacity: .55; transform: scaleX(1) scaleY(1); }
  50%       { opacity: 1;   transform: scaleX(1.08) scaleY(1.12); }
}

/* Concentric ring glow at bottom of image */
.offer-img::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  translate: -50% 0;
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    0 0 0  4px rgba(201,151,26,.18),
    0 0 0 14px rgba(201,151,26,.09),
    0 0 0 28px rgba(201,151,26,.04);
  animation: offer-ring-breathe 3.6s ease-in-out infinite;
  z-index: 1;
}
@keyframes offer-ring-breathe {
  0%, 100% { transform: scale(.85); opacity: .6; }
  50%       { transform: scale(1);   opacity: 1; }
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--gold2); box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.offer-img { aspect-ratio: 3/4; overflow: hidden; }
.offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.offer-card:hover .offer-img img { transform: scale(1.05); }
.offer-body { padding: 22px 24px; }
.offer-body h3 { font-size: 1.1rem; color: var(--cream); margin-bottom: 8px; }
.offer-body p { font-size: .85rem; color: #8fa89a; line-height: 1.6; }

/* Offer title shine effect */
@keyframes offer-title-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.offer-title-shine {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem !important;
  font-weight: 700;
  background: linear-gradient(90deg, #C9971A 0%, #F0D060 40%, #E4B84A 60%, #C9971A 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: offer-title-shimmer 3s linear infinite;
  margin-bottom: 10px !important;
  line-height: 1.4 !important;
}
.offer-title-sub {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  -webkit-text-fill-color: rgba(228,184,74,.75);
  display: block;
  margin-top: 3px;
  white-space: nowrap;
}
.offer-highlight {
  color: var(--gold2);
  font-weight: 700;
  font-style: normal;
}

/* Offer list bullet structure */
.offer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.offer-list > li { display: flex; flex-direction: column; gap: 4px; }
.offer-list > li > ul {
  list-style: none; padding: 0 0 0 4px; margin: 0;
  display: flex; flex-direction: column; gap: 3px;
}
.offer-list > li > ul > li {
  font-size: .83rem; color: #9ab5a5; line-height: 1.55;
  padding-left: 12px; position: relative;
}
.offer-list > li > ul > li::before {
  content: '–'; position: absolute; left: 0;
  color: rgba(201,151,26,.55); font-weight: 600;
}
.ol-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  opacity: .75;
}

.offer-badge {
  display: inline-block; background: linear-gradient(135deg,var(--terra),#e07050);
  color: white; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 12px;
}

/* ===== TUYEN DUNG ===== */
.recruit { background: var(--cream2); }

.recruit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 52px;
}

/* Visual column */
.recruit-visual { display: flex; flex-direction: column; }

.recruit-poster-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(14,43,34,.18);
  aspect-ratio: 1 / 1;
  position: sticky;
  top: 100px;
}
.recruit-poster-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.recruit-poster-wrap {
  transition: box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.recruit-poster-wrap:hover img { transform: scale(1.025); }
.recruit-poster-wrap:hover {
  box-shadow: 0 24px 64px rgba(14,43,34,.18), 0 0 0 0 rgba(201,151,26,0), 0 8px 48px rgba(201,151,26,.22), 0 0 72px rgba(228,184,74,.14);
}

/* Info column */
.recruit-hook { margin-bottom: 28px; }
.recruit-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 0;
  line-height: 1.6;
}

.recruit-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.rdt-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 12px rgba(14,43,34,.07);
  transition: box-shadow .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rdt-card:hover { box-shadow: 0 8px 28px rgba(14,43,34,.16); transform: translateY(-4px); }
.rdt-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(201,151,26,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.rdt-card h3 { font-size: .82rem; font-weight: 600; color: var(--green); margin: 0 0 4px; }
.rdt-card p { font-size: .8rem; color: #555; margin: 0; line-height: 1.45; }

.recruit-fit { margin-bottom: 24px; }
.recruit-fit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.recruit-fit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.recruit-fit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: #333;
  line-height: 1.45;
}
.recruit-fit-list li svg { flex-shrink: 0; stroke: var(--gold); }

.recruit-address {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: #555;
  margin-bottom: 24px;
}
.recruit-address svg { stroke: var(--gold); flex-shrink: 0; }

/* Recruit – Staggered Soft Reveal */
.recruit-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease-out var(--rr-delay, 0s), transform 0.75s ease-out var(--rr-delay, 0s);
}
.recruit-reveal.rr-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .recruit-reveal { transition: opacity 0.3s ease; transform: none !important; }
}

.recruit-cta-wrap { display: flex; gap: 12px; flex-wrap: wrap; }
.recruit-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: .9rem; font-weight: 600;
  text-decoration: none;
  min-height: 48px;
  transition: transform .2s ease, box-shadow .2s ease;
  touch-action: manipulation;
}
.recruit-cta-btn:hover { transform: translateY(-2px); }
.btn-gold.recruit-cta-btn:hover {
  box-shadow: 0 6px 24px rgba(201,151,26,.35), 0 0 32px rgba(228,184,74,.22);
}
.btn-outline-green.recruit-cta-btn:hover {
  box-shadow: 0 6px 24px rgba(14,43,34,.2), 0 0 28px rgba(18,54,43,.18);
}
.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* ===== GALLERY ===== */
.gallery { background: var(--cream2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px 210px;
  gap: 5px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 0;
  min-height: 0; /* prevent stretch */
}
/* khonggian5 = main hero: col 1–2, row 1–2 */
.gallery-item.gallery-main { grid-column: 1 / 3; grid-row: 1 / 3; }
/* bottom row: last 4 items span full width evenly */
.gallery-item:nth-child(n+6) { grid-row: 3; }
/* --- Entrance: Staggered Soft Reveal --- */
.gallery-item {
  opacity: 0;
  transform: translateY(22px);
  /* hover focus transitions layered in */
  transition:
    opacity  0.9s ease-in-out var(--gi-delay, 0s),
    transform 0.9s ease-in-out var(--gi-delay, 0s),
    filter   0.85s ease-in-out,
    box-shadow 0.85s ease-in-out;
  will-change: opacity, transform, filter;
}
.gallery-item.gi-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hover: Focus & Subtle Zoom --- */
/* All siblings dim when grid is focused */
.gallery-grid.gi-focused .gallery-item {
  opacity: 0.55;
  filter: blur(2px);
}
/* The active item stays sharp and scales up */
.gallery-grid.gi-focused .gallery-item.gi-active {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1.05);
  z-index: 3;
  position: relative;
}
/* Overlay shows only on active item when focused */
.gallery-grid.gi-focused .gallery-item .gallery-item-overlay { opacity: 0; }
.gallery-grid.gi-focused .gallery-item.gi-active .gallery-item-overlay { opacity: 1; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(9,28,22,.45);
  opacity: 0; transition: opacity 0.85s ease-in-out;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:not(.gallery-grid.gi-focused *):hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 44px; height: 44px; stroke: var(--gold2); fill: none; stroke-width: 1.5; }

/* Reduced motion: skip animations */
@media (prefers-reduced-motion: reduce) {
  .gallery-item { transition: opacity 0.3s ease, filter 0.3s ease; transform: none !important; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--green); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-slide { min-width: 100%; padding: 0 4px; }
.testimonial-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(201,151,26,.15);
  border-radius: var(--radius-lg); padding: 30px 28px;
}
.t-stars { color: var(--gold2); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-text { font-size: .92rem; color: #c5dcd4; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; border: 2px solid var(--gold);
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-avatar.t-avatar-initial { display: flex; align-items: center; justify-content: center; background: var(--t-initial-bg, var(--green3)); color: var(--gold2); font-size: .72rem; font-weight: 700; letter-spacing: .04em; overflow: visible; }
.t-name { font-weight: 600; color: var(--cream); font-size: .9rem; }
.t-label { font-size: .75rem; color: var(--light); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 36px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(201,151,26,.4); color: var(--gold2);
  display: flex; align-items: center; justify-content: center;
  transition: .3s;
}
.slider-btn:hover { background: rgba(201,151,26,.15); border-color: var(--gold2); }
.slider-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,151,26,.3); transition: .3s; cursor: pointer;
}
.slider-dot.active { background: var(--gold2); }

/* ===== WHY CAMI ===== */
.why { background: var(--cream2); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 30px; text-align: center;
  box-shadow: 0 4px 24px rgba(14,43,34,.07);
  transition: var(--transition); border-bottom: 3px solid transparent;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-bottom-color: var(--gold); }
.why-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green3));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.why-icon svg { width: 30px; height: 30px; stroke: var(--gold2); fill: none; stroke-width: 1.8; }
.why-card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 12px; }
.why-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ===== BOOKING CTA ===== */
.booking-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green3) 60%, var(--green2) 100%);
  position: relative; overflow: hidden;
}
.booking-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,151,26,.12) 0%, transparent 60%);
}
.booking-cta-inner { position: relative; z-index: 1; text-align: center; }
.booking-cta h2 { font-size: clamp(1.9rem,3.5vw,2.8rem); color: var(--cream); margin-bottom: 16px; }
.booking-cta p { font-size: 1.08rem; color: #a8c4b8; max-width: 520px; margin: 0 auto 40px; }
.booking-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.booking-info { display: flex; justify-content: center; gap: 48px; margin-top: 52px; }
.booking-info-item { text-align: center; color: #8fa89a; }
.booking-info-item strong { display: block; font-size: 1.1rem; color: var(--gold2); font-family: 'Playfair Display',serif; }
.booking-info-item span { font-size: .82rem; }

/* ===== BLOG ===== */
.blog { background: var(--cream2); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 20px rgba(14,43,34,.07);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-thumb { aspect-ratio: 16/9; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-cat {
  display: inline-block; background: rgba(14,43,34,.08);
  color: var(--green3); font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 30px; margin-bottom: 12px;
}
.blog-body h3 { font-size: 1.05rem; color: var(--green); margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: .87rem; color: var(--muted); margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: .78rem; color: var(--light); }
.blog-meta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.blog-read { color: var(--gold); font-weight: 600; font-size: .85rem; transition: .3s; }
.blog-read:hover { color: var(--gold2); }

/* ===== FOOTER ===== */
.footer { background: var(--green); color: var(--cream); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { }
.footer-logo { height: 56px; width: auto; margin-bottom: 18px; }
.footer-desc { font-size: .9rem; color: #8fa89a; line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(201,151,26,.35);
  display: flex; align-items: center; justify-content: center;
  transition: .3s; color: var(--light);
}
.social-btn:hover { background: rgba(201,151,26,.15); border-color: var(--gold2); color: var(--gold2); }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 { font-family: 'Playfair Display',serif; font-size: 1rem; color: var(--gold2); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: #8fa89a; transition: color .3s; }
.footer-links a:hover { color: var(--cream); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold2); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: .87rem; color: #8fa89a; }

.footer-bottom {
  border-top: 1px solid rgba(201,151,26,.15);
  padding-top: 28px; display: flex;
  align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .82rem; color: #5c7a6e; }
.footer-bottom a { color: var(--gold); }

/* ===== FLOATING ZALO ===== */
.floating-zalo {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.float-btn {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .3s, box-shadow .3s; cursor: pointer; border: none;
  animation: float 3s ease-in-out infinite;
  overflow: hidden; position: relative;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* Light sweep shimmer */
.float-btn::after {
  content: '';
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: sweep 4.5s ease-in-out infinite;
}
@keyframes sweep { 0%,40%{left:-75%} 72%,100%{left:140%} }

.float-zalo {
  background: linear-gradient(135deg, #0057d9 0%, #0084ff 100%);
  box-shadow: 0 8px 28px rgba(0,104,255,.45);
  border: 2px solid rgba(255,255,255,.2);
}
.float-phone {
  background: linear-gradient(135deg, #b8860b 0%, var(--gold) 40%, var(--gold2) 70%, #f1c257 100%);
  box-shadow: 0 8px 28px rgba(201,151,26,.55);
  border: 2px solid rgba(255,255,255,.25);
}
.float-chat {
  background: linear-gradient(135deg, #0E2B22 0%, #1B4638 100%);
  box-shadow: 0 8px 28px rgba(14,43,34,.5);
  border: 2px solid rgba(201,151,26,.4);
}
.float-btn svg { width: 28px; height: 28px; fill: white; position: relative; z-index: 1; }
.float-zalo-text {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: white; letter-spacing: .04em;
  position: relative; z-index: 1;
}
.float-btn:hover { animation: none; transform: scale(1.12); }
.float-zalo:hover { box-shadow: 0 12px 40px rgba(0,104,255,.6); }
.float-phone:hover { box-shadow: 0 12px 40px rgba(201,151,26,.7); }
.float-chat:hover { box-shadow: 0 12px 40px rgba(201,151,26,.4); }
.float-label {
  position: absolute; right: 72px;
  background: rgba(9,28,22,.92); color: var(--cream);
  font-size: .78rem; font-weight: 600; padding: 6px 14px; border-radius: 8px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(8px); transition: .3s;
  border: 1px solid rgba(201,151,26,.2);
}
.float-btn:hover .float-label { opacity: 1; transform: none; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.9); display: none;
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 12px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  font-size: 2.2rem; color: white; cursor: pointer; line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-imgs { max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
}

/* ===== TABLET & MOBILE (768px) ===== */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .wrap { padding: 0 20px; }

  /* Cuộn nhanh trên mobile: rút ngắn hiệu ứng fade-in để không bị "chìm" chữ giữa lúc cuộn */
  .reveal, .reveal-left, .reveal-right,
  .gallery-item, .recruit-reveal {
    transition-duration: .35s !important;
  }

  /* Navbar */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }

  /* Hero - fix overflow & layout */
  .hero { min-height: 100svh; }
  .hero-content { padding-top: 90px; max-width: 100%; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-h1-sub { font-size: clamp(1.4rem, 6vw, 2rem); white-space: normal; }
  .hero-desc { font-size: .95rem; white-space: normal; max-width: 100%; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats: 2x2 grid */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .hero-stat { border-right: 1px solid rgba(201,151,26,.15); border-bottom: 1px solid rgba(201,151,26,.15); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-bottom: none; }
  .hero-stat:nth-child(4) { border-right: none; border-bottom: none; }
  .hero-stat strong { font-size: 1.4rem; white-space: nowrap; }
  .hero-stat span { font-size: .65rem; white-space: nowrap; }

  /* About — mobile */
  .about { min-height: unset; padding: 56px 0; display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .about-imgs { display: block; width: 100%; }
  .about-badge { display: none; }
  /* Slider mobile: block + width 100% để aspect-ratio hoạt động */
  .about-slider {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    min-height: unset;
    flex: none;
  }
  .about-slides-wrap { position: absolute; inset: 0; }

  /* Services */
  .svc-tabs { gap: 6px; }
  .svc-tab { padding: 11px 16px; font-size: .82rem; min-height: 44px; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-3col { grid-template-columns: 1fr; }
  .svc-addon-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .svc-card { padding: 22px 20px; }
  .svc-card-img { margin: -22px -20px 20px; }
  .svc-price-circle { width: 56px; height: 56px; font-size: .9rem; }
  .svc-cta { padding: 28px 20px; margin-top: 40px; }
  /* Tránh nút "Đặt Lịch Ngay" bị nút gọi/Zalo nổi che khuất ở góc phải */
  .svc-btn { margin-right: 56px; }

  /* Process */
  .process-grid { grid-template-columns: repeat(2,1fr); }

  /* Offers */
  .offers-grid { grid-template-columns: 1fr; }

  /* Recruit */
  .recruit-layout { grid-template-columns: 1fr; gap: 32px; }
  .recruit-poster-wrap { max-width: 480px; margin: 0 auto; position: static; }
  .recruit-details-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery – 2 col tablet */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 160px 160px 160px 160px;
  }
  .gallery-item.gallery-main { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item:nth-child(n+6) { grid-row: auto; }

  /* Testimonials */
  .testimonial-cards { grid-template-columns: 1fr; }

  /* Why CAMI */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking-info { flex-direction: column; gap: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Floating buttons - nhỏ lại cho mobile */
  .floating-zalo { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn { width: 52px; height: 52px; }
  .float-zalo-text { font-size: .9rem; }
  .float-label { display: none; }
}

/* ===== MOBILE NHỎ (480px - iPhone SE, Android nhỏ) ===== */
@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .wrap { padding: 0 16px; }

  /* Hero */
  .hero h1 { font-size: 1.65rem; line-height: 1.2; }
  .hero-h1-sub { font-size: 1.35rem; white-space: normal; }
  .hero-sub { font-size: .9rem; }
  .hero-desc { font-size: .9rem; }

  /* Stats 2x2 compact */
  .hero-stat strong { font-size: 1.25rem; }
  .hero-stat span { font-size: .6rem; letter-spacing: .06em; }
  .hero-stat { padding: 14px 6px; }

  /* Recruit */
  .recruit-details-grid { grid-template-columns: 1fr; }
  .recruit-cta-wrap { flex-direction: column; }
  .recruit-cta-btn { justify-content: center; }

  /* Gallery 1 cột mobile */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 140px 140px 140px 140px;
  }
  .gallery-item.gallery-main { grid-column: 1 / 3; grid-row: 1 / 2; }

  /* Why - 1 cột */
  .why-grid { grid-template-columns: 1fr; }

  /* Section headings */
  .section-title { font-size: 1.6rem; }
}

/* ===== MOBILE RẤT NHỎ (360px - Android cũ) ===== */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.45rem; }
  .hero-h1-sub { font-size: 1.2rem; }
  .btn { padding: 13px 22px; font-size: .88rem; }
  .float-btn { width: 46px; height: 46px; }
}

/* ===== BLOG SEO – Breadcrumb & FAQ (dùng chung mọi bài viết) ===== */
.breadcrumb {
  max-width: 1100px; margin: 0 auto; padding: 18px 24px 0;
  font-size: .82rem; color: var(--light); display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--green3); transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb span[aria-current] { color: var(--muted); }

.faq-section { margin: 40px 0 8px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.faq-item {
  background: #fff; border: 1px solid rgba(14,43,34,.1); border-radius: var(--radius);
  padding: 4px 20px; transition: box-shadow .3s, border-color .3s;
}
.faq-item[open] { box-shadow: 0 6px 22px rgba(14,43,34,.08); border-color: rgba(201,151,26,.4); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600;
  color: var(--green); font-size: .98rem; display: flex; justify-content: space-between;
  align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--gold); font-size: 1.5rem; font-weight: 400;
  flex-shrink: 0; transition: transform .3s; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: .93rem; line-height: 1.75; margin: 0 0 16px; padding-right: 30px; }
