/* =============================================
   TOP 10 QUY NHƠN – MAIN STYLESHEET
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: #1a1a2e;
  color: #ccc;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 2px solid #c0392b;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-socials { display: flex; align-items: center; gap: 10px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 4px;
  color: white;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s, transform 0.2s;
}
.social-icon:hover { background: #c0392b; transform: scale(1.1); }
.social-icon svg { width: 14px; height: 14px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; }
.logo-badge {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 60%, #ff6b35 100%);
  border-radius: 10px;
  padding: 6px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(192,57,43,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.logo-badge:hover { transform: scale(1.04); box-shadow: 0 6px 18px rgba(192,57,43,0.5); }
.logo-top {
  font-size: 28px;
  font-weight: 800;
  color: #FFD700;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}
.logo-bottom {
  font-size: 10px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.logo-dot { font-size: 9px; color: rgba(255,255,255,0.7); position: absolute; bottom: 4px; right: 6px; }

/* Search */
.header-search {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 25px;
  overflow: hidden;
  border: 1.5px solid #e0e0e0;
  transition: border-color 0.2s, box-shadow 0.2s;
  flex: 0 1 340px;
}
.header-search:focus-within { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.12); }
.header-search input {
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 14px;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  flex: 1;
}
.header-search input::placeholder { color: #aaa; }
#search-btn {
  background: #c0392b;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
#search-btn:hover { background: #a93226; }
#search-btn svg { width: 16px; height: 16px; color: white; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   NAVIGATION
   ============================================= */
.main-nav {
  background: #c0392b;
  position: sticky;
  top: 64px;
  z-index: 99;
  box-shadow: 0 3px 10px rgba(192,57,43,0.4);
}
.nav-inner { position: relative; }
.nav-menu {
  display: flex;
  align-items: stretch;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  position: relative;
}
.nav-item > a:hover,
.nav-item.active > a { background: rgba(0,0,0,0.2); }
.nav-item.active > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #FFD700;
}
.arrow { font-size: 10px; opacity: 0.7; }

/* Highlight item */
.nav-highlight > a {
  background: #2c3e50 !important;
  color: #FFD700 !important;
}
.nav-highlight > a:hover { background: #1a252f !important; }

/* Search icon item */
.nav-search-icon > a svg { width: 16px; height: 16px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 210px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  border-top: 3px solid #c0392b;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s, color 0.15s;
}
.dropdown li:last-child a { border-bottom: none; border-radius: 0 0 8px 8px; }
.dropdown li a:hover { background: #fef5f4; color: #c0392b; padding-left: 24px; }

/* =============================================
   MAIN CONTENT
   ============================================= */
.site-main { padding: 24px 0 40px; }

/* =============================================
   FEATURED GRID
   ============================================= */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px;
  margin-bottom: 32px;
  border-radius: 10px;
  overflow: hidden;
}

/* Card base */
.card { position: relative; border-radius: 0; overflow: hidden; }
.card-link { display: block; height: 100%; }
.card-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
.card:hover .card-img { transform: scale(1.08); }

/* Overlays */
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  z-index: 1;
}
.card-overlay-light {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  z-index: 1;
}

/* Badges */
.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  border-radius: 3px;
  z-index: 2;
  text-transform: uppercase;
}
.badge-khachsan { background: #e74c3c; color: white; }
.badge-congty { background: #3498db; color: white; }
.badge-amthuc { background: #e67e22; color: white; }
.badge-dulich { background: #27ae60; color: white; }

/* Content overlay */
.card-content-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
}
.card-content-bottom {
  bottom: 0;
}

/* Featured card */
.card-featured { grid-column: 1; grid-row: 1 / 3; }
.card-featured .card-image-wrap { height: 420px; }
.card-title-hero {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: white;
  line-height: 1.25;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.card-title-hero em { color: #FFD700; font-style: italic; }
.card-excerpt-hero {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.4);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 3px;
}

/* Right column */
.featured-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-medium { height: 207px; }
.card-medium .card-image-wrap { height: 100%; }

.card-label-top {
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  background: rgba(228, 168, 0, 0.85);
  padding: 4px 10px;
  border-radius: 3px;
}
.card-title-medium {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Bottom small cards */
.card-small {
  height: 160px;
  overflow: hidden;
}
.card-small .card-image-wrap { height: 100%; }
.card-title-small {
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Bottom row (2 small cards) span full grid */
.card-small:nth-child(4) { grid-column: 1; grid-row: 3; }
.card-small:nth-child(5) { grid-column: 2; grid-row: 3; }
.card-small:nth-child(6) { grid-column: 1; grid-row: 4; }
.card-small:nth-child(7) { grid-column: 2; grid-row: 4; }

/* =============================================
   TWO COLUMN LAYOUT
   ============================================= */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  margin-bottom: 40px;
  align-items: start;
}

/* Section header */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.section-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 5px 16px;
  color: white;
  border-radius: 2px;
  text-transform: uppercase;
}
.label-blue { background: #2980b9; }
.label-brown { background: #7d4e24; }
.section-view-all {
  font-size: 12px;
  color: #c0392b;
  font-weight: 600;
  transition: color 0.2s;
}
.section-view-all:hover { color: #a93226; text-decoration: underline; }

/* Article List */
.article-list { display: flex; flex-direction: column; gap: 14px; }
.article-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid #ebebeb;
}
.article-row:last-child { border-bottom: none; padding-bottom: 0; }
.article-thumb {
  flex: 0 0 110px;
  height: 78px;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.article-thumb img { transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; }
.article-thumb:hover img { transform: scale(1.08); }
.article-info { flex: 1; }
.article-cat {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 2px 7px;
  border-radius: 2px;
  color: white;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.cat-amthuc { background: #e67e22; }
.cat-dulich { background: #27ae60; }
.cat-congty { background: #3498db; }
.cat-khachsan { background: #e74c3c; }

.article-title { font-size: 13.5px; font-weight: 700; line-height: 1.45; margin-bottom: 4px; }
.article-title a { color: #1a1a1a; transition: color 0.2s; }
.article-title a:hover { color: #c0392b; }
.article-meta { font-size: 11px; color: #999; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar { position: sticky; top: 120px; }
.popular-list { display: flex; flex-direction: column; gap: 0; }
.popular-card {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #ebebeb;
}
.popular-card:last-child { border-bottom: none; }
.popular-thumb {
  flex: 0 0 90px;
  height: 66px;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  position: relative;
}
.popular-thumb img { height: 100%; object-fit: cover; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; }
.popular-thumb:hover img { transform: scale(1.08); }
.popular-cat {
  position: absolute;
  bottom: 4px; left: 4px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 2px 5px;
  border-radius: 2px;
  color: white;
  text-transform: uppercase;
}
.popular-info { flex: 1; }
.popular-info h4 { font-size: 12.5px; font-weight: 600; line-height: 1.4; }
.popular-info h4 a { color: #1a1a1a; transition: color 0.2s; }
.popular-info h4 a:hover { color: #c0392b; }

/* Sidebar Ad */
.sidebar-ad {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.ad-inner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ad-inner::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,215,0,0.08);
  border-radius: 50%;
}
.ad-inner::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 80px; height: 80px;
  background: rgba(192,57,43,0.2);
  border-radius: 50%;
}
.ad-title { font-size: 15px; font-weight: 800; color: #FFD700; margin-bottom: 6px; letter-spacing: 0.5px; }
.ad-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.ad-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 25px;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.ad-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(192,57,43,0.5); }

/* =============================================
   CATEGORY GRID SECTION
   ============================================= */
.category-grid-section { margin-bottom: 40px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.13); }
.cat-card-link { display: block; }
.cat-img-wrap { position: relative; height: 180px; overflow: hidden; }
.cat-img-wrap img { height: 100%; transition: transform 0.4s; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.05); }
.cat-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 9px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: 3px;
  color: white;
  text-transform: uppercase;
}
.cat-card-body { padding: 14px 16px 18px; }
.cat-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.45;
  margin-bottom: 8px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card:hover .cat-card-body h3 { color: #c0392b; }
.cat-card-body p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.cat-date { font-size: 11px; color: #bbb; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.75);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-badge-footer { margin-bottom: 14px; display: inline-flex; flex-direction: column; align-items: center; }
.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  transition: background 0.2s, transform 0.2s;
}
.footer-socials a:hover { background: #c0392b; transform: scale(1.1); }
.footer-heading { font-size: 14px; font-weight: 700; color: white; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #FFD700; }
.footer-contact li { font-size: 13px; margin-bottom: 10px; color: rgba(255,255,255,0.6); }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: #FFD700; }
.footer-bottom {
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   PHONE BUTTON
   ============================================= */
.phone-btn {
  position: fixed;
  bottom: 28px;
  left: 16px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
  padding: 10px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(192,57,43,0.5);
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: phone-pulse 2.5s ease-in-out infinite;
}
.phone-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(192,57,43,0.6);
  animation: none;
}
.phone-icon { display: flex; align-items: center; }
.phone-icon svg { width: 16px; height: 16px; animation: ring 1.5s ease-in-out infinite; }

@keyframes phone-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(192,57,43,0.5); }
  50% { box-shadow: 0 4px 28px rgba(192,57,43,0.8), 0 0 0 8px rgba(192,57,43,0.15); }
}
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 999;
  width: 42px;
  height: 42px;
  background: #c0392b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(192,57,43,0.4);
  transition: background 0.2s, transform 0.2s, opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: #a93226; transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .two-col-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Header */
  .header-search { flex: 0 1 220px; }
  .hamburger { display: flex; }

  /* Nav */
  .main-nav { position: static; }
  .nav-menu {
    flex-direction: column;
    display: none;
    background: #a93226;
  }
  .nav-menu.open { display: flex; }
  .nav-item > a { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-highlight > a { background: #2c3e50 !important; }
  .nav-search-icon { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 0; border-top: none; background: #922b21; }
  .dropdown li a { color: rgba(255,255,255,0.8); background: transparent; border-bottom: 1px solid rgba(255,255,255,0.08); padding-left: 30px; }
  .dropdown li a:hover { background: rgba(0,0,0,0.15); color: white; padding-left: 36px; }

  /* Featured grid */
  .featured-grid { grid-template-columns: 1fr; }
  .card-featured { grid-column: 1; grid-row: 1; }
  .card-featured .card-image-wrap { height: 280px; }
  .featured-right { display: grid; grid-template-columns: 1fr 1fr; }
  .card-medium { height: 160px; }
  .card-small:nth-child(4) { grid-column: 1; grid-row: auto; }
  .card-small:nth-child(5) { grid-column: 1; grid-row: auto; }

  /* Cat grid */
  .cat-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .topbar-text { display: none; }
  .header-search { flex: 0 1 160px; }
  .card-title-hero { font-size: 20px; }
  .featured-right { grid-template-columns: 1fr; }
  .phone-btn .phone-number { display: none; }
  .phone-btn { padding: 12px; border-radius: 50%; }
}

/* =============================================
   ZALO BUTTON
   ============================================= */
.zalo-btn {
  position: fixed;
  bottom: 28px;
  left: 178px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0068ff;
  color: white;
  padding: 10px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(0,104,255,0.4);
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: phone-pulse 2.5s ease-in-out infinite;
  text-decoration: none;
}
.zalo-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px rgba(0,104,255,0.6);
  color: white;
  animation: none;
}
.zalo-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  background: white;
  color: #0068ff;
  border-radius: 50%;
  animation: ring 1.5s ease-in-out infinite;
}
@media (max-width: 480px) {
  .zalo-btn .zalo-text { display: none; }
  .zalo-btn { padding: 12px; border-radius: 50%; bottom: 28px; left: 74px; }
}

/* =============================================
   CATEGORY FILTER TABS (index.html)
   ============================================= */
.filter-container {
  margin: 20px 0 28px;
  text-align: center;
}
.filter-title {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  background: #f8f9fa;
  padding: 6px;
  border-radius: 30px;
  border: 1px solid #eaeaea;
}
.tab-btn {
  border: none;
  background: transparent;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}
.tab-btn:hover {
  color: #c0392b;
  background: rgba(192,57,43,0.05);
}
.tab-btn.active {
  background: #c0392b;
  color: white;
  box-shadow: 0 4px 10px rgba(192,57,43,0.3);
}

/* =============================================
   COMMENTS & REVIEWS SECTION (Detail Pages)
   ============================================= */
.comments-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #eaeaea;
}
.comments-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comment-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #f0f0f0;
  transition: transform 0.2s;
}
.comment-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.comment-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c0392b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.comment-user-info h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: #333;
}
.comment-date {
  font-size: 11px;
  color: #999;
}
.comment-stars {
  color: #f1c40f;
  font-size: 12px;
  letter-spacing: 1px;
}
.comment-text {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  padding-left: 46px;
}
@media (max-width: 480px) {
  .comment-text { padding-left: 0; margin-top: 8px; }
}

/* =============================================
   MINIMALIST HOME LAYOUT (top10danang style)
   ============================================= */
.site-header-minimal {
  background: white;
  border-bottom: 1px solid #eef0f2;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.header-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.minimal-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.minimal-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #5b6a7a;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.minimal-nav-item:hover {
  color: #c0392b;
}
.minimal-nav-item svg {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
}
.logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.logo-center .logo-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: #e74c3c;
  font-weight: 700;
  margin-bottom: -2px;
}
.logo-center .logo-main {
  font-size: 24px;
  font-weight: 800;
  color: #2c3e50;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.logo-center .logo-main span {
  color: #0068ff;
  margin-left: 2px;
}

/* Category square grid */
.minimal-grid-section {
  padding: 30px 0;
}
.square-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.square-card {
  position: relative;
  aspect-ratio: 1.5 / 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.square-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.square-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.4s;
}
.square-card:hover .square-card-bg {
  transform: scale(1.05);
}
.square-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: white;
}
.overlay-blue { background: rgba(41, 128, 185, 0.9); }
.overlay-red { background: rgba(192, 57, 43, 0.9); }
.overlay-green { background: rgba(39, 174, 96, 0.9); }
.overlay-yellow { background: rgba(243, 156, 18, 0.9); }
.overlay-teal { background: rgba(52, 73, 94, 0.9); }
.overlay-purple { background: rgba(142, 68, 173, 0.9); }

.square-card-top span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.2);
  padding: 4px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.square-card-top h3 {
  font-size: 17px;
  font-weight: 800;
  margin-top: 14px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.square-card-desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.square-btn {
  align-self: flex-start;
  background: white;
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s, color 0.2s;
}
.square-card:hover .square-btn {
  background: #333;
  color: white;
}

/* Bottom content section */
.bottom-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.food-highlight {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 30px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}
.food-highlight-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #0f172a;
  padding-bottom: 14px;
  border-bottom: 2.5px solid #e74c3c;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.food-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.food-main-card {
  text-decoration: none;
  color: #1e293b;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.food-main-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}
.food-main-img {
  height: 190px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.food-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.food-main-card:hover .food-main-img img {
  transform: scale(1.04);
}
.food-main-card h4 {
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 8px;
  color: #0f172a;
}
.food-main-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}
.food-list-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.food-side-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #1e293b;
  background: #f8fafc;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}
.food-side-item:hover {
  background: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}
.food-side-thumb {
  width: 90px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.food-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.food-side-info h5 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
  color: #0f172a;
}
.food-side-info span {
  font-size: 11.5px;
  color: #94a3b8;
}

/* Utilities box */
.utility-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  height: fit-content;
}
.utility-title {
  font-size: 16.5px;
  font-weight: 800;
  color: #0f172a;
  padding-bottom: 14px;
  border-bottom: 2.5px solid #3498db;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.utility-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.utility-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  text-decoration: none;
  color: #334155;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.25s ease;
}
.utility-item:hover {
  background: #f8fafc;
  border-color: #3b82f6;
  color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
}
.utility-item:hover {
  background: #f1f5f9;
  color: #3498db;
}
.utility-item svg {
  width: 18px;
  height: 18px;
  color: #3498db;
}

/* Sticky orange ad banner footer */
.sticky-ad-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e67e22;
  color: white;
  z-index: 998;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.sticky-ad-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: white;
}
.sticky-ad-inner .zalo-badge-mini {
  background: #0068ff;
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .square-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .square-grid {
    grid-template-columns: 1fr;
  }
  .square-card {
    aspect-ratio: 1.8 / 1;
  }
  .food-main-row {
    grid-template-columns: 1fr;
  }
  .header-search {
    display: none !important;
  }
}

/* =============================================
   TRANSPORT SECTION (top10danang style)
   ============================================= */
.transport-section {
  padding: 30px 0;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 20px;
}
.transport-header {
  margin-bottom: 20px;
}
.transport-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: #2c3e50;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.transport-header p {
  font-size: 13px;
  color: #7f8c8d;
}
.transport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.transport-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #333;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.transport-img {
  height: 140px;
  overflow: hidden;
}
.transport-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.transport-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.transport-body h4 {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1a1a1a;
  transition: color 0.2s;
}
.transport-card:hover .transport-body h4 {
  color: #e67e22;
}
.transport-body p {
  font-size: 12px;
  color: #666;
  line-height: 1.45;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.transport-meta {
  margin-top: auto;
  font-size: 11px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 960px) {
  .transport-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .transport-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   EVENTS & FESTIVALS SECTION (top10danang style)
   ============================================= */
.event-box {
  background: white;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  height: fit-content;
}
.event-title {
  font-size: 16px;
  font-weight: 800;
  color: #2c3e50;
  padding-bottom: 12px;
  border-bottom: 2px solid #27ae60;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.event-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-item {
  display: flex;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #e2e8f0;
}
.event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.event-date-badge {
  flex-shrink: 0;
  width: 50px;
  height: 52px;
  background: #e74c3c;
  color: white;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
}
.event-date-day {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}
.event-date-month {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.9;
  text-transform: uppercase;
}
.event-info {
  flex: 1;
}
.event-info h5 {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.event-info p {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}

/* =============================================
   FILTER TABS & ARTICLES GRID
   ============================================= */
.filter-container {
  background: white;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 28px;
}
.filter-title {
  font-size: 15px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tab-btn {
  padding: 8px 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover {
  background: #cbd5e1;
}
.tab-btn.active {
  background: #e67e22;
  color: white;
}
.filter-articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.filter-card {
  background: #f8fafc;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #333;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.filter-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.filter-card-img {
  height: 110px;
  overflow: hidden;
}
.filter-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filter-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.filter-card-cat {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.filter-card-cat.cat-dulich { background: #e8faf0; color: #059669; border: 1px solid #a7f3d0; }
.filter-card-cat.cat-amthuc { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }
.filter-card-cat.cat-khachsan { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.filter-card-cat.cat-dichvu { background: #faf5ff; color: #9333ea; border: 1px solid #e9d5ff; }

.filter-card-body h4 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.filter-card-body span {
  font-size: 10px;
  color: #999;
  margin-top: auto;
}

@media (max-width: 960px) {
  .filter-articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .filter-articles-grid { grid-template-columns: 1fr; }
}

/* =============================================
   LOGIN MODAL & USER STATUS
   ============================================= */
.user-menu-container {
  position: relative;
  display: inline-block;
}
.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #334155;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.2s;
  text-transform: uppercase;
}
.user-profile-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #e67e22;
}
.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  min-width: 190px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  padding: 8px 0;
  margin-top: 8px;
  display: none;
  z-index: 99999;
}
.user-dropdown.active {
  display: block;
}
.user-dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 12.5px;
  color: #334155;
  text-decoration: none;
  transition: background 0.2s;
  text-align: left;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
}
.user-dropdown-item:hover {
  background: #f8fafc;
  color: #e67e22;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.login-modal {
  background: white;
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  padding: 28px;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
.modal-overlay.active .login-modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
}
.login-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.login-desc {
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* OAuth buttons */
.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1.5px solid #cbd5e1;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
  background: white;
  font-family: inherit;
}
.social-login-btn:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}
.social-login-btn.btn-google {
  color: #334155;
}
.social-login-btn.btn-facebook {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}
.social-login-btn.btn-facebook:hover {
  background: #166fe5;
}

/* Divider */
.login-divider {
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.login-divider::before, .login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.login-divider::before { margin-right: 12px; }
.login-divider::after { margin-left: 12px; }

/* =============================================
   OPTIMIZED CLEAN LAYOUT & SLEEK UI STYLES 
   ============================================= */

/* 1. Sleek Sticky Header */
.site-header-minimal {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* 2. Clean Spacing & Section Dividers */
section, .transport-section, .food-section, .utility-section, .cat-boxes-section {
  padding: 28px 0 !important;
  border-bottom: 1px solid #f1f5f9;
}

/* 3. Equal Height Cards & 2-Line Clamp Text */
.transport-card, .food-main-card, .food-side-item, .utility-item, .cat-box-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  background: #ffffff;
}

.transport-card:hover, .food-main-card:hover, .utility-item:hover, .cat-box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Line Clamp 2 lines for card description text */
.transport-body p, .food-main-info p, .utility-body p, .cat-box-card p, .card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  margin-top: 6px;
  font-size: 13px;
  color: #64748b;
}

/* 4. Filter Tabs Styling */
.filter-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 28px 0;
}

.tab-pill-btn {
  padding: 9px 20px;
  border-radius: 25px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.tab-pill-btn:hover {
  background: #f8fafc;
  color: #2563eb;
  border-color: #93c5fd;
}

.tab-pill-btn.active {
  background: #eef2ff !important;
  color: #2563eb !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.15) !important;
}

/* 5. Mini Floating Zalo & Call Buttons */
.phone-btn, .phone-btn-mini {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  z-index: 999;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #e74c3c !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.4) !important;
  padding: 0 !important;
}

.phone-btn .phone-number { display: none !important; }

.zalo-btn, .zalo-btn-mini {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 999;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: #0068ff !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(0, 104, 255, 0.4) !important;
  padding: 0 !important;
}

.zalo-btn .zalo-text { display: none !important; }
.zalo-btn .zalo-icon { font-size: 20px; font-weight: 800; }

/* 6. Balanced Symmetrical Grid Alignment For ALL Sections */
.transport-grid, .filter-articles-grid, .square-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

@media (max-width: 960px) {
  .transport-grid, .filter-articles-grid, .square-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 580px) {
  .transport-grid, .filter-articles-grid, .square-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* 7. Trip Cost Calculator Buttons */
.calc-btn {
  padding: 9px 10px;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  background: white;
  color: #334155;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-family: inherit;
}
.calc-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #f8fafc;
}
.calc-btn.active {
  background: #eff6ff !important;
  border-color: #2563eb !important;
  color: #2563eb !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15) !important;
}

/* 8. Fix Mobile Header Overlap Bug */
.site-header-minimal {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.header-minimal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  .site-header-minimal {
    height: 54px !important;
  }
  .header-minimal-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 10px !important;
    position: relative !important;
  }
  .logo-center {
    position: static !important;
    transform: none !important;
    align-items: flex-start !important;
    text-align: left !important;
    flex-shrink: 0 !important;
  }
  .logo-main {
    font-size: 16px !important;
    margin: 0 !important;
    line-height: 1.1 !important;
  }
  .logo-sub {
    font-size: 8.5px !important;
    margin: 0 !important;
  }
  .minimal-nav {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
  }
  .minimal-nav a.minimal-nav-item:not(.mobile-keep),
  .minimal-nav button.minimal-nav-item:not(.mobile-keep) {
    display: none !important;
  }
  .minimal-nav-item {
    padding: 4px 6px !important;
    font-size: 10px !important;
    flex-direction: column !important;
    gap: 2px !important;
  }
  .minimal-nav-item svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* 9. Unified Large Full-Width Images for Sub-Cards (Fix small image bug) */
.food-list-side {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  margin-top: 16px !important;
}

@media (max-width: 600px) {
  .food-list-side {
    grid-template-columns: 1fr !important;
  }
}

.food-side-item {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  padding: 0 !important;
}

.food-side-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.food-side-thumb {
  width: 100% !important;
  height: 180px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.food-side-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.food-side-item:hover .food-side-thumb img {
  transform: scale(1.05) !important;
}

.food-side-info {
  padding: 14px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex-grow: 1 !important;
}

.food-side-info h5 {
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  color: #0f172a !important;
  margin-bottom: 8px !important;
}

.food-side-info span {
  font-size: 11.5px !important;
  color: #64748b !important;
  font-weight: 600 !important;
}

/* 10. Calculator Mobile Grid Fix */
.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .calculator-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .calculator-section {
    padding: 20px 14px !important;
  }
}

/* 11. Curated Itinerary Planner Tab Buttons */
.itin-tab-btn {
  padding: 10px 18px;
  border-radius: 25px;
  border: 1.5px solid #cbd5e1;
  background: white;
  color: #334155;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.itin-tab-btn:hover {
  border-color: #d97706;
  color: #d97706;
  background: #fffbeb;
}
.itin-tab-btn.active {
  background: #fef3c7 !important;
  border-color: #d97706 !important;
  color: #b45309 !important;
  box-shadow: 0 3px 10px rgba(217, 119, 6, 0.2) !important;
}

