/* ══════════════════════════════════════════════
   DANA BOOKING — gf-home.css
   Travel booking homepage — clean, warm, professional
   ══════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
:root {
  --brand: #1f7bb6;
  --brand-dark: #155d8a;
  --brand-light: #e7f2fb;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-warm: #fdfaf6;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font: 'Be Vietnam Pro', sans-serif;
}

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

.gf-home {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.gf-home img { display: block; max-width: 100%; height: auto; }
.gf-home a { text-decoration: none; color: inherit; }

.gf-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOPBAR ── */
.home-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  font-size: 2rem;
  color: var(--text);
  flex-shrink: 0;
  line-height: 1;
}

.topbar-brand img {
  display: none;
}

.topbar-brand small {
  font-weight: 600;
  opacity: .55;
  font-size: .7em;
}

@media (max-width: 768px){
  .topbar-brand{
    font-size: 1.75rem;
  }
}

@media (max-width: 480px){
  .topbar-brand{
    font-size: 1.5rem;
  }
}


/* LOGO COLOR */
.logo-text{
  display:flex;
  align-items:center;
  font-weight:900;
  letter-spacing: .3px;
}

.logo-dana{
  color:#1f7bb6; /* xanh Dana */
}

.logo-booking{
  color:#f97316; /* cam Booking */
}

.logo-vn{
  color:#1f7bb6;
  font-size:.7em;
  margin-left:2px;
}


.topbar-menu {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.topbar-menu a {
  padding: 6px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 24px;
  transition: all .2s;
}
.topbar-menu a:hover {
  color: var(--brand);
  background: var(--brand-light);
}

/* TOPBAR DROPDOWN */
.menu-dd{
  position: relative;
  padding-bottom: 8px;
}

.menu-dd-btn{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 6px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 24px;
  transition: all .2s;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu-dd:hover .menu-dd-btn,
.menu-dd-btn:hover{
  color: var(--brand);
  background: var(--brand-light);
}

.menu-caret{
  font-size: 11px;
  line-height: 1;
}

.menu-dd-list{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15,23,42,.12);
  padding: 8px;
  display: none;
  z-index: 120;
}

.menu-dd:hover .menu-dd-list{
  display: block;
}

.menu-dd-list a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: .86rem;
  font-weight: 600;
  white-space: nowrap;
}

.menu-dd-list a:hover{
  background: var(--brand-light);
  color: var(--brand);
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg,#f97316,#f59e0b); /* cam vàng */
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  border-radius: 999px;
  flex-shrink: 0;
  transition: all .25s ease;
  box-shadow: 0 6px 18px rgba(245,158,11,.35);
}

.topbar-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(245,158,11,.45);
}
.topbar-phone svg { flex-shrink: 0; }

/* MOBILE MENU */
.topbar-menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:14px;
  background:#fff7ed;
  box-shadow:0 4px 12px rgba(15,23,42,.08);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
  flex-shrink:0;
}

.topbar-menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#1e293b;
  border-radius:999px;
}

.mobile-menu-panel{
  display:none;
  position: fixed;
  inset: 74px 0 0;
  z-index: 130;
}

.mobile-menu-panel.open{
  display:block;
}

.mobile-menu-backdrop{
  position:absolute;
  inset:0;
  border:0;
  background:rgba(15,23,42,.28);
  padding:0;
  margin:0;
}

.mobile-menu-inner{
  max-width:1200px;
  margin:0 auto;
  padding:10px 20px 16px;
  position: relative;
  z-index: 131;
  background:#fff;
  border-bottom:1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.mobile-menu-group{
  position: relative;
  z-index: 132;
  border-bottom:1px solid #eef2f7;
}

.mobile-menu-group summary{
  list-style:none;
  cursor:pointer;
  padding:14px 0;
  font-weight:700;
  color:var(--text);
  position: relative;
  z-index: 133;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-group summary::-webkit-details-marker{
  display:none;
}

.mobile-menu-group summary::after{
  content:'▾';
  float:right;
  color:var(--text-muted);
  font-size:12px;
}

.mobile-menu-group[open] summary::after{
  transform:rotate(180deg);
}

.mobile-submenu{
  padding:0 0 12px;
  position: relative;
  z-index: 133;
}

.mobile-submenu a,
.mobile-menu-link{
  display:block;
  padding:10px 0;
  color:var(--text-muted);
  font-weight:600;
}

.mobile-submenu a:hover,
.mobile-menu-link:hover{
  color:var(--brand);
}


/* ── HERO ── */
.home-hero {
  position: relative;
  background: linear-gradient(135deg, #0f4c81 0%, #1f7bb6 50%, #48a6e0 100%);
  padding: 80px 0 90px;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-bg-image{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-bg-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.30) 45%, rgba(0,0,0,.15) 75%, rgba(0,0,0,.05) 100%);
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 24px;
  margin-bottom: 12px;

  letter-spacing: .02em;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-content h1,
.hero-content p,
.hero-badge {
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(245,158,11,.3);
}
.btn-primary:hover {
  background: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255,255,255,.95); /* nền trắng */
  color: #0f172a; /* chữ đậm */
  font-weight: 700;
  font-size: .95rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

/* ZALO BUTTON */
.btn-zalo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #0ea5e9; /* xanh Zalo */
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 6px 18px rgba(14,165,233,.35);
}

.btn-zalo:hover {
  background: #0284c7;
  transform: translateY(-1px);
}

.btn-outline:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ── QUICK ROUTES STRIP ── */
.home-routes {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 14px 0 18px;
  background: #fff;
}

.route-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 2px 6px;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.route-grid::-webkit-scrollbar { display: none; }

.route-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid #dbe3ea;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text);
  transition: all .2s ease;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(15,23,42,.06);
}


.route-chip:hover {
  background: #fff;
  border-color: #b9d6ec;
  color: var(--brand);
  transform: translateY(-1px);
}

.route-icon {
  font-size: 1rem;
  line-height: 1;
}

.route-label {
  line-height: 1.2;
}

/* ── BENEFITS ── */
.home-benefits {
  padding: 40px 0 56px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s;
}
.benefit-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.benefit-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.benefit-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── SECTIONS ── */
.home-section {
  padding: 64px 0;
}
.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head--light .section-tag { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.2); }
.section-head--light h2 { color: #fff !important; text-shadow: 0 2px 10px rgba(0,0,0,.18); }
.section-head--light p { color: rgba(248,250,252,.88); }

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-light);
  border: 1px solid rgba(31,123,182,.15);
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.section-head p {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── TOUR CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.card-grid-2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 992px){
  .card-grid-2{
    grid-template-columns: 1fr;
  }
}


.tour-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.tour-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tour-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.tour-card:hover .tour-thumb img {
  transform: scale(1.06);
}

.tour-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  background: #ef4444;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.tour-body {
  padding: 18px 20px 20px;
}
.tour-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.tour-stars {
  color: var(--accent);
  letter-spacing: 1px;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.tour-price {
  font-size: .9rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--brand);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  border-radius: 24px;
  transition: all .2s;
}
.tour-btn:hover {
  background: var(--brand-dark);
}

.tour-btn-call {
  background: #fff7e8;
  border: 2px solid var(--brand);
  color: var(--accent);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(31,123,182,.12);
}

.tour-btn-call:hover {
  background: var(--brand-light);
  color: #d97706;
}

.tour-btn-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  font-size: 12px;
  line-height: 1;
}

.gf-home-page .tour-footer{
  gap:12px;
}

.gf-home-page .tour-price,
.gf-home-page .tour-btn{
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:all .2s ease;
}

.gf-home-page .tour-price{
  background:var(--brand);
  border:2px solid var(--brand);
  color:#fff;
  font-weight:800;
  box-shadow:0 10px 22px rgba(31,123,182,.16);
}

.gf-home-page .tour-price:hover{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
  color:#fff;
  transform:translateY(-1px);
}

.gf-home-page .tour-btn{
  background:#ffb11a;
  border:2px solid #f59e0b;
  color:#7a3d00;
  font-weight:800;
  box-shadow:0 10px 22px rgba(245,158,11,.16);
}

.gf-home-page .tour-btn:hover{
  background:#f59e0b;
  border-color:#dd8a00;
  color:#6a3500;
  transform:translateY(-1px);
}

/* ── FAVORITE SECTION ── */
.favorite-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #0f4c81, #1f7bb6);
}

.favorite-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.fav-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.fav-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 50%);
  transition: opacity .3s;
}
.fav-item:hover::after { opacity: .6; }

.fav-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.fav-item:hover img { transform: scale(1.05); }

.fav-big {
  grid-column: span 3;
  aspect-ratio: 16/9;
}
.fav-small {
  grid-column: span 2;
  aspect-ratio: 4/3;
}

/* ── REVIEWS ── */
.review-section {
  padding: 64px 0;
  background: var(--bg-warm);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .3s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: .95rem;
}
.review-stars {
  color: var(--accent);
  font-size: .8rem;
  letter-spacing: 1px;
}

.review-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA ── */
.cta-section {
  padding: 64px 0;
}

.cta-box {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, #0f4c81, #1f7bb6 60%, #48a6e0);
  border-radius: var(--radius-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,158,11,.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}
.cta-box p {
  font-size: 1rem;
  opacity: .85;
  margin-bottom: 28px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
.home-footer {
  background: #0f172a;
  color: rgba(255,255,255,.7);
  padding-top: 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col p {
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  padding: 4px 0;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-hotline a {
  display: inline;
  color: var(--accent);
  font-weight: 600;
}

.footer-bottom {
  padding: 20px 0;
  font-size: .78rem;
  text-align: center;
  color: rgba(255,255,255,.35);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .topbar-menu { display: none; }
  .topbar-menu-toggle{ display:flex; }

  .topbar-inner { justify-content: space-between; }

  .home-hero { padding: 36px 0 44px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: .98rem; }


  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .benefit-card { padding: 22px 14px; }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .favorite-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fav-big { grid-column: span 2; }
  .fav-small { grid-column: span 1; }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .cta-box { padding: 40px 24px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-section,
  .favorite-section,
  .review-section,
  .cta-section { padding: 48px 0; }

  .gf-home-page .tour-footer{
    flex-direction:row;
    align-items:center;
  }

  .gf-home-page .tour-price,
  .gf-home-page .tour-btn{
    flex:1 1 0;
    width:auto;
    min-width:0;
    padding:0 14px;
  }
}

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

  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }

  .favorite-grid {
    grid-template-columns: 1fr;
  }
  .fav-big { grid-column: span 1; }
}

/* ── HOTEL CATEGORY SAMPLE ── */
.hotel-category-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.hotel-category-card{
  display:block;
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:all .28s ease;
}

.hotel-category-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}

.hotel-category-thumb{
  aspect-ratio: 16 / 9;
  overflow:hidden;
}

.hotel-category-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.hotel-category-card:hover .hotel-category-thumb img{
  transform:scale(1.05);
}

.hotel-category-body{
  padding:20px;
}

.hotel-category-tag{
  display:inline-flex;
  align-items:center;
  padding:5px 12px;
  border-radius:999px;
  background:var(--brand-light);
  color:var(--brand);
  font-size:.72rem;
  font-weight:700;
  margin-bottom:12px;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.hotel-category-body h3{
  font-size:1.2rem;
  line-height:1.35;
  font-weight:800;
  color:var(--text);
  margin-bottom:8px;
}

.hotel-category-body p{
  color:var(--text-muted);
  font-size:.92rem;
  line-height:1.65;
  margin-bottom:18px;
}

.hotel-category-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  background:var(--brand);
  border:2px solid var(--brand);
  color:#fff;
  font-size:.86rem;
  font-weight:800;
  box-shadow:0 10px 22px rgba(31,123,182,.16);
  transition:all .2s ease;
}

.hotel-category-btn:hover{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
  color:#fff;
  transform:translateY(-1px);
}

.gf-category-page .tour-footer{
  gap:12px;
}

.gf-category-page .tour-price,
.gf-category-page .tour-btn{
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:all .2s ease;
}

.gf-category-page .tour-price{
  background:var(--brand);
  border:2px solid var(--brand);
  color:#fff;
  font-weight:800;
  box-shadow:0 10px 22px rgba(31,123,182,.16);
}

.gf-category-page .tour-price:hover{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
  color:#fff;
  transform:translateY(-1px);
}

.gf-category-page .tour-btn{
  background:#ffb11a;
  border:2px solid #f59e0b;
  color:#7a3d00;
  font-weight:800;
  box-shadow:0 10px 22px rgba(245,158,11,.16);
}

.gf-category-page .tour-btn:hover{
  background:#f59e0b;
  border-color:#dd8a00;
  color:#6a3500;
  transform:translateY(-1px);
}

/* mobile */
@media (max-width: 768px){
  .hotel-category-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .hotel-category-card{
    border-radius:16px;
  }

  .hotel-category-body{
    padding:16px;
  }

  .hotel-category-body h3{
    font-size:1.05rem;
  }

  .hotel-category-body p{
    font-size:.88rem;
    margin-bottom:14px;
  }

  .hotel-category-btn{
    width:100%;
    padding:11px 16px;
  }

  .gf-category-page .tour-footer{
    flex-direction:row;
    align-items:center;
  }

  .gf-category-page .tour-price,
  .gf-category-page .tour-btn{
    flex:1 1 0;
    width:auto;
    min-width:0;
    padding:0 14px;
  }
}

/* BLOG GRID */
.fav-item{
  position:relative;
  border-radius:14px;
  overflow:hidden;
}

.fav-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.fav-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:14px;
  background:linear-gradient(to top, rgba(0,0,0,.7), transparent);
}

.fav-title{
  color:#fff;
  font-weight:700;
  font-size:14px;
  line-height:1.4;
}







@media (max-width: 768px){
  .home-hero{
    min-height: 520px;
    padding: 28px 0 72px;
  }

  .hero-content{
    padding-top: 110px;
  }

  .hero-badge{
    display: table;
    margin: 0 auto 16px;
  }

  .hero-content h1{
    margin-bottom: 20px;
  }

  .hero-content p{
    margin-bottom: 28px;
  }

  .hero-actions{
    margin-top: 18px;
  }

  .hero-bg-image img{
    object-position: center right;
  }

  .hero-bg-overlay{
    background:
      linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.30) 60%, rgba(0,0,0,.15) 100%);
  }
}



@media (max-width: 480px){
  .home-hero{
    min-height: 500px;
  }

  .home-routes{
    margin-top: 0;
    padding: 12px 0 14px;
    background: #fff;
  }

  .route-grid{
    gap: 10px;
    padding-left: 2px;
    padding-right: 2px;
  }

  .route-chip{
    min-height: 52px;
    padding: 0 15px;
    font-size: .88rem;
  }

   .hero-bg-image{
    background: url('/images/danabooking-mobile.JPG?v=1') center center / cover no-repeat;
  }

  .hero-bg-image img{
    opacity: 0;
    pointer-events: none;
  }

}

@media (max-width: 768px){
  .hero-content{
    max-width: 100%;
  }

  .hero-content h1{
    font-size: 2.2rem;
    line-height: 1.12;
  }

  .hero-content p{
    font-size: .98rem;
    line-height: 1.55;
    max-width: 92%;
  }

  .hero-actions{
    flex-direction: row;
    gap: 10px;
    margin-top: 148px; /* tăng số này để đẩy 2 nút xuống */
  }

  .hero-actions a{
    flex: 1 1 0;
    justify-content: center;
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* FAQ */
.faq-section{
  padding: 60px 0;
  background: #fff;
}

.faq-list{
  max-width: 720px;
  margin: 0 auto;
}

.faq-item{
  border-bottom: 1px solid #e2e8f0;
}

.faq-question{
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer{
  display: none;
  font-size: 14px;
  color: #64748b;
  padding-bottom: 12px;
  line-height: 1.6;
}

.faq-item.active .faq-answer{
  display: block;
}

.faq-item.active .faq-question span{
  transform: rotate(45deg);
}


@media (max-width: 768px){
  .topbar-inner{
    height:auto;
    min-height:74px;
    gap:12px;
  }

  .topbar-phone{
    padding:10px 14px;
    font-size:.9rem;
  }
}

@media (max-width: 480px){
  .topbar-brand{
    font-size:1.32rem;
  }

  .topbar-phone{
    padding:9px 12px;
    font-size:.82rem;
  }

  .topbar-menu-toggle{
    width:42px;
    height:42px;
  }
}

/* ===== BÀI VIẾT MỚI NHẤT SLIDER ===== */
.latest-posts-slider{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.latest-post-card{
  position:relative;
  display:block;
  border-radius:18px;
  overflow:hidden;
  min-height:280px;
  background:#0f172a;
  box-shadow:0 8px 24px rgba(15,23,42,.10);
}

.latest-post-thumb{
  width:100%;
  height:100%;
}

.latest-post-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.latest-post-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:16px;
  background:linear-gradient(to top, rgba(0,0,0,.72), transparent);
}

.latest-post-title{
  color:#fff;
  font-weight:800;
  font-size:16px;
  line-height:1.4;
}

.latest-post-more{
  text-align:center;
  margin-top:22px;
}

.latest-post-more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  background:#fff;
  color:#0f172a;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.latest-post-more-btn:hover{
  transform:translateY(-1px);
}

/* mobile: lướt ngang */
@media (max-width: 768px){
  .latest-posts-slider{
    display:flex;
    gap:14px;
    overflow-x:auto;
    padding-bottom:8px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .latest-posts-slider::-webkit-scrollbar{
    display:none;
  }

  .latest-post-card{
    min-width:82%;
    flex:0 0 82%;
    min-height:250px;
    scroll-snap-align:start;
  }

  .latest-post-title{
    font-size:15px;
    line-height:1.35;
  }
}
