:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --navy: #0D2B45;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --text-dark: #1A2B3C;
  --t1-accent: #C9A96E;
  --shadow-soft: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px rgba(201,169,110,0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  --transition-smooth: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: #07182A;
  font-family: 'Outfit', sans-serif;
  color: rgba(255,255,255,0.85);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ─── LOGO ─── */
.site-logo {
  position: fixed; top: 24px; left: 28px; z-index: 300;
}
.site-logo img {
  height: 48px; width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(201,169,110,0.1));
  transition: transform 0.4s var(--transition-smooth);
}
.site-logo img:hover { transform: scale(1.04); }

/* ─── BOTTOM NAV (đồng bộ với bản gốc) ─── */
.bottom-nav {
  display: none; /* Ẩn trên desktop, chỉ hiện mobile */
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  background: rgba(10, 15, 25, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 80px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 60px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.25s;
}
.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.nav-link.primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.nav-link.primary:hover {
  filter: brightness(1.1);
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ─── HERO ─── */
.page-hero {
  min-height: 48vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 6% 80px;
  position: relative; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../images/group-images/1.webp');
  background-size: cover; background-position: center 40%;
  z-index: 0;
  transform: scale(1.02);
  filter: brightness(0.9) saturate(1.05);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(7,24,42,0.1) 0%, rgba(7,24,42,0.55) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(7,24,42,0) 20%, rgba(7,24,42,0.95) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 6px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  opacity: 0.9;
}
.eyebrow-line { width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300; line-height: 0.95;
  color: #fff; letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: italic; display: block; color: var(--gold-light);
  text-shadow: 0 0 60px rgba(201,169,110,0.15);
}
.hero-sub {
  margin-top: 18px; font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  max-width: 440px;
  backdrop-filter: blur(4px);
  padding: 8px 0;
}

/* ─── MAIN CONTENT ─── */
.main-section {
  background: var(--navy);
  padding: 0 6% 160px;
  position: relative;
}
.main-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
  border-radius: 2px;
}

/* ─── SECTION LABEL ─── */
.section-label {
  display: flex; align-items: center; gap: 14px;
  padding: 60px 0 48px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 6px;
  text-transform: uppercase; color: var(--gold);
  opacity: 0.8;
}
.section-label-line { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(201,169,110,0.2), transparent); border-radius: 2px; }

/* ─── TWO COLUMN LAYOUT ─── */
.content-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 40px;
  align-items: start;
}

/* ─── MEDIA GALLERY ─── */
.media-gallery {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0,0,0,0.4);
  height: 560px;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  border: 1px solid rgba(255,255,255,0.05);
}

.media-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.media-slide {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.media-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D2B45;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  background: #000;
}

.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white; font-size: 20px;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s var(--transition-smooth);
  z-index: 20;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.gallery-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 8px 32px rgba(201,169,110,0.3);
}
.prev-btn { left: 18px; }
.next-btn { right: 18px; }

.gallery-dots {
  position: absolute; bottom: 20px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 10px; z-index: 20;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer; transition: all 0.3s var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.05);
}
.gallery-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(201,169,110,0.3);
}

.media-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  z-index: 20;
  border-left: 3px solid var(--gold);
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.fullscreen-btn {
  position: absolute; bottom: 68px; right: 18px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--transition-smooth);
  z-index: 25;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.fullscreen-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
}

/* ─── FULLSCREEN VIEWER ─── */
.fullscreen-viewer {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center;
  z-index: 10001; flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.fullscreen-viewer.active { display: flex; }
.viewer-media {
  max-width: 90%; max-height: 85%;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.viewer-close {
  position: absolute; top: 28px; right: 36px;
  font-size: 20px; color: rgba(255,255,255,0.6);
  cursor: pointer; background: rgba(255,255,255,0.06);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.08);
}
.viewer-close:hover { background: rgba(255,255,255,0.12); color: #fff; transform: rotate(90deg); }
.viewer-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: white;
  background: rgba(255,255,255,0.06);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.viewer-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-50%) scale(1.06); }
.viewer-prev { left: 32px; }
.viewer-next { right: 32px; }

/* ─── INFO PANEL ─── */
.info-panel {
  display: flex; flex-direction: column; gap: 0;
}

.itinerary-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 2px;
}

/* ─── ACCORDION ─── */
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  padding: 18px 24px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s var(--transition-smooth);
  border-radius: var(--radius-sm);
}
.accordion-header:hover {
  background: rgba(255,255,255,0.04);
  padding-left: 28px;
}
.accordion-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold); flex-shrink: 0;
  transition: all 0.35s var(--transition-smooth);
}
.accordion-item.active .accordion-toggle {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}
.accordion-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--transition-smooth), opacity 0.4s var(--transition-smooth);
  opacity: 0;
}
.accordion-item.active .accordion-content {
  max-height: 320px; opacity: 1;
}
.accordion-inner {
  padding: 0 24px 22px;
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.8;
}
.accordion-inner p { margin-bottom: 4px; }
.accordion-inner strong { color: rgba(255,255,255,0.75); font-weight: 500; }

/* ─── PRICE BOX ─── */
.price-box {
  background: linear-gradient(135deg, rgba(201,169,110,0.06), rgba(201,169,110,0.02));
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 2px;
  transition: border-color 0.3s var(--transition-smooth);
}
.price-box:hover { border-color: rgba(201,169,110,0.3); }
.price-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
  opacity: 0.8;
}
.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: #fff; line-height: 1;
  letter-spacing: -0.02em;
}
.price-note {
  font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.35);
  margin-top: 6px; letter-spacing: 0.03em;
}
#priceWarning { color: #E07B4A; font-size: 0.75rem; margin-top: 6px; }

/* ─── BOOKING BUTTONS ─── */
.booking-actions {
  display: flex; gap: 6px;
}
.book-btn {
  flex: 1; padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.book-btn-private {
  background: linear-gradient(135deg, var(--gold), #B8955E);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,169,110,0.2);
}
.book-btn-private:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.35);
}
.book-btn-group {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.08);
}
.book-btn-group:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
}

/* ─── POPUP ─── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none; align-items: center; justify-content: center;
  z-index: 10002; padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--navy);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-md);
  width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 40px 40px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.popup-box::-webkit-scrollbar { display: none; }
.popup-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px;
}
.popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: #fff; line-height: 1;
}
.popup-title em { font-style: italic; color: var(--gold-light); display: block; }
.popup-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s var(--transition-smooth);
  flex-shrink: 0;
}
.popup-close:hover { background: rgba(255,255,255,0.1); color: #fff; transform: rotate(90deg); }

/* ─── FORM ─── */
.form-group { margin-bottom: 16px; }
.form-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 7px;
  opacity: 0.8;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s var(--transition-smooth);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:hover, .form-select:hover, .form-textarea:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.04);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.05);
}
.form-input[type="date"] {
  appearance: none; -webkit-appearance: none;
  color-scheme: dark;
  min-height: 48px;
}
.form-select option { background: var(--navy); color: #fff; }
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Country selector */
.country-selector { position: relative; }
.country-selected {
  width: 100%; padding: 13px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all 0.3s var(--transition-smooth);
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
}
.country-selected:hover { border-color: rgba(201,169,110,0.3); background: rgba(255,255,255,0.06); }
.country-selected i { margin-left: auto; color: rgba(255,255,255,0.3); font-size: 12px; }
.country-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #0D2B45;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-sm);
  margin-top: 0;
  z-index: 100;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  display: none; overflow: hidden;
}
.country-search-input {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; color: rgba(255,255,255,0.8);
  outline: none;
}
.country-search-input::placeholder { color: rgba(255,255,255,0.25); }
.country-list { max-height: 220px; overflow-y: auto; }
.country-list::-webkit-scrollbar { width: 4px; }
.country-list::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.3); border-radius: 4px; }
.country-item {
  padding: 10px 16px; display: flex; gap: 12px; align-items: center;
  cursor: pointer; font-size: 0.82rem; color: rgba(255,255,255,0.65);
  transition: all 0.2s var(--transition-smooth);
}
.country-item:hover { background: rgba(201,169,110,0.06); color: #fff; padding-left: 20px; }
.country-item-code { color: var(--gold); font-weight: 500; min-width: 44px; }

/* Price summary in popup */
.popup-price-summary {
  background: linear-gradient(135deg, rgba(201,169,110,0.06), rgba(201,169,110,0.02));
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.popup-price-label {
  font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.45);
}
.popup-price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: #fff;
  letter-spacing: -0.02em;
}
#popupPriceNote { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 3px; }
#popupWarning { color: #E07B4A; font-size: 0.75rem; margin-top: 6px; }

.submit-btn {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--gold), #B8955E);
  border: none; border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
  cursor: pointer; transition: all 0.3s var(--transition-smooth);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 24px rgba(201,169,110,0.2);
}
.submit-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,169,110,0.3);
}
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-loading {
  display: none; width: 20px; height: 20px;
  border: 2px solid rgba(13,43,69,0.2);
  border-top-color: var(--navy); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.submit-btn.loading .btn-text { display: none; }
.submit-btn.loading .btn-loading { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── INFO STRIP ─── */
.info-strip {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0; margin: 52px 0 0;
  border-radius: var(--radius-sm);
}
.info-strip-inner { display: flex; gap: 0; }
.info-cell {
  flex: 1; padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.info-cell:first-child { padding-left: 0; }
.info-cell:last-child { border-right: none; }
.info-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
  opacity: 0.7;
}
.info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400; color: rgba(255,255,255,0.85);
}
.info-value small {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
  font-weight: 300; display: block; margin-top: 2px;
}

/* ─── FOOTER ─── */
footer {
  background: #060F1A;
  border-top: 1px solid rgba(201,169,110,0.08);
  padding: 52px 6% 130px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 52px; margin-bottom: 44px;
}
.footer-col-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0.7;
}
.footer-col-label::after {
  content: ''; flex: 1; height: 2px;
  background: linear-gradient(90deg, rgba(201,169,110,0.15), transparent);
  border-radius: 2px;
}
.footer-text {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.8;
}
.footer-text a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}
.footer-text a:hover { color: var(--gold-light); }
.footer-text p { margin-bottom: 6px; }
.social-links { display: flex; gap: 16px; margin-top: 18px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3); font-size: 14px;
  text-decoration: none; transition: all 0.3s var(--transition-smooth);
  background: rgba(255,255,255,0.02);
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.1);
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.72rem; font-weight: 300;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.06em;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-policy-link {
  color: rgba(255,255,255,0.15); text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}
.footer-policy-link:hover { color: var(--gold); }

/* ─── FADE IN ─── */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .media-gallery { height: 460px; border-radius: var(--radius-sm); }
}

@media (max-width: 768px) {
  .site-logo { top: 16px; left: 16px; }
  .site-logo img { height: 36px; }
  .page-hero { padding: 0 5% 120px; }
  .main-section { padding: 0 5% 140px; }
  .section-label { padding: 40px 0 32px; }

  /* Hiển thị bottom-nav trên mobile */
  .bottom-nav {
    display: flex;
  }

  .info-strip-inner { flex-wrap: wrap; }
  .info-cell { flex: 0 0 50%; padding: 14px 18px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .info-cell:first-child { padding-left: 18px; }
  .footer-grid { gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .popup-box { padding: 28px 22px; border-radius: var(--radius-sm); }
  .form-row { grid-template-columns: 1fr; }
  .viewer-nav { display: none; }
  .gallery-btn { width: 40px; height: 40px; font-size: 16px; }
  .prev-btn { left: 12px; }
  .next-btn { right: 12px; }
}