:root {
  --bg-main: #fff7f0;         /* Nền kem – tone ấm */
  --bg-card: #ffffff;
  --accent: #ff8b2c;          /* CAM CHỦ ĐẠO */
  --accent-soft: #ffe2c2;     /* Cam nhạt */
  --accent-dark: #8a5a2b;     /* NÂU ĐẤT */
  --text-main: #3a2a1e;       /* chữ nâu đậm – dễ đọc */
  --text-muted: #7a6758;      /* nâu xám */
  --shadow-soft: 0 14px 35px rgba(0,0,0,0.06);
  --radius-xl: 24px;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top left, #fff0e0, #fff7f0 40%, #faeee1 80%);
      color: var(--text-main);
      line-height: 1.6;
    }

    .page-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* -------- Header -------- */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(253, 247, 255, 0.88);
      border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    }

    .nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* logo dùng hình tròn Viên Ngọc Sáng */
    .brand-logo {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
      background: #ffffff;
      position: relative;
    }
    .brand-logo::after {
      display: none; /* tắt hiệu ứng cũ */
    }
    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      display: block;
    }

    .brand-text-title {
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 0.04em;
    }

    .brand-text-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex;
      gap: 10px;
      font-size: 0.9rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      padding: 6px 12px;
      border-radius: 999px;
      transition: 0.2s;
    }

    .nav-links a:hover {
      background: rgba(255, 122, 192, 0.08);
      color: var(--accent);
    }
.nav-links a.active {
  background: rgba(255, 122, 192, 0.18);
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 122, 192, 0.25);
}
    /* -------- Hero -------- */
    main {
      flex: 1;
    }

    .hero {
      max-width: 1200px;
      margin: 0 auto;
      padding: 36px 18px 12px;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
      gap: 30px;
      align-items: center;
    }

    @media (max-width: 768px) {
      .hero {
        grid-template-columns: 1fr;
        padding-top: 24px;
      }
    }

    .hero-text-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      font-size: 0.8rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      margin-bottom: 14px;
    }

    .hero-text-badge span.icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
       background: linear-gradient(135deg, #ff8b2c, #ffb36b);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      color: #fff;
    }

    .hero-title {
      font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hero-title span {
     background: linear-gradient(120deg, #ff8b2c, #ffb36b);
  -webkit-background-clip: text;
  color: transparent;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .hero-subtitle strong {
      color: var(--accent-dark);
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .btn-main, .btn-ghost {
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 0.95rem;
      border: none;
      outline: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
      white-space: nowrap;
    }

    .btn-main {
      background: linear-gradient(135deg, #ff8b2c, #ffb36b);
      color: #fff;
      box-shadow: 0 14px 35px rgba(255, 140, 44, 0.35);
    }

    .btn-main:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 38px rgba(255, 122, 192, 0.55);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.9);
      color: var(--text-main);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .btn-ghost:hover {
      background: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .hero-note {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .hero-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .hero-visual-img {
      width: 100%;
      max-width: 380px;
      border-radius: 30px;
      box-shadow: var(--shadow-soft);
      object-fit: cover;
      display: block;
    }
/* =====================
   HERO SLIDER
   ===================== */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 18px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--bg-card);
}

.hero-slider-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%; /* B1: ~50% chiều cao màn hình trên desktop */
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Nút qua lại */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.9);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--accent-dark);
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.hero-slider-btn.prev {
  left: 10px;
}

.hero-slider-btn.next {
  right: 10px;
}

.hero-slider-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}

.hero-slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  padding: 0;
  cursor: pointer;
  transition: width 0.2s, background 0.2s, opacity 0.2s;
}

.hero-slider-dots button.active {
  width: 18px;
  background: #ffffff;
}

/* Mobile: slider full width hơn một chút */
@media (max-width: 768px) {
  .hero-slider {
    max-width: 100%;
  }
}

    .hero-card {
      width: 100%;
      max-width: 360px;
      background: var(--bg-card);
      border-radius: 30px;
      box-shadow: var(--shadow-soft);
      padding: 22px 20px 18px;
      position: relative;
      overflow: hidden;
    }

    .hero-card-tag {
      font-size: 0.8rem;
      color: var(--accent-dark);
      font-weight: 600;
      margin-bottom: 6px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-card-tag::before {
      content: "●";
      font-size: 0.6rem;
    }

    .hero-card-quote {
      font-size: 0.95rem;
      margin-bottom: 8px;
    }

    .hero-card-text {
      font-size: 0.83rem;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .hero-pill-row {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }

    .hero-pill {
      font-size: 0.75rem;
      padding: 5px 10px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent-dark);
      border: 1px dashed rgba(138, 90, 43, 0.35);
    }

    .hero-bars {
      display: flex;
      gap: 12px;
      margin-top: 10px;
      justify-content: space-between;
      align-items: stretch;
    }

    .bar {
      flex: 1;
      border-radius: 999px;
      padding: 8px 10px;
      font-size: 0.75rem;
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      min-height: 48px;
    }

    .bar-label {
      font-weight: 500;
      font-size: 0.8rem;
    }

    .bar-fill {
      flex: 1;
      margin-left: 6px;
      height: 6px;
      border-radius: 999px;
      background: #ffddbb;
      overflow: hidden;
      position: relative;
    }

    .bar-fill span {
      position: absolute;
      inset: 0;
      border-radius: inherit;
  background: linear-gradient(90deg, #ff8b2c, #ffb36b);

    }

    .bar-value {
      font-size: 0.7rem;
      color: var(--accent-dark);
    }

    .hero-circle {
      position: absolute;
      width: 170px;
      height: 170px;
      border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #fff, #ffe7d0 55%, #ffb36b 100%);
      filter: blur(0.4px);
      z-index: -1;
      right: -10px;
      top: -40px;
      opacity: 0.5;
    }

    /* -------- Sections -------- */
    section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 26px 18px;
    }

    section h2.section-title {
      font-size: 1.4rem;
      margin-bottom: 8px;
    }

    .section-subtitle {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .highlight {
     background: linear-gradient(120deg, #ffe9c2, #ffe0c5);
border: 1px solid rgba(255,140,44,0.35);
      padding: 10px 14px;
      border-radius: 16px;
      border: 1px solid rgba(255, 174, 208, 0.5);
      font-size: 0.9rem;
      margin-bottom: 16px;
    }

    .section-text {
      font-size: 0.94rem;
      color: var(--text-main);
      margin-bottom: 12px;
      text-align: justify;
    }

    .section-text span.emoji {
      font-size: 1.05rem;
      margin-right: 2px;
    }

    /* hình minh họa section (bánh xe sức khỏe) */
    .section-illustration {
      max-width: 260px;
      display: block;
      margin: 0 auto 16px;
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    }
    .section-illustration-circle {
      border-radius: 50%;
    }

    /* Cards 3 trụ cột */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 10px;
    }

    @media (max-width: 900px) {
      .grid-3 {
        grid-template-columns: 1fr;
      }
    }

    .card {
      background: var(--bg-card);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      padding: 16px 16px 14px;
      position: relative;
      overflow: hidden;
    }

    .card-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #8a5a2b;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .card-title {
      font-size: 1rem;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .card-title span.icon {
      font-size: 1.1rem;
    }

    .card-body {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .card ul {
      font-size: 0.86rem;
      padding-left: 18px;
      color: var(--text-main);
    }

    .card ul li + li {
      margin-top: 4px;
    }

    .card-bottom-tag {
      margin-top: 8px;
      font-size: 0.8rem;
      color: var(--accent-dark);
    }

    /* Steps */
    .steps {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .steps {
        grid-template-columns: 1fr;
      }
    }

    .step {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      padding: 14px 14px 12px;
      border: 1px dashed rgba(255, 142, 191, 0.5);
    }

    .step-title {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .step-badge {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: #ffe9c2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--accent-dark);
    }

    .step-text {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* Final message */
    .cta-card {
      background: linear-gradient(125deg, #ff8b2c, #ffb36b);
      border-radius: 28px;
      padding: 20px 18px 18px;
      color: #3b2031;
      box-shadow: 0 18px 45px rgba(255, 136, 196, 0.5);
      position: relative;
      overflow: hidden;
    }

    .cta-card h3 {
      font-size: 1.3rem;
      margin-bottom: 8px;
    }

    .cta-card p {
      font-size: 0.95rem;
      max-width: 650px;
      margin-bottom: 10px;
    }

    .cta-actions {
      margin-top: 6px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .cta-ghost {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 0.88rem;
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .cta-bubble {
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
      right: -40px;
      top: -40px;
      opacity: 0.9;
    }

    @media (max-width: 768px) {
      .cta-bubble {
        opacity: 0.4;
      }
    }

    
    /* ---------------------------
       HOME SECTIONS ĐƠN GIẢN
    --------------------------- */
    .home-pathways,
    .home-reasons,
    .home-tkt,
    .home-cta {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 16px 30px;
    }

    .home-card-grid .card {
      height: 100%;
    }

    .card.card-link {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-cta {
      margin-top: 14px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--accent-dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .card-cta:hover {
      text-decoration: underline;
    }

    .home-reasons .card-title {
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .home-cta-inner {
      border-radius: 26px;
      padding: 24px 22px;
      background: linear-gradient(120deg, #ffedd6, #ffe2c2);
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .home-cta-text h2 {
      font-size: 1.3rem;
      margin-bottom: 6px;
      color: var(--accent-dark);
    }

    .home-cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .home-cta .btn-main,
    .home-cta .btn-ghost {
      padding: 10px 18px;
      font-size: 0.95rem;
    }

    @media (min-width: 900px) {
      .home-cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
      .home-cta-text {
        max-width: 65%;
      }
    }
/* Footer */
    footer {
      padding: 16px 18px 22px;
      font-size: 0.8rem;
      color: var(--text-muted);
      text-align: center;
    }

    footer a {
      color: var(--accent-dark);
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* Back to top */
    .back-to-top {
      position: fixed;
      right: 16px;
      bottom: 18px;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: none;
      background: #ffffff;
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      color: var(--accent-dark);
      opacity: 0;
      pointer-events: none;
      transition: 0.2s;
    }

    .back-to-top.show {
      opacity: 1;
      pointer-events: auto;
    }
 /* =======================
   FOOTER CHUYÊN NGHIỆP
   ======================= */

.site-footer {
  margin-top: 30px;
  padding: 26px 18px 18px;
  background: #f9f1e8;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: 2fr 2fr 1.6fr;
  gap: 18px;
}

.footer-col {
  min-width: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.12);
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--text-main);
}

.footer-sub {
  font-size: 0.8rem;
}

.footer-desc {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}
.footer-list li + li {
  margin-top: 4px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent);
}

.footer-map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--accent-dark);
}
.footer-map-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
}
.footer-bottom a {
  color: var(--accent-dark);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =======================
   TRANG LIÊN HỆ
   ======================= */

.contact-hero {
  align-items: flex-start;
}

.contact-card-wrapper {
  align-items: stretch;
}

.contact-card {
  background: var(--bg-card);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 14px;
  font-size: 0.9rem;
}
.contact-card h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-card li + li {
  margin-top: 4px;
}

/* FORM + MAP SECTION */
.contact-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 18px 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-box {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
}

.contact-form .form-group {
  margin-bottom: 10px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 10px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #faf8ff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff8b2c;
  box-shadow: 0 0 0 1px rgba(255,122,192,0.35);
  background: #ffffff;
}

.contact-form .contact-submit {
  margin-top: 6px;
}

.contact-note {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Map responsive */
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  background: #fff2e2;
  box-shadow: var(--shadow-soft);
}
.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================
   CHAT FLOAT BUTTONS
   ========================== */

.chat-float {
  position: fixed;
  left: 18px;          /* SỬA 'lèft' thành 'left' để bám góc trái */
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.chat-btn {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-btn img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.chat-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

/* Facebook màu xanh */
.chat-facebook {
  background: #1877f2;
}
.chat-facebook img {
  filter: brightness(1000%);
}

/* Zalo màu trắng xanh */
.chat-zalo {
  background: #fff;
  border: 2px solid #0a78ff;
}

/* Call màu cam nhẹ */
.chat-call {
background: linear-gradient(135deg, #ff8b2c, #ffb36b);
}

/* Hiệu ứng nhấp nháy luân phiên */
@keyframes pulse-chat {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,140,44,0.0);
  }
  40% {
    transform: scale(1.18);
    box-shadow: 0 0 18px rgba(255,140,44,0.6);
  }
  80% {
    transform: scale(1.02);
    box-shadow: 0 0 6px rgba(255,140,44,0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,140,44,0.0);
  }
}

/* Mỗi nút sẽ sáng trong 1.2s, lệch nhau 1.2s để luân phiên */
.chat-zalo {
  animation: pulse-chat 1.2s infinite;
  animation-delay: 0s;
}

.chat-facebook {
  animation: pulse-chat 1.2s infinite;
  animation-delay: 1.2s;
}

.chat-call {
  animation: pulse-chat 1.2s infinite;
  animation-delay: 2.4s;
}

/* Mobile: thu nhỏ một chút */
@media (max-width: 480px) {
  .chat-btn {
    width: 50px;
    height: 50px;
  }
}

/* Nút toggle menu (PC ẩn, mobile hiện) */
.nav-toggle {
  display: none;
  border: none;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 1.3rem;
  cursor: pointer;
}

/* Mobile style */
@media (max-width: 768px) {
  .nav {
    padding: 10px 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-text-title {
    font-size: 0.9rem;
  }

  /* Ẩn hoặc thu nhỏ slogan cho đỡ rối */
  .brand-text-sub {
    font-size: 0.75rem;
    max-width: 180px;
    line-height: 1.2;
    color: var(--text-muted);
  }

  /* Hiện nút menu, ẩn menu mặc định */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 64px;          /* dưới header */
    left: 14px;
    right: 14px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    padding: 8px 10px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 9990;
  }

  .nav-links a {
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 122, 192, 0.12);
  }

  /* Khi mở menu */
  .nav-links.open {
    display: flex;
  }
}
/* ===============================
   HEADER BOOKING BUTTONS
   =============================== */

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Nút gọi */
.header-book-call {
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8b2c, #ffb36b);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(255,122,192,0.45);
  animation: pulseGlow 2.4s infinite;
  white-space: nowrap;
}

/* Nút Zalo */
.header-book-zalo {
  padding: 8px 12px;
  border-radius: 999px;
  background: #0a78ff;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(10,120,255,0.4);
  white-space: nowrap;
  transition: transform 0.15s ease;
}

.header-book-zalo:hover,
.header-book-call:hover {
  transform: translateY(-1px);
}

/* Hiệu ứng nhấp nháy nhẹ */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0px rgba(255,122,192,0.5); }
  50%      { box-shadow: 0 0 16px rgba(255,122,192,0.8); }
}

/* MOBILE */
@media (max-width: 768px) {
  .header-buttons {
    order: 10;
    width: 100%;
    flex-direction: column;
    margin-top: 6px;
  }

  .header-book-call,
  .header-book-zalo {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  .nav {
    flex-wrap: wrap;
  }
}

/* =====================
   HERO FULL-WIDTH LAYOUT MỚI
   ===================== */
.hero-full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero-full
/* =====================
   HERO WRAPPER MỚI (slider B1)
   ===================== */
.hero-full {
  width: 100%;
  padding: 8px 16px 0;
}

@media (max-width: 768px) {
  .hero-slider {
    max-width: 100%;
    border-radius: 0;
  }
  .hero-slider-inner {
    padding-top: 70%; /* cao hơn chút trên mobile */
  }
}

.hero-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 24px;
}

.hero-intro-inner {
  max-width: 880px;
}

@media (min-width: 992px) {
  .hero-intro-inner {
    max-width: 960px;
  }
}
 
.home-tkt .tkt-link-more {
  margin-top: 12px;
  text-align: center;
}
/* Nút viền nháy sáng */
.glow-btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
  padding: 10px 20px;
  border-radius: 12px;
  border: 2px solid var(--accent-dark);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.25s;
}

/* Hiệu ứng nháy sáng chạy quanh viền */
.glow-btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 12px;
  background: linear-gradient(120deg, 
    rgba(255, 140, 50, 0.5), 
    rgba(255, 200, 150, 0.5), 
    rgba(255, 140, 50, 0.5)
  );
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: glowPulse 2.6s infinite linear;
}

/* Khi hover sáng mạnh hơn */
.glow-btn:hover::before {
  opacity: 1;
}

@keyframes glowPulse {
  0% {
    transform: rotate(0deg);
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.4;
  }
}
/* Vị trí caption */
.slide-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 12px 18px;
  max-width: 70%;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.7s ease forwards;
}

/* Text */
.slide-caption p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4rem;
}

/* Tô khối nhấn mạnh */
.slide-caption .hl {
  background: rgba(255, 140, 50, 0.85);
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 600;
}

/* Hiệu ứng text nổi lên */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .slide-caption {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px;
    max-width: 85%;
  }
  .slide-caption p {
    font-size: 0.9rem;
    line-height: 1.25rem;
  }
}
/* vùng ảnh chứa hiệu ứng */
.zoom-wrapper {
  position: relative;
  display: inline-block;
  cursor: zoom-in;
}

.zoom-wrapper img {
  transition: transform 0.25s ease;
}

/* icon kính lúp */
.zoom-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 6px 8px;
  font-size: 1rem;
  border-radius: 8px;
  opacity: 0;
  transition: 0.25s ease;
  pointer-events: none;
}

.zoom-wrapper:hover .zoom-icon {
  opacity: 1;
}

/* Popup xem ảnh lớn */
#zoom-popup {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9990;
}

#zoom-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
  box-shadow: 0px 0px 18px rgba(0,0,0,0.6);
  animation: zoomFade 0.3s ease;
}

@keyframes zoomFade {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

#zoom-popup.close-area {
  cursor: zoom-out;
}
.tkt-table {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.tkt-row {
  display: flex;
  padding: 10px 14px;
  background: #fff;
}

.tkt-row:nth-child(2n) {
  background: #fff7ec; /* cam đất rất nhẹ */
}

.tkt-cell:first-child {
  width: 34%;
  font-weight: 600;
  color: var(--accent-dark);
}

.tkt-cell:last-child {
  width: 66%;
  color: var(--text-muted);
  font-size: 0.95rem;
}
/* POPUP THẺ THÀNH VIÊN */
.member-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.member-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.member-popup {
  background: #fff8ee;
  border-radius: 18px;
  padding: 24px 22px 22px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.member-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.member-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #facc6b;
  color: #5b3a1a;
  font-weight: 600;
  margin-bottom: 10px;
}

.member-popup-title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 6px;
  color: #3b2a1a;
}

.member-popup-title span {
  color: #b97723;
}

.member-popup-sub {
  font-size: 14px;
  margin-bottom: 10px;
  color: #4a3a2a;
}

.member-popup-list {
  font-size: 13px;
  padding-left: 18px;
  margin: 0 0 10px;
  color: #3f2f20;
}

.member-popup-list li {
  margin-bottom: 4px;
}

.member-popup-note,
.member-popup-disclaimer {
  font-size: 11px;
  color: #7a6a55;
  margin: 4px 0;
}

.member-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 4px;
}

.member-popup-btn,
.member-popup-btn-secondary {
  flex: 1 1 150px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 480px) {
  .member-popup {
    margin: 0 12px;
    padding: 20px 16px 16px;
  }

  .member-popup-title {
    font-size: 18px;
  }

  .member-popup-sub {
    font-size: 13px;
  }

  .member-popup-list {
    font-size: 12px;
  }
}
/* NÚT THẺ THÀNH VIÊN NỔI BẬT TRÊN MENU */
.menu-member-highlight {
  position: relative;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: #facc6b;
  color: #4b2a10;
  margin-left: 4px;
  box-shadow: 0 0 0 0 rgba(250, 204, 120, 0.8);
  animation: vns-pulse 1.3s ease-out infinite;
}

/* Giữ màu khi hover và không bị đổi link như các menu khác */
.menu-member-highlight:hover {
  background: #fbbf24;
  color: #4b2a10;
}

/* Hiệu ứng “nhịp tim” / phát sáng */
@keyframes vns-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 204, 120, 0.9);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(250, 204, 120, 0);
    transform: translateY(-1px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 204, 120, 0);
    transform: translateY(0);
  }
}

/* Mobile: cho nút full width dễ bấm */
@media (max-width: 768px) {
  .menu-member-highlight {
    display: inline-block;
    margin-top: 4px;
    width: 100%;
    text-align: center;
  }
}
