/* =============================================
   EM LÊ HÀ GIANG — Landing Page CSS
   ============================================= */

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

:root {
  --green-dark:   #14532d;
  --green-mid:    #16a34a;
  --green-light:  #4ade80;
  --green-pale:   #dcfce7;
  --gold:         #ca8a04;
  --gold-light:   #fde68a;
  --gold-pale:    #fefce8;
  --red:          #dc2626;
  --bg-main:      #f7f8f3;
  --bg-card:      #ffffff;
  --bg-alt:       #f0fdf4;
  --text-dark:    #14532d;
  --text-mid:     #166534;
  --text-light:   #4b7c59;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(20,83,45,.10);
  --shadow-md:    0 8px 32px rgba(20,83,45,.14);
  --shadow-lg:    0 20px 60px rgba(20,83,45,.20);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: "Be Vietnam Pro", "Roboto", "Segoe UI", Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 99px; }

svg {
  width: 1em; height: 1em;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: middle; flex-shrink: 0;
}
svg.logo-svg { fill: var(--gold); stroke: none; width: 1.3em; height: 1.3em; }

/* ============================
   SIDEBAR
   ============================ */
.sidebar-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,.5); opacity: 0; pointer-events: none;
  transition: opacity .3s ease; backdrop-filter: blur(2px);
}
.sidebar-overlay.open { opacity: 1; pointer-events: all; }

.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 1200;
  width: 275px; max-width: 82vw;
  background: var(--green-dark);
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: 6px 0 40px rgba(0,0,0,.35);
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.1rem .9rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sidebar-logo {
  display: flex; align-items: center; gap: .45rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--white);
}
.sidebar-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.sidebar-close:hover { background: rgba(255,255,255,.2); }

.sidebar-nav {
  flex: 1; padding: .85rem .65rem;
  display: flex; flex-direction: column; gap: .2rem; overflow-y: auto;
}
.sidebar-nav a {
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem .9rem; border-radius: var(--radius-md);
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .93rem; font-weight: 500; transition: var(--transition);
}
.sidebar-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.sb-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(202,138,4,.15); display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.sb-icon svg { width: 1rem; height: 1rem; }

.sidebar-cta {
  padding: .9rem 1.1rem 1.4rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: .65rem;
}
.sidebar-call {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .65rem; border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white); text-decoration: none; font-weight: 600; font-size: .88rem;
  transition: var(--transition);
}
.sidebar-call:hover { background: rgba(255,255,255,.1); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: transparent; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(20,83,45,.96); backdrop-filter: blur(14px);
  box-shadow: 0 4px 28px rgba(0,0,0,.2);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; height: 64px;
  padding: 0 1.25rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .45rem;
  font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700;
  color: var(--white); text-decoration: none; white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: .15rem;
  list-style: none; margin-left: auto; margin-right: .75rem;
}
.nav-links a {
  display: flex; align-items: center; gap: .3rem;
  padding: .4rem .75rem; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85); text-decoration: none;
  font-size: .86rem; font-weight: 500; transition: var(--transition);
}
.nav-links a:hover { background: rgba(255,255,255,.12); color: var(--white); }
.nav-cta {
  display: flex; align-items: center; gap: .45rem;
  padding: .45rem 1.1rem; border-radius: 99px;
  background: var(--gold); color: #1a1a00;
  font-weight: 700; font-size: .86rem; text-decoration: none;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 3px 14px rgba(202,138,4,.45);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
/* Mobile toggle — sát phải, không dùng gap */
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--white); cursor: pointer;
  padding: .45rem; border-radius: var(--radius-sm);
  transition: var(--transition); margin-left: auto;
  font-size: 0; /* reset font-size, svg sized separately */
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle:hover { background: rgba(255,255,255,.1); }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #0f4423 0%, #1c6b3a 50%, #0d3b1f 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 90px 1.25rem 56px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 30%, rgba(202,138,4,.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 20% 80%, rgba(255,255,255,.04) 0%, transparent 70%);
}
.hero-particles { position: absolute; inset: 0; }
.hero-particles span {
  position: absolute; width: 3px; height: 3px;
  background: var(--gold-light); border-radius: 50%; opacity: 0;
  animation: floatUp 7s ease-in-out infinite;
}
.hero-particles span:nth-child(1)  { left:10%;top:80%;animation-delay:0s;animation-duration:7s }
.hero-particles span:nth-child(2)  { left:25%;top:90%;animation-delay:1s;animation-duration:8s }
.hero-particles span:nth-child(3)  { left:40%;top:85%;animation-delay:2s;animation-duration:6s }
.hero-particles span:nth-child(4)  { left:55%;top:92%;animation-delay:.5s;animation-duration:9s }
.hero-particles span:nth-child(5)  { left:70%;top:88%;animation-delay:1.5s;animation-duration:7.5s }
.hero-particles span:nth-child(6)  { left:85%;top:82%;animation-delay:3s;animation-duration:8.5s }
.hero-particles span:nth-child(7)  { left:15%;top:75%;animation-delay:2.5s;animation-duration:6.5s }
.hero-particles span:nth-child(8)  { left:60%;top:78%;animation-delay:4s;animation-duration:7s }
.hero-particles span:nth-child(9)  { left:35%;top:72%;animation-delay:.8s;animation-duration:9.5s }
.hero-particles span:nth-child(10) { left:90%;top:70%;animation-delay:3.5s;animation-duration:8s }
@keyframes floatUp {
  0%   { transform:translateY(0) scale(1); opacity:0 }
  10%  { opacity:1 }
  90%  { opacity:.5 }
  100% { transform:translateY(-55vh) scale(0); opacity:0 }
}

.hero-container {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .9rem; border-radius: 99px;
  background: rgba(202,138,4,.18); border: 1px solid rgba(202,138,4,.4);
  color: var(--gold-light); font-size: .8rem; font-weight: 600;
  margin-bottom: 1.1rem; animation: fadeInDown .8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.2; margin-bottom: .9rem;
  animation: fadeInUp .8s .15s ease both;
}
.title-green { color: var(--white); }
.title-gold  { color: var(--gold-light); }
.hero-desc {
  color: rgba(255,255,255,.78); font-size: .97rem; margin-bottom: 1.6rem;
  animation: fadeInUp .8s .3s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.8rem;
  animation: fadeInUp .8s .45s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.6rem; border-radius: 99px;
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: .93rem; text-decoration: none;
  transition: var(--transition); box-shadow: 0 5px 22px rgba(220,38,38,.4);
}
.btn-primary:hover { background: #ef4444; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,38,38,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.6rem; border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,.35); color: var(--white);
  font-weight: 600; font-size: .93rem; text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.hero-stats {
  display: flex; align-items: center; gap: 1.1rem;
  animation: fadeInUp .8s .6s ease both;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold-light); line-height: 1; }
.stat span { font-size: .76rem; color: rgba(255,255,255,.65); white-space: nowrap; }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.18); }
.hero-video-wrap { animation: fadeInRight .8s .3s ease both; }

/* ============================
   VIDEO CARD
   ============================ */
.video-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: #0d3b1f;
  box-shadow: var(--shadow-lg); cursor: pointer;
}
.video-card video {
  width: 100%; display: block;
  aspect-ratio: 16/9; object-fit: contain; background: #0d3b1f;  height: 100%;height: 500px;
}
.video-card.small video { aspect-ratio: 4/3; }
.video-card.wide  video { aspect-ratio: 21/9; }

.video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .65rem;
  background: rgba(0,0,0,.38); transition: opacity .3s ease; color: var(--white);
}
.video-card:hover .video-overlay { background: rgba(0,0,0,.5); }
.play-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: 2.5px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: var(--transition);
}
.play-btn.small { width: 42px; height: 42px; font-size: .95rem; }
.play-btn.large { width: 72px; height: 72px; font-size: 1.8rem; }
.video-card:hover .play-btn { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }
.video-overlay p { font-weight: 600; font-size: .9rem; text-align: center; padding: 0 1rem; }
.video-card.wide .video-overlay p { font-size: 1.1rem; }

/* Sound button */
.sound-btn {
  position: absolute; top: 10px; right: 10px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition);
  backdrop-filter: blur(4px);
}
.sound-btn:hover { background: rgba(0,0,0,.8); transform: scale(1.1); }
.sound-btn svg { width: 1rem; height: 1rem; }

.video-label {
  background: rgba(20,83,45,.9); color: rgba(255,255,255,.8);
  font-size: .7rem; font-weight: 500;
  padding: .3rem .8rem; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: .3rem;
}
.video-label code { background: rgba(255,255,255,.15); padding: .08rem .28rem; border-radius: 4px; color: var(--gold-light); }
.video-label svg { color: var(--gold); flex-shrink: 0; }

/* ============================
   SECTION COMMONS
   ============================ */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.section-header { text-align: center; margin-bottom: 2.2rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--green-dark); margin-bottom: .55rem;
}
.section-header h2 em { color: var(--gold); font-style: normal; }
.section-header p { color: var(--text-light); max-width: 520px; margin: 0 auto; font-size: .93rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,.72); }

/* ============================
   FEATURES
   ============================ */
.features { padding: 56px 1.25rem; background: var(--bg-card); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.feature-card {
  padding: 1.75rem 1.5rem; border-radius: var(--radius-lg);
  background: var(--bg-main); border: 1px solid rgba(20,83,45,.08);
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.feature-icon-wrap.gold  { background: var(--gold-pale);  color: var(--gold); }
.feature-icon-wrap.green { background: var(--green-pale);  color: var(--green-mid); }
.feature-icon-wrap.red   { background: #fde8e8; color: var(--red); }
.feature-icon-wrap svg { width: 1.4rem; height: 1.4rem; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-dark); margin-bottom: .5rem; }
.feature-card h3 em { color: var(--gold); font-style: normal; }
.feature-card p { color: var(--text-light); font-size: .88rem; }

/* ============================
   GALLERY + LIGHTBOX
   ============================ */
.gallery-section { padding: 56px 1.25rem; background: var(--bg-card); }

.gallery-scroll-wrap {
  position: relative; display: flex; align-items: center; gap: .75rem;
}
.gallery-track {
  display: flex; gap: 1rem; overflow-x: auto;
  scroll-behavior: smooth; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: .5rem .25rem 1rem;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  position: relative; flex-shrink: 0; width: 260px; height: 190px;
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; scroll-snap-align: start;
  box-shadow: var(--shadow-md); transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(20,83,45,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease; color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 2rem; height: 2rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }

.gallery-arrow {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); border: 1.5px solid rgba(20,83,45,.15);
  box-shadow: var(--shadow-sm); cursor: pointer; color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 2;
}
.gallery-arrow:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.gallery-arrow svg { width: 1.25rem; height: 1.25rem; }

.gallery-hint {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  color: var(--text-light); font-size: .8rem; margin-top: .5rem;
}
.gallery-hint svg { width: .9rem; height: .9rem; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.25rem; color: var(--white); flex-shrink: 0;
}
.lb-counter { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.7); }
.lb-actions { display: flex; gap: .4rem; }
.lb-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); text-decoration: none;
}
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-btn svg { width: 1rem; height: 1rem; }

.lb-img-wrap {
  flex: 1; width: 100%; display: flex; align-items: center; justify-content: center;
  padding: 0 3.5rem; min-height: 0;
}
.lb-img {
  max-width: 100%; max-height: 100%;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  transition: opacity .2s ease;
}
.lb-img.fade { opacity: 0; }

.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 10;
}
.lb-arrow:hover { background: rgba(255,255,255,.3); }
.lb-arrow svg { width: 1.3rem; height: 1.3rem; }
.lb-arrow-left  { left: .85rem; }
.lb-arrow-right { right: .85rem; }

.lb-thumbs {
  display: flex; gap: .4rem; padding: .9rem 1.25rem;
  overflow-x: auto; flex-shrink: 0; scrollbar-width: none;
  scroll-behavior: smooth;
}
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb {
  width: 62px; height: 46px; border-radius: var(--radius-sm);
  object-fit: cover; flex-shrink: 0; cursor: pointer;
  opacity: .45; transition: var(--transition);
  border: 2px solid transparent;
}
.lb-thumb.active { opacity: 1; border-color: var(--gold-light); }
.lb-thumb:hover { opacity: .8; }

@media (max-width: 768px) {
  .gallery-item { width: 210px; height: 155px; }
  .gallery-arrow { width: 34px; height: 34px; }
  .lb-img-wrap { padding: 0 2.5rem; }
  .lb-arrow { width: 36px; height: 36px; }
  .lb-arrow-left  { left: .4rem; }
  .lb-arrow-right { right: .4rem; }
  .lb-thumb { width: 50px; height: 37px; }
  .video-card video{
    height: 300px !important;
  }
  .section-container{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}

/* ============================
   JOURNEY
   ============================ */
.journey { padding: 56px 1.25rem; background: var(--bg-alt); }
.journey-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.quote-card {
  background: var(--green-dark); border-radius: var(--radius-lg);
  padding: 1.75rem; color: var(--white);
  position: relative; overflow: hidden; margin-bottom: 1.1rem;
}
.quote-card::before {
  content: '"'; position: absolute; top: -20px; left: 16px;
  font-family: 'Playfair Display', serif; font-size: 9rem;
  color: rgba(255,255,255,.05); line-height: 1; pointer-events: none;
}
.mountain-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(202,138,4,.2); display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); margin-bottom: 1.1rem;
}
.mountain-icon svg { width: 1.25rem; height: 1.25rem; }
blockquote { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold-light); line-height: 1.4; margin-bottom: .9rem; }
.quote-body { color: rgba(255,255,255,.78); font-size: .88rem; line-height: 1.8; margin-bottom: 1.1rem; }
cite { color: var(--gold-light); font-style: normal; font-weight: 700; font-size: .83rem; }

.journey-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2vw, 1.9rem); color: var(--green-dark); margin-bottom: .55rem; }
.journey-sub { color: var(--text-light); margin-bottom: 1.4rem; font-size: .93rem; }
.journey-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.journey-list li { display: flex; gap: .8rem; align-items: flex-start; }
.list-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: .1rem;
}
.list-icon.green { background: var(--green-pale); color: var(--green-mid); }
.list-icon.gold  { background: var(--gold-pale);  color: var(--gold); }
.list-icon.red   { background: #fde8e8; color: var(--red); }
.list-icon svg { width: .95rem; height: .95rem; }
.journey-list li strong { display: block; color: var(--green-dark); font-weight: 700; margin-bottom: .15rem; font-size: .93rem; }
.journey-list li p { color: var(--text-light); font-size: .86rem; }

/* ============================
   ORDER FORM
   ============================ */
.order-section {
  padding: 56px 1.25rem;
  background: linear-gradient(145deg, #0f4423 0%, #1c6b3a 60%, #0d3b1f 100%);
  position: relative; overflow: hidden;
}
.order-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.order-ripple {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.03); top: -180px; right: -80px;
  animation: pulseBg 4s ease-in-out infinite;
}
.order-ripple.delay1 { animation-delay: 2s; top: auto; bottom: -180px; left: -80px; right: auto; }
@keyframes pulseBg { 0%,100%{transform:scale(1);opacity:.03}50%{transform:scale(1.1);opacity:.06} }

.order-form-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.order-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { display: flex; align-items: center; gap: .38rem; font-weight: 600; font-size: .86rem; color: var(--text-mid); }
.form-group label svg { color: var(--green-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem .85rem; border: 1.5px solid rgba(20,83,45,.18);
  border-radius: var(--radius-sm); font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .9rem; color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none; resize: vertical;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
  border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.form-group input::placeholder,.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { min-height: 78px; }
.form-group select { appearance: none; cursor: pointer; }

.form-summary {
  background: var(--gold-pale); border: 1.5px solid rgba(202,138,4,.28);
  border-radius: var(--radius-md); padding: .78rem 1.1rem;
  display: flex; flex-wrap: wrap; gap: .4rem 1.3rem;
}
.summary-item { display: flex; align-items: center; gap: .38rem; color: var(--text-mid); font-size: .86rem; }
.summary-item svg { color: var(--gold); }
.summary-item strong { color: var(--green-dark); }

.form-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.btn-submit {
  flex: 2; padding: .85rem; border-radius: 99px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white); border: none; cursor: pointer;
  font-size: .93rem; font-weight: 700; font-family: 'Be Vietnam Pro', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: var(--transition); box-shadow: 0 5px 22px rgba(20,83,45,.35); min-width: 170px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 9px 28px rgba(20,83,45,.5); }
.btn-call {
  flex: 1; padding: .85rem; border-radius: 99px;
  background: #22c55e; color: var(--white);
  text-decoration: none; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  transition: var(--transition); box-shadow: 0 5px 20px rgba(34,197,94,.3);
  font-size: .88rem; min-width: 120px;
}
.btn-call:hover { background: #16a34a; transform: translateY(-2px); }

/* ============================
   FAQ
   ============================ */
.faq { padding: 56px 1.25rem; background: var(--bg-card); }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: .55rem; }
.faq-item {
  background: var(--bg-main); border-radius: var(--radius-md);
  border: 1px solid rgba(20,83,45,.08); overflow: hidden;
  cursor: pointer; transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; gap: .7rem;
  padding: 1rem 1.1rem; font-weight: 600; color: var(--text-dark); font-size: .93rem;
}
.faq-q span:not(.faq-icon) { flex: 1; }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  color: var(--green-mid);
}
.faq-icon svg { width: .95rem; height: .95rem; }
.faq-arrow { flex-shrink: 0; color: var(--gold); transition: transform .3s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.1rem 1rem 1.1rem; }
.faq-item.open .faq-a { display: block; animation: slideDown .3s ease; }
.faq-a p { color: var(--text-light); font-size: .88rem; line-height: 1.7; padding-left: calc(32px + .7rem); }
@keyframes slideDown { from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:none} }

/* ============================
   END VIDEO
   ============================ */
.end-video-section { padding: 56px 1.25rem; background: var(--bg-alt); }
.end-video-wrap { max-width: 860px; margin: 0 auto; }

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--green-dark); color: var(--white); padding: 2.75rem 1.25rem 0; }
.footer-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 2.25rem;
  padding-bottom: 2.25rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: .8rem; display: flex; align-items: center; gap: .45rem;
}
.footer-brand p { color: rgba(255,255,255,.58); font-size: .86rem; line-height: 1.8; margin-bottom: 1.1rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.68);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: #1a1a00; transform: translateY(-3px); }
.footer-links h4,.footer-contact h4 {
  display: flex; align-items: center; gap: .4rem;
  color: var(--gold-light); font-weight: 700; margin-bottom: .8rem; font-size: .92rem;
}
.footer-links ul,.footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-links a { color: rgba(255,255,255,.58); text-decoration: none; font-size: .86rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.58); font-size: .86rem; }
.footer-contact svg { color: var(--gold-light); flex-shrink: 0; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.1rem 0; text-align: center; color: rgba(255,255,255,.3); font-size: .8rem;
}

/* ============================
   ORDER SUCCESS TOAST
   ============================ */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(110px);
  background: var(--green-dark); color: var(--white);
  padding: .85rem 1.5rem; border-radius: 99px;
  display: flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .88rem;
  box-shadow: var(--shadow-lg); z-index: 1000;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1); white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { color: #4ade80; }

/* ============================
   VIEWER BADGE (persistent, top-right)
   ============================ */
.viewer-badge {
  position: fixed; top: 72px; right: 1rem; z-index: 900;
  display: flex; align-items: center; gap: .4rem;
  background: rgba(20,83,45,.92); color: var(--white);
  padding: .35rem .75rem .35rem .55rem; border-radius: 99px;
  font-size: .78rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,.22); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  animation: fadeInDown .6s .5s ease both;
}
.viewer-badge svg { width: .9rem; height: .9rem; color: #4ade80; }
.viewer-badge #viewerCount { color: var(--gold-light); font-size: .88rem; }
.vb-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  animation: blink 1.4s ease-in-out infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

/* ============================
   ORDER PROOF TOAST (bottom-left queue)
   ============================ */
.order-proof {
  position: fixed; bottom: 1.4rem; left: 1.2rem; z-index: 1001;
  transform: translateY(110px) scale(.95); opacity: 0; pointer-events: none;
  transition: transform .42s cubic-bezier(.34,1.56,.64,1), opacity .32s ease;
  max-width: 285px;
}
.order-proof.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.op-inner {
  background: var(--white); border-radius: var(--radius-md);
  padding: .85rem .9rem; box-shadow: 0 8px 28px rgba(20,83,45,.18);
  border-left: 4px solid var(--green-mid);
  display: flex; align-items: center; gap: .65rem;
}
.op-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  color: var(--green-mid);
}
.op-avatar svg { width: 1rem; height: 1rem; }
.op-body { flex: 1; min-width: 0; }
.op-name { font-weight: 700; color: var(--green-dark); font-size: .86rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.op-msg { font-size: .78rem; color: var(--text-light); }
.op-badge { color: var(--green-mid); flex-shrink: 0; }
.op-badge svg { width: 1.1rem; height: 1.1rem; }

/* ============================
   FLOATING BUTTONS
   ============================ */
.fab {
  position: fixed; border-radius: 50%; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: var(--transition); box-shadow: var(--shadow-lg);
}
.fab-buy {
  bottom: 5.5rem; right: 1.25rem;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--red), #ef4444);
  color: var(--white); font-size: 1.25rem;
  animation: fabPulse 3s ease-in-out infinite;
}
.fab-buy:hover { transform: scale(1.12); animation: none; }

.fab-phone {
  bottom: 1.25rem; right: 1.25rem;
  width: 54px; height: 54px;
  background: #22c55e; color: var(--white); font-size: 1.35rem;
  animation: phonePulse 2s ease-in-out infinite;
}
.fab-phone:hover { transform: scale(1.12); animation: none; }
.fab-label { display: none; }

@keyframes fabPulse {
  0%,100%{box-shadow:0 5px 18px rgba(220,38,38,.5)}
  50%{box-shadow:0 5px 26px rgba(220,38,38,.8),0 0 0 9px rgba(220,38,38,.12)}
}
@keyframes phonePulse {
  0%,100%{box-shadow:0 5px 18px rgba(34,197,94,.5)}
  50%{box-shadow:0 5px 26px rgba(34,197,94,.8),0 0 0 9px rgba(34,197,94,.15)}
}

/* ============================
   AOS
   ============================ */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }

@keyframes fadeInUp    { from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none} }
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-16px)}to{opacity:1;transform:none} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(32px)}to{opacity:1;transform:none} }

/* ============================
   RESPONSIVE — TABLET
   ============================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-video-wrap { order: -1; }
  .journey-inner   { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

/* ============================
   RESPONSIVE — MOBILE
   ============================ */
@media (max-width: 768px) {
  /* Navbar: hide desktop links, show toggle flush-right */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-container { padding: 0 1rem; }

  .features-grid  { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 1.5rem 1rem; }
  .footer-container { grid-template-columns: 1fr; }

  .hero { padding: 130px 1rem 48px; }
  .hero-stats { gap: .75rem; }

  .features, .journey, .order-section, .faq, .end-video-section { padding: 25px 1rem; }
  .footer { padding: 2.25rem 1rem 0; }
.gallery-section{
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
  .video-card.wide video { aspect-ratio: 16/9; }

  /* Phone FAB pill on mobile */
  .fab-phone {
    width: auto; height: 46px; border-radius: 99px;
    padding: 0 1.1rem; gap: .45rem;
  }
  .fab-label { display: inline; font-size: .86rem; font-weight: 700; }
  .fab-buy { bottom: 4.6rem; }

  .order-proof { max-width: calc(100vw - 2.4rem); }
  .viewer-badge { top: 68px; right: .8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .form-actions { flex-direction: column; }
  .btn-submit, .btn-call { flex: unset; width: 100%; }
  .hero-stats { gap: .55rem; }
  .stat strong { font-size: 1.5rem; }
  .hero-badge { font-size: .75rem; }
}
