/* =============================================
   Vietnam Travel — Brand Stylesheet
   Canvas v7 Override File
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Root Tokens ─────────────────────────────── */
:root {
  --cnvs-themecolor:     #c97b10;
  --cnvs-themecolor-rgb: 201, 123, 16;

  --vt-forest:      #0f1d15;
  --vt-forest-mid:  #1e3827;
  --vt-forest-lite: #2d5a3d;
  --vt-amber:       #c97b10;
  --vt-amber-dark:  #a56208;
  --vt-amber-pale:  #fdf3e3;
  --vt-ivory:       #f7f4ee;
  --vt-ivory-deep:  #ede8df;
  --vt-text:        #1a2e22;
  --vt-muted:       #5a7a65;
  --vt-border:      rgba(15,29,21,0.10);

  --cnvs-body-font:    'DM Sans', sans-serif;
  --cnvs-primary-font: 'DM Sans', sans-serif;
}

/* ── Base ────────────────────────────────────── */
body { font-family: 'DM Sans', sans-serif; color: var(--vt-text); background: #fff; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; text-wrap: balance; }
a { transition: color 0.25s ease; }
* { box-sizing: border-box; }

/* ── Top Utility Bar ─────────────────────────── */
.vt-topbar {
  background: var(--vt-forest);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 10;
}
.vt-topbar a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}
.vt-topbar a:hover { color: var(--vt-amber); }

.vt-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.vt-topbar-left,
.vt-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.vt-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.vt-topbar-item i { font-size: 0.85rem; color: var(--vt-amber); }

.vt-tp-divider {
  display: inline-block;
  width: 1px;
  height: 13px;
  background: rgba(255,255,255,0.2);
}

.vt-trust-stars { color: var(--vt-amber); font-size: 0.8rem; letter-spacing: 1px; }
.vt-trust-score { font-weight: 600; color: #fff; }

/* ── Header Main Nav ─────────────────────────── */
#header {
  --cnvs-header-bg:           #ffffff;
  --cnvs-header-sticky-bg:    #ffffff;
  --cnvs-primary-menu-font:   'DM Sans', sans-serif;
  --cnvs-primary-menu-color:  #1a2e22;
  --cnvs-primary-menu-hover-color: var(--vt-amber);
  --cnvs-primary-menu-active-color: var(--vt-amber);
  --cnvs-primary-menu-fs:     0.875rem;
  --cnvs-primary-menu-fw:     500;
  --cnvs-primary-menu-tt:     none;
  --cnvs-primary-menu-ls:     0.01em;
}

#header-wrap {
  box-shadow: 0 2px 20px rgba(15,29,21,0.08);
  border-bottom: 1px solid rgba(15,29,21,0.06);
}

/* ── Logo Typography ─────────────────────────── */
#logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.vt-logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--vt-forest);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.vt-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--vt-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 2px;
}
/* Hide default Canvas logo images, use text logo */
#logo .logo-default,
#logo .logo-dark { display: none !important; }

/* ── CTA Button (Amber Pill) ─────────────────── */
.btn-vt-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--vt-amber);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(201,123,16,0.30);
}
.btn-vt-cta:hover {
  background: var(--vt-amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,123,16,0.40);
  color: #fff !important;
}
.btn-vt-cta i { font-size: 0.9rem; }

/* ── Mega Menu ───────────────────────────────── */
.menu-item.mega-menu > .mega-menu-content {
  background: #fff;
  border-top: 3px solid var(--vt-amber);
  box-shadow: 0 20px 60px rgba(15,29,21,0.12);
  border-radius: 0 0 12px 12px;
  padding: 2rem 2.5rem 2rem;
  min-width: 820px;
}

.mega-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vt-muted);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--vt-border);
}

.mega-col-links { list-style: none; padding: 0; margin: 0; }
.mega-col-links li { margin-bottom: 2px; }
.mega-col-links a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--vt-text);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mega-col-links a:hover { color: var(--vt-amber); padding-left: 4px; }

.mega-badge {
  display: inline-block;
  background: var(--vt-forest);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 10px;
  line-height: 1.4;
}

.mega-link-bold a {
  font-weight: 600;
  color: var(--vt-forest) !important;
}
.mega-link-bold a:hover { color: var(--vt-amber) !important; }

/* ── Standard Dropdown ───────────────────────── */
.menu-item .sub-menu-container {
  border-top: 3px solid var(--vt-amber) !important;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 16px 48px rgba(15,29,21,0.10);
  min-width: 230px;
}
.sub-menu-container .menu-item > .menu-link { padding: 8px 20px; }
.sub-menu-container .menu-item > .menu-link > div { font-size: 0.875rem; color: var(--vt-text); }
.sub-menu-container .menu-item:hover > .menu-link > div { color: var(--vt-amber); }

/* Dropdown group headings */
.sub-group-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vt-muted);
  padding: 10px 20px 4px;
  cursor: default;
}
.sub-group-label:first-child { padding-top: 14px; }
.sub-divider { height: 1px; background: var(--vt-border); margin: 8px 20px; }

/* ── Mobile Drawer ───────────────────────────── */
.vt-mobile-ctas {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--vt-border);
  margin-top: 8px;
}

@media (max-width: 991px) {
  .vt-topbar-right .vt-trust-item { display: none; }
  .vt-mobile-ctas { display: flex; }
  .vt-topbar-inner { font-size: 0.72rem; }
  .vt-topbar-item span:not(.vt-topbar-item i) { display: none; }
  .vt-topbar-left { gap: 0.75rem; }
}

.btn-vt-mobile-amber {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--vt-amber);
  color: #fff;
  border-radius: 8px;
  padding: 13px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}
.btn-vt-mobile-amber:hover { background: var(--vt-amber-dark); color: #fff; }

.btn-vt-mobile-outline {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--vt-forest);
  border: 2px solid var(--vt-forest);
  border-radius: 8px;
  padding: 11px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn-vt-mobile-outline:hover { background: var(--vt-forest); color: #fff; }

/* ── Hero Section ────────────────────────────── */
#home.vt-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--vt-forest);
  overflow: hidden;
}
.vt-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.42;
}
.vt-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--vt-forest);
  opacity: 0.48;
}
.vt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 20px;
}
.vt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,123,16,0.18);
  border: 1px solid rgba(201,123,16,0.45);
  color: var(--vt-amber);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.vt-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.vt-hero h1 em {
  font-style: italic;
  color: var(--vt-amber);
}
.vt-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 2rem;
}
.vt-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-vt-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.btn-vt-hero-outline:hover { border-color: rgba(255,255,255,0.9); color: #fff; }

.vt-hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  flex-wrap: wrap;
}
.vt-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}
.vt-hero-trust-item i { color: var(--vt-amber); font-size: 1rem; }
.vt-hero-trust-item strong { color: #fff; }

/* ── Destinations Section ────────────────────── */
.vt-dest-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 30px rgba(15,29,21,0.10);
  aspect-ratio: 4/5;
  display: block;
  text-decoration: none;
}
.vt-dest-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(15,29,21,0.18); }

.vt-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vt-dest-card:hover img { transform: scale(1.06); }

.vt-dest-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10,22,14,0.92) 0%, transparent 100%);
}
.vt-dest-region {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vt-amber);
  margin-bottom: 6px;
}
.vt-dest-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
}
.vt-dest-card-body p { font-size: 0.78rem; color: rgba(255,255,255,0.72); margin: 0; }

/* ── Section Labels ──────────────────────────── */
.vt-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vt-amber);
  margin-bottom: 0.75rem;
}
.vt-section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--vt-amber);
}
.vt-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--vt-text);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.vt-section-sub {
  font-size: 1rem;
  color: var(--vt-muted);
  line-height: 1.65;
  max-width: 540px;
}

/* ── Why Us Pills ────────────────────────────── */
.vt-pillar {
  background: var(--vt-ivory);
  border: 1px solid var(--vt-ivory-deep, #ede8df);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.vt-pillar:hover { box-shadow: 0 10px 40px rgba(15,29,21,0.09); transform: translateY(-4px); }
.vt-pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,123,16,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.vt-pillar-icon i { font-size: 1.4rem; color: var(--vt-amber); }
.vt-pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vt-text);
  margin-bottom: 0.5rem;
}
.vt-pillar p { font-size: 0.875rem; color: var(--vt-muted); line-height: 1.7; margin: 0; }

/* ── Tour Package Cards ──────────────────────── */
.vt-tour-card {
  background: #fff;
  border: 1px solid var(--vt-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  cursor: pointer;
}
.vt-tour-card:hover { box-shadow: 0 12px 48px rgba(15,29,21,0.12); transform: translateY(-5px); }
.vt-tour-card-img { position: relative; overflow: hidden; }
.vt-tour-card-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform 0.45s ease; }
.vt-tour-card:hover .vt-tour-card-img img { transform: scale(1.05); }
.vt-tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--vt-amber);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}
.vt-tour-card-body { padding: 1.25rem 1.4rem 1.5rem; }
.vt-tour-card-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vt-text);
  margin-bottom: 6px;
}
.vt-tour-card-body p { font-size: 0.825rem; color: var(--vt-muted); margin-bottom: 14px; line-height: 1.6; }
.vt-tour-meta {
  display: flex;
  gap: 14px;
  font-size: 0.775rem;
  color: var(--vt-muted);
}
.vt-tour-meta span { display: flex; align-items: center; gap: 5px; }
.vt-tour-meta i { color: var(--vt-amber); font-size: 0.85rem; }

/* ── Testimonials ────────────────────────────── */
.vt-testimonials { background: var(--vt-forest); }
.vt-testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}
.vt-testi-stars { color: var(--vt-amber); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.vt-testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.vt-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vt-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201,123,16,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vt-amber);
  flex-shrink: 0;
}
.vt-testi-name { font-size: 0.875rem; font-weight: 600; color: #fff; }
.vt-testi-origin { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ── CTA Banner ──────────────────────────────── */
.vt-cta-banner { background: var(--vt-amber); }
.vt-cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.vt-cta-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 0; }
.btn-vt-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--vt-amber);
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-vt-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); color: var(--vt-amber-dark); }

/* ── Footer ──────────────────────────────────── */
#footer {
  --cnvs-footer-bg: #0a1510;
  --cnvs-footer-top-border: 1px solid rgba(255,255,255,0.07);
  --cnvs-copyrights-link-color: rgba(255,255,255,0.45);
}
.footer-brand-zone .footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0.75rem 0 1.25rem;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.footer-social-link:hover { background: var(--vt-amber); color: #fff; }

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--vt-amber); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--vt-amber); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item a:hover { color: var(--vt-amber); }

.footer-newsletter-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 9px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-input:focus { border-color: var(--vt-amber); }
.footer-newsletter-btn {
  background: var(--vt-amber);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.footer-newsletter-btn:hover { background: var(--vt-amber-dark); }

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}
.footer-trust-badge i { color: var(--vt-amber); }

#copyrights { background: rgba(0,0,0,0.25); }
#copyrights .container { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
#copyrights a { color: rgba(255,255,255,0.45); }
#copyrights a:hover { color: var(--vt-amber); }

/* ── Reduced Motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 767px) {
  .vt-topbar-right { display: none; }
  .vt-hero h1 { font-size: 2.4rem; }
  .vt-hero-trust { gap: 1rem; }
  .footer-newsletter-form { flex-direction: column; }
}
