/* ============================================================
   VIETNAMYATRA — MAIN STYLESHEET
   Luxury travel website for Indian Vietnam tours
   ============================================================ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --vn-gold:        #C9A84C;
  --vn-gold-light:  #E8C97A;
  --vn-gold-dark:   #9E7E30;
  --vn-teal:        #0A7E6B;
  --vn-teal-light:  #12A88F;
  --vn-teal-dark:   #065C4D;
  --vn-navy:        #0E2B45;
  --vn-cream:       #FBF7F0;
  --vn-red:         #D84040;
  --vn-whatsapp:    #25D366;
  --vn-whatsapp-dk: #1aab53;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 6px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 60px rgba(0,0,0,.18);
  --shadow-gold:0 4px 20px rgba(201,168,76,.35);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #2D2D2D;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: var(--vn-teal); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--vn-gold); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--vn-navy);
}

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--vn-navy);
  color: #fff;
  font-size: .82rem;
  padding: 7px 0;
}
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: var(--vn-gold); }
.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff !important;
  margin-left: 4px;
  transition: background .2s;
}
.topbar-social:hover { background: var(--vn-gold) !important; }
.topbar-badge {
  background: var(--vn-gold);
  color: var(--vn-navy);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .04em;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.main-navbar {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 12px 0;
  transition: all .3s var(--ease);
}
.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.13);
}

/* Logo */
.navbar-brand { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  font-size: 1.6rem;
  color: var(--vn-gold);
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vn-navy);
  letter-spacing: -.01em;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #2D2D2D !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: all .2s;
  font-size: .95rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--vn-teal) !important;
  background: rgba(10,126,107,.07);
}

/* Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  margin-top: 8px;
  animation: fadeDown .2s var(--ease);
}
.dropdown-item {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .9rem;
  color: #2D2D2D;
  transition: all .15s;
}
.dropdown-item:hover {
  background: var(--vn-cream);
  color: var(--vn-teal);
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Buttons in Navbar */
.btn-whatsapp {
  background: var(--vn-whatsapp);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background .2s;
}
.btn-whatsapp:hover { background: var(--vn-whatsapp-dk); color: #fff !important; }

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1573171219566-78e9bc6bc34a?w=1600&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,43,69,.75) 0%,
    rgba(14,43,69,.4) 50%,
    rgba(10,126,107,.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: var(--vn-gold);
  color: var(--vn-navy);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title span { color: var(--vn-gold-light); }
.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vn-gold-light);
  display: block;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero Scroll Down */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  text-align: center;
  cursor: pointer;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* ── SEARCH BAR ─────────────────────────────────────────────── */
.search-section {
  background: #fff;
  box-shadow: 0 -6px 40px rgba(0,0,0,.12);
  position: relative;
  z-index: 10;
  margin-top: -50px;
  border-radius: 16px 16px 0 0;
}
.search-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
}
.search-card .form-label { font-weight: 600; font-size: .85rem; color: #555; }
.search-card .form-select,
.search-card .form-control {
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  height: 50px;
  font-size: .95rem;
  transition: border-color .2s;
}
.search-card .form-select:focus,
.search-card .form-control:focus {
  border-color: var(--vn-teal);
  box-shadow: 0 0 0 3px rgba(10,126,107,.12);
}
.btn-search {
  background: var(--vn-gold);
  color: var(--vn-navy);
  border: none;
  border-radius: 10px;
  height: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  transition: all .2s;
}
.btn-search:hover {
  background: var(--vn-gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ── SECTION STYLES ─────────────────────────────────────────── */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vn-teal);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--vn-navy);
  margin-bottom: .75rem;
}
.section-title span { color: var(--vn-gold); }
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--vn-gold);
  border-radius: 3px;
  margin: 0 auto 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ── TOUR CARD ──────────────────────────────────────────────── */
.tour-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid rgba(0,0,0,.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.tour-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.tour-card:hover .tour-card-img { transform: scale(1.05); }

.tour-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--vn-gold);
  color: var(--vn-navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tour-badge.honeymoon { background: #E91E8C; color: #fff; }
.tour-badge.luxury    { background: var(--vn-navy); color: var(--vn-gold); }
.tour-badge.group     { background: var(--vn-teal); color: #fff; }
.tour-badge.budget    { background: #2E7D32; color: #fff; }

.tour-duration-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.tour-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--vn-navy);
  margin-bottom: 4px;
  font-weight: 700;
}
.tour-subtitle {
  font-size: .83rem;
  color: #888;
  margin-bottom: 12px;
}
.tour-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.tour-highlights li {
  font-size: .85rem;
  color: #555;
  padding: 2px 0;
  padding-left: 18px;
  position: relative;
}
.tour-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vn-teal);
  font-weight: 700;
}
.tour-card-footer {
  border-top: 1px solid #F0F0F0;
  padding-top: 14px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-price-label { font-size: .75rem; color: #888; }
.tour-price-was {
  font-size: .82rem;
  color: #aaa;
  text-decoration: line-through;
}
.tour-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--vn-teal);
  font-weight: 700;
  line-height: 1;
}
.tour-rating {
  font-size: .82rem;
  color: #888;
}
.tour-rating i { color: #F5A623; }
.btn-book {
  background: var(--vn-teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--vn-teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-section { background: var(--vn-cream); }
.why-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vn-teal), var(--vn-teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: #fff;
}
.why-title { font-size: 1.05rem; color: var(--vn-navy); margin-bottom: 8px; }
.why-desc  { font-size: .88rem; color: #666; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--vn-gold);
  opacity: .25;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars { color: #F5A623; margin-bottom: 12px; }
.testimonial-text { font-size: .92rem; color: #444; font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--vn-gold);
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--vn-navy); }
.testimonial-meta { font-size: .78rem; color: #888; }
.testimonial-verified {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--vn-navy) 0%, var(--vn-teal-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.cta-subtitle { color: rgba(255,255,255,.75); font-size: 1.05rem; }

/* ── DEPARTURES TABLE ───────────────────────────────────────── */
.departure-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.departure-table thead { background: var(--vn-navy); color: #fff; }
.departure-table tbody tr { transition: background .15s; }
.departure-table tbody tr:hover { background: var(--vn-cream); }
.status-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.status-available    { background: #E8F5E9; color: #2E7D32; }
.status-filling-fast { background: #FFF3E0; color: #E65100; }
.status-sold-out     { background: #FFEBEE; color: #C62828; }

/* ── COST CALCULATOR ────────────────────────────────────────── */
.calculator-section { background: var(--vn-cream); }
.calculator-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.calc-result {
  background: linear-gradient(135deg, var(--vn-teal), var(--vn-teal-dark));
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.calc-result-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vn-gold-light);
}
.calc-range { width: 100%; accent-color: var(--vn-teal); }

/* ── PACKAGE DETAIL PAGE ────────────────────────────────────── */
.pkg-hero {
  height: 55vh;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.pkg-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,43,69,.85) 0%, rgba(0,0,0,.2) 60%);
}
.pkg-hero-content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  color: #fff;
}

/* Sticky Sidebar */
.pkg-sidebar {
  position: sticky;
  top: 90px;
}
.pkg-price-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 28px;
  border-top: 4px solid var(--vn-gold);
}

/* Itinerary */
.itinerary-item { position: relative; padding-left: 28px; margin-bottom: 24px; }
.itinerary-item::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 24px;
  bottom: -24px;
  width: 2px;
  background: #E8E8E8;
}
.itinerary-item:last-child::before { display: none; }
.itinerary-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--vn-teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--vn-teal);
}
.itinerary-day { font-size: .75rem; font-weight: 700; color: var(--vn-gold); text-transform: uppercase; }
.itinerary-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--vn-navy); margin-bottom: 4px; }
.itinerary-desc { font-size: .88rem; color: #555; }

/* Gallery */
.pkg-gallery-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .3s;
}
.pkg-gallery-img:hover { transform: scale(1.02); }
.pkg-gallery-img img { width: 100%; height: 100%; object-fit: cover; }

/* Inclusion / Exclusion Lists */
.incl-list, .excl-list { list-style: none; padding: 0; }
.incl-list li, .excl-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: .9rem;
  border-bottom: 1px dashed #eee;
}
.incl-list li::before { content: '✓'; position: absolute; left: 0; color: #2E7D32; font-weight: 700; }
.excl-list li::before { content: '✗'; position: absolute; left: 0; color: var(--vn-red); font-weight: 700; }

/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--vn-navy);
  background: #fff;
  border-radius: 10px !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--vn-teal);
  background: rgba(10,126,107,.05);
  box-shadow: none;
}
.faq-accordion .accordion-item {
  border: 1px solid #E8E8E8;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-accordion .accordion-button::after {
  filter: hue-rotate(140deg);
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(90deg, var(--vn-navy) 0%, var(--vn-teal-dark) 100%);
  padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--vn-gold-light);
  display: block;
}
.stat-label { color: rgba(255,255,255,.7); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }

/* ── VISA PAGE ──────────────────────────────────────────────── */
.visa-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--vn-teal);
  position: relative;
}
.visa-step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--vn-gold);
  color: var(--vn-navy);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: var(--shadow-gold);
}
.doc-list { list-style: none; padding: 0; }
.doc-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px dashed #eee;
  font-size: .92rem;
}
.doc-list li::before {
  content: '📄';
  position: absolute;
  left: 0;
}

/* ── TRAVEL GUIDE ───────────────────────────────────────────── */
.guide-city-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.guide-city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.guide-city-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.guide-city-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.guide-city-card:hover .guide-city-img { transform: scale(1.06); }
.guide-city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.guide-city-name { color: #fff; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.guide-city-desc { font-size: .82rem; color: rgba(255,255,255,.8); }

/* ── BLOG CARD ──────────────────────────────────────────────── */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: .72rem; font-weight: 700; color: var(--vn-teal); text-transform: uppercase; letter-spacing: .08em; }
.blog-title { font-family: var(--font-display); font-size: 1.08rem; color: var(--vn-navy); margin: 8px 0; line-height: 1.35; }
.blog-excerpt { font-size: .86rem; color: #666; flex: 1; }
.blog-meta { font-size: .78rem; color: #999; margin-top: 12px; }
.blog-meta span { margin-right: 12px; }

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.team-card {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--vn-gold);
  margin: 0 auto 12px;
}
.team-name  { font-family: var(--font-display); font-size: 1.05rem; color: var(--vn-navy); }
.team-role  { font-size: .82rem; color: var(--vn-teal); font-weight: 600; }
.team-bio   { font-size: .83rem; color: #666; margin-top: 8px; }

/* ── FLIGHT DEALS ───────────────────────────────────────────── */
.flight-card {
  background: linear-gradient(135deg, #fff, var(--vn-cream));
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.flight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.flight-airline-logo { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; }
.flight-route { font-weight: 700; font-size: 1rem; color: var(--vn-navy); }
.flight-price-tag {
  margin-left: auto;
  background: var(--vn-gold);
  color: var(--vn-navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── INQUIRY FORM ───────────────────────────────────────────── */
.inquiry-section { background: var(--vn-cream); }
.inquiry-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-control, .form-select {
  border: 2px solid #E8E8E8;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .93rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--vn-teal);
  box-shadow: 0 0 0 3px rgba(10,126,107,.12);
}
.form-label { font-weight: 600; font-size: .85rem; color: #444; margin-bottom: 5px; }
.btn-primary {
  background: var(--vn-teal);
  border-color: var(--vn-teal);
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 24px;
  transition: all .2s;
}
.btn-primary:hover {
  background: var(--vn-teal-dark);
  border-color: var(--vn-teal-dark);
  transform: translateY(-1px);
}
.btn-outline-primary {
  border-color: var(--vn-teal);
  color: var(--vn-teal);
  border-radius: 8px;
  font-weight: 600;
  transition: all .2s;
}
.btn-outline-primary:hover {
  background: var(--vn-teal);
  border-color: var(--vn-teal);
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-info-card {
  background: linear-gradient(135deg, var(--vn-navy), var(--vn-teal-dark));
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  height: 100%;
}
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }
.contact-info-value { color: #fff; font-size: .95rem; }
.contact-info-value a { color: var(--vn-gold-light) !important; }

/* ── FLOATING BUTTONS ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--vn-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(37,211,102,.6); color: #fff; }

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--vn-navy);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--vn-navy);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.phone-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--vn-teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--vn-navy); }
.footer-main { padding: 64px 0 40px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  color: #fff;
}
.footer-brand .logo-icon { color: var(--vn-gold); animation: none; }
.footer-brand .logo-text { color: #fff; }
.footer-about { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.65; }

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  margin-right: 6px;
  transition: background .2s;
}
.footer-socials a:hover { background: var(--vn-gold); color: var(--vn-navy) !important; }

.footer-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-badge {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.footer-badge i { color: var(--vn-gold); margin-right: 4px; }

.footer-heading {
  color: var(--vn-gold);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--vn-gold); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  align-items: flex-start;
}
.footer-contact i { color: var(--vn-gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.8) !important; }
.footer-contact a:hover { color: var(--vn-gold) !important; }

.footer-newsletter .form-control {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter .form-control:focus { border-color: var(--vn-gold); box-shadow: none; }
.footer-newsletter-text { color: rgba(255,255,255,.6); font-size: .82rem; }
.footer-trust { color: rgba(255,255,255,.4); font-size: .75rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); margin: 0 2px; }
.footer-bottom a:hover { color: var(--vn-gold); }
.footer-bottom p { margin: 0; }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb-section {
  background: var(--vn-cream);
  padding: 14px 0;
  border-bottom: 1px solid #E8E8E8;
}
.breadcrumb { margin: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: #999; }
.breadcrumb-item a { color: var(--vn-teal); font-size: .85rem; }
.breadcrumb-item.active { color: #666; font-size: .85rem; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--vn-navy) 0%, var(--vn-teal-dark) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1573171219566-78e9bc6bc34a?w=1400&q=60') center/cover no-repeat;
  opacity: .15;
}
.page-hero-title { font-family: var(--font-display); color: #fff; font-size: clamp(2rem, 4vw, 3rem); position: relative; z-index:1; }
.page-hero-subtitle { color: rgba(255,255,255,.75); max-width: 600px; margin: 8px auto 0; position: relative; z-index:1; }

/* ── LAZY LOADING ───────────────────────────────────────────── */
img[loading="lazy"] { opacity: 0; transition: opacity .4s; }
img.loaded, img[loading="lazy"]:not([data-src]) { opacity: 1; }

/* ── UTILITY ────────────────────────────────────────────────── */
.text-gold  { color: var(--vn-gold) !important; }
.text-teal  { color: var(--vn-teal) !important; }
.text-navy  { color: var(--vn-navy) !important; }
.bg-cream   { background: var(--vn-cream) !important; }
.bg-navy    { background: var(--vn-navy) !important; }
.rounded-xl { border-radius: 16px !important; }
.shadow-gold{ box-shadow: var(--shadow-gold) !important; }

/* ── ANIMATIONS (on scroll) ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE TWEAKS ──────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-cta .btn:first-child { display: none; }
  .search-card { padding: 20px; }
  .calculator-card { padding: 24px; }
  .inquiry-card { padding: 24px; }
  .contact-info-card { padding: 24px; }
}
@media (max-width: 767px) {
  .hero-section { height: 80vh; }
  .hero-stats { gap: 1rem; }
  .section-pad { padding: 56px 0; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .phone-float { bottom: 82px; right: 20px; }
  .footer-main { padding: 48px 0 32px; }
  .tour-card-body { padding: 16px; }
  .pkg-price-card { padding: 20px; }
}
@media (max-width: 575px) {
  .hero-title { font-size: 1.9rem; }
  .hero-stat-number { font-size: 1.4rem; }
  .section-title { font-size: 1.5rem; }
}

/* Print */
@media print {
  .whatsapp-float, .phone-float, .main-navbar, .topbar, .site-footer { display: none !important; }
}

/* ============================================================
   MOBILE HERO COMPLETE FIX
   ============================================================ */

/* Mobile: fix hero layout completely */
@media (max-width: 991px) {

  /* Hero section auto height on mobile */
  #heroSection {
    height: auto !important;
    min-height: 100svh !important;
    padding-top: 20px !important;
    padding-bottom: 30px !important;
  }

  /* Show hero title and badge on mobile */
  .hero-title {
    font-size: 2.2rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero-badge {
    display: inline-block !important;
    visibility: visible !important;
    margin-bottom: 12px !important;
  }

  /* Hero content padding */
  .hero-content {
    padding-top: 0 !important;
    padding-bottom: 16px !important;
  }

  /* Stats row on mobile - 4 in a row */
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 4px !important;
    margin-top: 16px !important;
  }

  .hero-stat-number { font-size: 1.1rem !important; }
  .hero-stat-label  { font-size: 0.55rem !important; }

  /* Trust signals - wrap nicely */
  .hero-content .d-flex.flex-wrap.gap-3.mb-4 {
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  /* Buttons side by side */
  .hero-content .d-flex.flex-wrap {
    flex-wrap: nowrap !important;
  }
  .hero-content .btn-lg {
    flex: 1 !important;
    padding: 10px 8px !important;
    font-size: 0.82rem !important;
    justify-content: center !important;
  }

  /* Form card on mobile */
  .hero-form-card {
    margin-top: 20px !important;
    padding: 18px !important;
    border-radius: 14px !important;
  }

  /* Fix WhatsApp float not overlapping bottom bar */
  .whatsapp-float {
    bottom: 72px !important;
    right: 16px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 1.4rem !important;
  }

  /* Bottom CTA bar */
  .mobile-cta-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    height: 58px !important;
  }

  .mobile-cta-call,
  .mobile-cta-wa {
    font-size: 14px !important;
    gap: 6px !important;
  }
}

/* Small phones (iPhone SE etc) */
@media (max-width: 390px) {
  .hero-title { font-size: 1.9rem !important; }
  .hero-subtitle { font-size: 0.85rem !important; }
  .hero-badge { font-size: 0.65rem !important; padding: 4px 10px !important; }
  .hero-stat-number { font-size: 0.95rem !important; }
  .hero-stat-label  { font-size: 0.48rem !important; }
  .hf-input { font-size: 0.8rem !important; height: 38px !important; }
}

/* iPad */
@media (min-width: 768px) and (max-width: 991px) {
  #heroSection { padding-top: 40px !important; }
  .hero-title { font-size: 2.8rem !important; }
  .hero-form-card { margin-top: 30px !important; }
}

/* ============================================================
   SMALL PHONE FIX (360px Samsung Galaxy S4 etc)
   ============================================================ */
@media (max-width: 375px) {

  /* Make hero shorter so title is visible */
  #heroSection {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
  }

  /* Smaller badge */
  .hero-badge {
    font-size: 0.6rem !important;
    padding: 3px 10px !important;
    margin-bottom: 8px !important;
  }

  /* Smaller title */
  .hero-title {
    font-size: 1.7rem !important;
    margin-bottom: 8px !important;
    line-height: 1.15 !important;
  }

  /* Smaller subtitle */
  .hero-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 10px !important;
  }

  /* Trust signals - 2 per row */
  .hero-content .d-flex.flex-wrap.gap-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    margin-bottom: 10px !important;
  }

  /* Stats smaller */
  .hero-stats {
    margin-top: 10px !important;
    gap: 2px !important;
  }
  .hero-stat-number { font-size: 0.9rem !important; }
  .hero-stat-label  { font-size: 0.45rem !important; }

  /* Form card smaller */
  .hero-form-card {
    padding: 14px !important;
    margin-top: 14px !important;
  }
  .hero-form-header h3 { font-size: 1rem !important; }
  .hero-form-header p  { font-size: 0.72rem !important; }
  .hf-input { height: 36px !important; font-size: 0.78rem !important; padding: 6px 8px !important; }
  .hf-btn-submit { font-size: 0.85rem !important; padding: 10px !important; }
  .hf-btn-wa { font-size: 0.85rem !important; padding: 9px !important; }

  /* Bottom bar smaller text */
  .mobile-cta-call span,
  .mobile-cta-wa span { font-size: 13px !important; }
}


/* ============================================================
   FINAL MOBILE FIX - Android/Xiaomi/iPhone
   ============================================================ */

/* Bottom CTA bar - FORCE SHOW on all mobiles */
@media (max-width: 991px) {
  body { padding-bottom: 58px !important; }

  .mobile-cta-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    height: 58px !important;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.2) !important;
  }

  .mobile-cta-call {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: #0E2B45 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }

  .mobile-cta-wa {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: #25D366 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }

  .whatsapp-float { bottom: 68px !important; right: 16px !important; }
  .hero-form-card { margin-bottom: 10px !important; }
}

/* Trust signals 2x2 grid on small phones */
@media (max-width: 480px) {
  .hero-content .d-flex.flex-wrap.gap-3.mb-4 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }
  .hero-content .d-flex.flex-wrap.gap-3.mb-4 > div {
    font-size: 0.75rem !important;
  }
}

/* Badge always visible */
.hero-badge {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-bottom: 12px !important;
}

/* Fix phone icon direction */
/* PHONE ICON FIX */
/* LOGO VERTICAL CENTER FIX */
.navbar-brand {
  align-items: center !important;
  display: flex !important;
}
.navbar-brand img {
  display: block !important;
  margin-top: auto !important;
  margin-bottom: auto !important;
  vertical-align: middle !important;
  position: relative !important;
  top: 0 !important;
  transform: translateY(0) !important;
}
/* PHONE ICON ALIGN FIX */
.navbar-cta .btn i,
.navbar-cta .btn svg {
  vertical-align: middle !important;
  position: relative !important;
  top: 2px !important;
}
