/* ============================================================
   PAGE HERO (used on inner pages: blog, about, contact, etc.)
   ============================================================ */
.page-hero { background: linear-gradient(135deg, #eef4fb 0%, #dbe8f7 100%); padding: 32px 0; }
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 32px; }
.page-hero-inner p , .page-hero-inner .breadcrumb{
  color:#1a1f71;
}
.page-hero-img { width: 320px; height: 180px; background: linear-gradient(135deg, #0ea5e9, #0369a1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-left: auto; position: relative; overflow: hidden; }
.page-hero-img::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(255,255,255,0.04) 20px,rgba(255,255,255,0.04) 40px); }
.page-hero-img-label { color: rgba(255,255,255,0.5); font-size: 11px; font-family: monospace; text-align: center; position: relative; z-index: 1; }
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.breadcrumb a { color: #1656a8; text-decoration: none; }

/* ============================================================
   NEWS / BLOG LIST
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.news-card { background: #fff; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; cursor: pointer; text-decoration: none; display: block; transition: transform 0.15s, box-shadow 0.15s; }
.news-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.news-thumb { position: relative; height: 160px; background: linear-gradient(135deg,#0ea5e9,#0369a1); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-cat { position: absolute; top: 10px; left: 10px; background: rgba(211, 47, 47, 0.9); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 99px; z-index: 1; }
.news-body { padding: 14px 16px; }
.news-title { font-size: 13.5px; font-weight: 700; color: #0c2c5c; line-height: 1.5; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-excerpt { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.page-btn { width: 36px; height: 36px; border: 1px solid var(--border); background: #fff; color: var(--text); border-radius: 8px; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.page-btn.active { background: #1656a8; border-color: #1656a8; color: #fff; font-weight: 700; }
.page-btn:hover:not(.active) { border-color: #1656a8; color: #1656a8; }

/* ============================================================
   ARTICLE / POST DETAIL
   ============================================================ */
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 32px; padding: 32px 0; }
.article-content { font-size: 15px; line-height: 1.8; color: var(--text); }
.article-content h2, .article-content h3 { margin: 24px 0 12px; }
.article-content p { color: var(--text); margin-bottom: 14px; }
.article-content img { border-radius: 10px; margin: 16px 0; }
.article-content ul, .article-content ol { margin: 14px 0 14px 24px; }
.article-content li { margin-bottom: 6px; }
.article-content blockquote {
  border-left: 4px solid #1656a8;
  background: #eef4fb;
  padding: 14px 18px; margin: 16px 0;
  border-radius: 0 10px 10px 0;
  color: #0c2c5c; font-style: italic;
}
.article-sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px; margin-bottom: 20px; }
.article-sidebar-card h4 { font-size: 14px; font-weight: 700; color: #0c2c5c; margin-bottom: 12px; }
.sidebar-cat-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; cursor: pointer; text-decoration: none; color: var(--text); }
.sidebar-cat-item:last-child { border-bottom: none; }
.sidebar-cat-item:hover { color: #1656a8; }
.sidebar-cat-count { background: var(--bg); padding: 1px 7px; border-radius: 99px; font-size: 12px; color: var(--muted); }
.sidebar-post { display: flex; gap: 10px; margin-bottom: 12px; cursor: pointer; text-decoration: none; color: inherit; }
.sidebar-post-thumb { width: 60px; height: 60px; border-radius: 6px; background: linear-gradient(135deg,#0ea5e9,#0369a1); flex-shrink: 0; overflow: hidden; }
.sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-post:hover .sidebar-post-title { color: #1656a8; }
.sidebar-post-meta { font-size: 11px; color: var(--muted); margin-top: 3px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.tag { background: #eef4fb; color: #1656a8; padding: 5px 12px; border-radius: 99px; font-size: 12px; cursor: pointer; text-decoration: none; }
.tag:hover { background: #eef4fb; }
.article-nav { display: flex; justify-content: space-between; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}
@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.stat-card { text-align: center; padding: 16px 8px; background: #eef4fb; border-radius: 10px; }
.stat-value { font-size: 22px; font-weight: 900; color: #1656a8; }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.mission-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.mission-icon { width: 44px; height: 44px; background: #eef4fb; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.mission-title { font-weight: 700; font-size: 15px; color: #0c2c5c; margin-bottom: 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; border-radius: 50%; background: #eef4fb; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #1656a8; }

/* Contact page main grid: info + form side-by-side on desktop, stack on mobile */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* About 2-column block (image + content) */
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .about-2col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.contact-label { font-weight: 600; font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.contact-value { font-size: 14px; font-weight: 600; color: var(--text); }
.contact-sub { font-size: 12px; color: var(--muted); }
.map-placeholder { background: linear-gradient(135deg,#eef4fb,#dbe8f7); height: 280px; border-radius: 12px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; margin-top: 32px; overflow: hidden; }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }
.map-card { position: absolute; top: 16px; left: 16px; background: #fff; border-radius: 10px; padding: 14px 16px; box-shadow: var(--shadow-lg); max-width: 280px; }
.map-card h4 { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.map-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.map-card a { color: #1656a8; font-size: 12px; font-weight: 500; text-decoration: none; display: block; margin-top: 8px; }

/* ════════ TIN TỨC (blog list) — navy redesign ════════ */
.news-page{ background:#fff; }
.news-page .news-page-wrap{ max-width:1200px; margin:0 auto; padding:28px 24px 56px; }
.news-page .breadcrumb{ font-size:13px; color:var(--hm-muted); margin-bottom:20px; }
.news-page .breadcrumb a{ color:var(--hm-muted); text-decoration:none; }
.news-page .breadcrumb a:hover{ color:var(--hm-blue); }
.news-page .news-page-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:24px; margin-bottom:26px; flex-wrap:wrap; }
.news-page .news-page-title{ font-size:34px; font-weight:800; color:var(--hm-navy); margin:0 0 12px; position:relative; padding-bottom:12px; }
.news-page .news-page-title::after{ content:""; position:absolute; left:0; bottom:0; width:54px; height:3px; background:var(--hm-red); border-radius:2px; }
.news-page .news-page-sub{ font-size:15px; color:var(--hm-muted); max-width:640px; margin:0; line-height:1.6; }
.news-page .news-search{ position:relative; flex:0 0 320px; max-width:100%; }
.news-page .news-search input{ width:100%; height:46px; border:1px solid var(--hm-border); border-radius:10px; padding:0 46px 0 16px; font-size:14px; color:var(--hm-text); background:#fff; }
.news-page .news-search input:focus{ outline:none; border-color:var(--hm-blue); box-shadow:0 0 0 3px rgba(22,86,168,.12); }
.news-page .news-search button{ position:absolute; right:6px; top:6px; width:34px; height:34px; border:0; border-radius:8px; background:transparent; color:var(--hm-muted); cursor:pointer; font-size:15px; }
.news-page .news-search button:hover{ color:var(--hm-blue); }
.news-page .news-cats{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:30px; }
.news-page .news-cat-pill{ display:inline-flex; align-items:center; height:40px; padding:0 18px; border-radius:9px; border:1px solid var(--hm-border); background:#fff; color:var(--hm-text); font-size:14px; font-weight:600; text-decoration:none; transition:.15s; }
.news-page .news-cat-pill:hover{ border-color:var(--hm-blue); color:var(--hm-blue); }
.news-page .news-cat-pill.active{ background:var(--hm-blue); border-color:var(--hm-blue); color:#fff; }
.news-page .news-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.news-page .news-card{ display:flex; flex-direction:column; background:#fff; border:1px solid var(--hm-border); border-radius:14px; overflow:hidden; text-decoration:none; transition:.18s; box-shadow:0 1px 3px rgba(12,44,92,.04); }
.news-page .news-card:hover{ transform:translateY(-4px); box-shadow:0 12px 28px rgba(12,44,92,.12); border-color:#cfe0f5; }
.news-page .news-thumb{ position:relative; aspect-ratio:16/10; background:var(--hm-blue-light); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.news-page .news-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.news-page .news-thumb .sea-ph-label{ color:var(--hm-muted); font-size:13px; }
.news-page .news-date-badge{ position:absolute; top:12px; left:12px; background:var(--hm-navy); color:#fff; font-size:12px; font-weight:600; padding:5px 10px; border-radius:7px; }
.news-page .news-body{ padding:18px; display:flex; flex-direction:column; flex:1; }
.news-page .news-cat-label{ font-size:11px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; color:var(--hm-blue); margin-bottom:8px; }
.news-page .news-title{ font-size:16px; font-weight:700; color:var(--hm-navy); line-height:1.4; margin-bottom:10px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.news-page .news-excerpt{ font-size:13.5px; color:var(--hm-muted); line-height:1.6; margin-bottom:16px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; flex:1; }
.news-page .news-readmore{ font-size:14px; font-weight:600; color:var(--hm-blue); margin-top:auto; display:inline-flex; align-items:center; gap:6px; }
.news-page .news-card:hover .news-readmore{ gap:9px; }
.news-page .news-empty{ text-align:center; padding:60px 24px; color:var(--hm-muted); border:1px solid var(--hm-border); border-radius:14px; }
.news-page .news-empty-ic{ font-size:44px; color:#cfe0f5; margin-bottom:12px; }
.news-page .pagination{ display:flex; justify-content:center; gap:8px; margin-top:40px; flex-wrap:wrap; }
.news-page .page-btn{ min-width:42px; height:42px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--hm-border); border-radius:9px; background:#fff; color:var(--hm-text); font-weight:600; font-size:14px; text-decoration:none; padding:0 12px; transition:.15s; }
.news-page .page-btn:hover{ border-color:var(--hm-blue); color:var(--hm-blue); }
.news-page .page-btn.active{ background:var(--hm-blue); border-color:var(--hm-blue); color:#fff; }
@media (max-width:1024px){ .news-page .news-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .news-page .news-grid{ grid-template-columns:1fr; } .news-page .news-search{ flex-basis:100%; } .news-page .news-page-title{ font-size:26px; } }

/* ════════ BLOG DETAIL (post_detail) — navy redesign ════════ */
.post-detail-page{ background:#fff; }
.post-detail-page .pd-wrap{ max-width:1200px; margin:0 auto; padding:24px 24px 56px; }
.post-detail-page .breadcrumb{ font-size:13px; color:var(--hm-muted); margin-bottom:22px; }
.post-detail-page .breadcrumb a{ color:var(--hm-muted); text-decoration:none; }
.post-detail-page .breadcrumb a:hover{ color:var(--hm-blue); }
.post-detail-page .pd-layout{ display:grid; grid-template-columns:1fr 360px; gap:36px; align-items:start; }
.post-detail-page .pd-main{ min-width:0; }
.pd-cat-label{ color:var(--hm-blue); font-size:12px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; margin-bottom:10px; }
.pd-title{ font-size:30px; font-weight:800; color:var(--hm-navy); line-height:1.3; margin:0 0 16px; }
.pd-meta{ display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; padding-bottom:18px; border-bottom:1px solid var(--hm-border); margin-bottom:22px; }
.pd-meta-l{ display:flex; gap:18px; font-size:13px; color:var(--hm-muted); align-items:center; }
.pd-meta-l i{ margin-right:5px; }
.pd-share{ display:flex; align-items:center; gap:8px; }
.pd-share>span{ font-size:13px; color:var(--hm-muted); }
.pd-sh{ width:34px; height:34px; border-radius:50%; border:0; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; color:#fff; font-size:14px; text-decoration:none; transition:.15s; }
.pd-sh:hover{ opacity:.88; }
.pd-sh-fb{ background:#1877f2; } .pd-sh-zalo{ background:#0068ff; } .pd-sh-mail{ background:#5b6b86; } .pd-sh-copy{ background:var(--hm-navy); }
.pd-sh-copy.copied{ background:#16a34a; }
.pd-feat{ width:100%; border-radius:14px; margin-bottom:22px; display:block; }
.pd-lead{ font-size:17px; font-weight:700; color:var(--hm-navy); line-height:1.6; margin:0 0 22px; }
.pd-content{ font-size:15.5px; line-height:1.85; color:var(--hm-text); }
.pd-content h2{ font-size:21px; } .pd-content h3{ font-size:18px; }
.pd-content h2,.pd-content h3,.pd-content h4{ color:var(--hm-navy); font-weight:800; margin:28px 0 12px; line-height:1.35; }
.pd-content p{ margin:0 0 16px; }
.pd-content img{ max-width:100%; height:auto; border-radius:12px; margin:12px 0; display:block; }
.pd-content a{ color:var(--hm-blue); text-decoration:underline; }
.pd-content ul,.pd-content ol{ margin:0 0 18px; padding-left:0; }
.pd-content ul{ list-style:none; }
.pd-content ul li{ position:relative; padding-left:30px; margin-bottom:11px; }
.pd-content ul li::before{ content:"\f058"; font-family:"Font Awesome 6 Free"; font-weight:900; color:#16a34a; position:absolute; left:0; top:2px; font-size:15px; }
.pd-content ol{ padding-left:22px; } .pd-content ol li{ margin-bottom:10px; }
.pd-content blockquote{ border-left:4px solid var(--hm-blue); background:var(--hm-blue-light); padding:16px 20px; border-radius:0 10px 10px 0; margin:22px 0; color:var(--hm-navy); font-style:italic; }
.pd-content table{ width:100%; border-collapse:collapse; margin:18px 0; font-size:14.5px; }
.pd-content table th,.pd-content table td{ border:1px solid var(--hm-border); padding:10px 12px; text-align:left; }
.pd-content table th{ background:var(--hm-blue-light); color:var(--hm-navy); font-weight:700; }
.pd-route-cta{ margin-top:28px; padding:18px 22px; background:var(--hm-blue-light); border:1px solid #cfe0f5; border-radius:14px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.pd-route-cta-lbl{ font-size:13px; color:var(--hm-muted); margin-bottom:4px; }
.pd-route-cta-route{ font-size:17px; font-weight:800; color:var(--hm-navy); }
.pd-route-cta-btn{ display:inline-flex; align-items:center; gap:8px; padding:12px 22px; background:var(--hm-blue); color:#fff; border-radius:10px; text-decoration:none; font-weight:700; font-size:14px; white-space:nowrap; }
.pd-route-cta-btn:hover{ background:var(--hm-blue-d); }
.pd-tags{ display:flex; flex-wrap:wrap; gap:8px; margin:26px 0 0; padding-top:22px; border-top:1px solid var(--hm-border); }
.pd-tags a{ font-size:13px; color:var(--hm-blue); background:var(--hm-blue-light); padding:6px 14px; border-radius:20px; text-decoration:none; }
.pd-tags a:hover{ background:#dbe9fb; }
.pd-bottom-nav{ margin-top:24px; }
.pd-bottom-nav a{ display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600; color:var(--hm-blue); text-decoration:none; }
/* sidebar */
.pd-sidebar{ display:flex; flex-direction:column; gap:20px; position:sticky; top:90px; }
.pd-side-card{ background:#fff; border:1px solid var(--hm-border); border-radius:14px; padding:20px; box-shadow:0 1px 3px rgba(12,44,92,.04); }
.pd-side-title{ font-size:16px; font-weight:800; color:var(--hm-navy); margin:0 0 16px; }
.pd-book-tabs{ display:flex; gap:6px; background:var(--hm-blue-light); padding:5px; border-radius:10px; margin-bottom:16px; }
.pd-tab{ flex:1; border:0; background:transparent; padding:9px 0; border-radius:7px; font-weight:600; font-size:14px; color:var(--hm-muted); cursor:pointer; }
.pd-tab.active{ background:var(--hm-blue); color:#fff; }
.pd-field{ display:block; margin-bottom:14px; }
.pd-field>span{ display:block; font-size:12px; color:var(--hm-muted); margin-bottom:5px; }
.pd-field select,.pd-field input{ width:100%; height:46px; border:1px solid var(--hm-border); border-radius:10px; padding:0 12px; font-size:14px; color:var(--hm-text); background:#fff; }
.pd-field select:focus,.pd-field input:focus{ outline:none; border-color:var(--hm-blue); }
.pd-book-btn{ width:100%; height:50px; background:var(--hm-blue); color:#fff; border:0; border-radius:10px; font-weight:700; font-size:15px; cursor:pointer; margin-top:4px; display:inline-flex; align-items:center; justify-content:center; gap:8px; }
.pd-book-btn:hover{ background:var(--hm-blue-d); }
.pd-why{ display:flex; flex-direction:column; gap:16px; }
.pd-why-item{ display:flex; gap:12px; align-items:flex-start; }
.pd-why-ic{ width:40px; height:40px; border-radius:10px; background:var(--hm-blue-light); color:var(--hm-blue); display:flex; align-items:center; justify-content:center; font-size:16px; flex:0 0 auto; }
.pd-why-item strong{ display:block; font-size:14px; color:var(--hm-navy); margin-bottom:2px; }
.pd-why-item small{ font-size:12.5px; color:var(--hm-muted); line-height:1.5; }
.pd-rel{ display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--hm-border); text-decoration:none; }
.pd-rel:first-child{ padding-top:0; } .pd-rel:last-child{ border-bottom:0; padding-bottom:0; }
.pd-rel-thumb{ width:74px; height:58px; border-radius:8px; overflow:hidden; flex:0 0 auto; background:var(--hm-blue-light); }
.pd-rel-thumb img{ width:100%; height:100%; object-fit:cover; }
.pd-rel-title{ font-size:13.5px; font-weight:600; color:var(--hm-navy); line-height:1.4; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.pd-rel-date{ font-size:12px; color:var(--hm-muted); margin-top:5px; }
@media (max-width:960px){ .post-detail-page .pd-layout{ grid-template-columns:1fr; } .pd-sidebar{ position:static; } }
@media (max-width:600px){ .pd-title{ font-size:24px; } .pd-meta{ flex-direction:column; align-items:flex-start; } }
.pd-date-input{ cursor:pointer; background:#fff !important; }
.post-detail-page .flatpickr-calendar{ font-size:14px; }

/* ── Sidebar search (copy form home, bố cục dọc) ── */
.pd-side-search .hero-search-card{ display:flex; flex-direction:column; gap:14px; }
.pd-side-search .home-trip-tabs{ display:flex; gap:6px; background:var(--hm-blue-light); padding:5px; border-radius:10px; }
.pd-side-search .home-trip-tab{ flex:1; display:inline-flex; align-items:center; justify-content:center; gap:6px; border:0; background:transparent; padding:9px 0; border-radius:7px; font-weight:600; font-size:13.5px; color:var(--hm-muted); cursor:pointer; }
.pd-side-search .home-trip-tab.active{ background:var(--hm-blue); color:#fff; }
.pd-side-search .trip-tab-radio{ width:9px; height:9px; border-radius:50%; border:2px solid currentColor; }
.pd-side-search .home-trip-tab.active .trip-tab-radio{ background:#fff; border-color:#fff; }
.pd-side-search .hero-search-row{ display:flex; flex-direction:column; gap:14px; }
.pd-side-search .hsr-field{ display:block; }
.pd-side-search .hsr-label{ display:block; font-size:12px; color:var(--hm-muted); margin-bottom:5px; }
.pd-side-search .hsr-control{ position:relative; display:flex; align-items:center; gap:8px; border:1px solid var(--hm-border); border-radius:10px; padding:0 12px; height:46px; background:#fff; }
.pd-side-search .hsr-icon{ flex:0 0 auto; }
.pd-side-search .hsr-control select,.pd-side-search .hsr-control input{ flex:1; width:100%; border:0; outline:none; background:transparent; font-size:14px; color:var(--hm-text); height:44px; cursor:pointer; }
.pd-side-search .hsr-ports{ position:relative; display:flex; flex-direction:column; gap:18px; }
.pd-side-search .hsr-swap{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:3; margin:0; width:36px; height:36px; border-radius:50%; border:1px solid var(--hm-border); background:#fff; color:var(--hm-blue); cursor:pointer; display:inline-flex; align-items:center; justify-content:center; box-shadow:0 2px 6px rgba(12,44,92,.15); }
.pd-side-search .hsr-swap:hover{ background:var(--hm-blue-light); }
.pd-side-search .hsr-field-ret.disabled{ opacity:.55; }
.pd-side-search .hero-search-cta-row{ margin-top:2px; }
.pd-side-search .hero-search-btn{ width:100%; height:50px; background:var(--hm-blue); color:#fff; border:0; border-radius:10px; font-weight:700; font-size:15px; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; gap:8px; }
.pd-side-search .hero-search-btn:hover{ background:var(--hm-blue-d); }

/* ════════ LIÊN HỆ (contact) — navy redesign ════════ */
.contact-page{ background:#fff; }
.contact-page .ct-wrap{ max-width:1200px; margin:0 auto; padding:28px 24px 56px; }
.contact-page .breadcrumb{ font-size:13px; color:var(--hm-muted); margin-bottom:20px; }
.contact-page .breadcrumb a{ color:var(--hm-muted); text-decoration:none; }
.contact-page .breadcrumb a:hover{ color:var(--hm-blue); }
.ct-head{ margin-bottom:30px; }
.ct-title{ font-size:32px; font-weight:800; color:var(--hm-navy); margin:0 0 12px; position:relative; padding-bottom:12px; }
.ct-title::after{ content:""; position:absolute; left:0; bottom:0; width:54px; height:3px; background:var(--hm-red); border-radius:2px; }
.ct-sub{ font-size:15px; color:var(--hm-muted); max-width:680px; margin:0; line-height:1.6; }
.contact-page .ct-top{ display:grid; grid-template-columns:1fr 1.35fr; gap:32px; align-items:start; }
/* info cards */
.ct-info-col{ display:flex; flex-direction:column; gap:16px; }
.ct-info{ display:flex; gap:14px; align-items:flex-start; background:#fff; border:1px solid var(--hm-border); border-radius:14px; padding:18px; box-shadow:0 1px 3px rgba(12,44,92,.04); }
.ct-info-ic{ width:48px; height:48px; border-radius:50%; background:var(--hm-blue); color:#fff; display:flex; align-items:center; justify-content:center; font-size:18px; flex:0 0 auto; }
.ct-info-label{ font-size:12px; font-weight:700; letter-spacing:.4px; color:var(--hm-navy); margin-bottom:4px; }
.ct-info-value{ font-size:16px; font-weight:700; color:var(--hm-navy); text-decoration:none; display:block; word-break:break-word; }
.ct-info-red{ color:var(--hm-red); }
.ct-info-sub{ font-size:13px; color:var(--hm-muted); margin-top:3px; }
/* form */
.ct-form-card{ background:#fff; border:1px solid var(--hm-border); border-radius:16px; padding:28px; box-shadow:0 4px 16px rgba(12,44,92,.06); }
.ct-form-title{ font-size:20px; font-weight:800; color:var(--hm-navy); margin:0 0 4px; }
.ct-form-sub{ font-size:14px; color:var(--hm-muted); margin:0 0 22px; }
.ct-fg{ margin-bottom:16px; }
.ct-label{ display:block; font-size:13.5px; font-weight:600; color:var(--hm-text); margin-bottom:6px; }
.ct-label .req{ color:var(--hm-red); }
.ct-input{ width:100%; border:1px solid var(--hm-border); border-radius:10px; padding:12px 14px; font-size:14px; color:var(--hm-text); background:#fff; font-family:inherit; }
.ct-input:focus{ outline:none; border-color:var(--hm-blue); box-shadow:0 0 0 3px rgba(22,86,168,.12); }
textarea.ct-input{ resize:vertical; min-height:110px; }
.ct-submit{ width:100%; height:50px; background:var(--hm-blue); color:#fff; border:0; border-radius:10px; font-weight:700; font-size:15px; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; gap:8px; margin-top:4px; }
.ct-submit:hover{ background:var(--hm-blue-d); }
.ct-submit:disabled{ opacity:.7; cursor:default; }
.ct-secure{ text-align:center; font-size:13px; color:var(--hm-muted); margin:14px 0 0; }
.ct-banner-ok{ background:#dcfce7; border:1px solid #86efac; color:#166534; padding:12px 16px; border-radius:10px; font-size:14px; margin-bottom:16px; }
/* mid: offices + faq */
.contact-page .ct-mid{ display:grid; grid-template-columns:1.05fr 1fr; gap:32px; margin-top:48px; align-items:start; }
.ct-sec-title{ font-size:20px; font-weight:800; color:var(--hm-navy); margin:0 0 18px; }
.ct-map{ height:300px; border-radius:14px; overflow:hidden; border:1px solid var(--hm-border); margin-bottom:20px; }
.ct-map iframe{ width:100%; height:100%; display:block; border:0; }
.ct-offices{ display:flex; flex-direction:column; gap:14px; }
.ct-office{ display:flex; gap:14px; background:#fff; border:1px solid var(--hm-border); border-radius:12px; padding:14px; }
.ct-office-thumb{ width:64px; height:64px; border-radius:10px; background:var(--hm-blue-light); color:var(--hm-blue); display:flex; align-items:center; justify-content:center; font-size:22px; flex:0 0 auto; }
.ct-office-name{ font-size:13px; font-weight:700; color:var(--hm-blue); margin-bottom:5px; }
.ct-office-addr{ font-size:13px; color:var(--hm-text); line-height:1.5; margin-bottom:6px; }
.ct-office-meta{ font-size:12.5px; color:var(--hm-muted); display:flex; align-items:center; gap:6px; }
.ct-office-meta i{ width:14px; color:var(--hm-blue); }
.ct-offices-col .ct-more,.ct-faq-col .ct-more{ display:inline-flex; align-items:center; gap:8px; margin-top:16px; font-weight:600; color:var(--hm-blue); text-decoration:none; }
/* faq accordion */
.ct-faq{ display:flex; flex-direction:column; gap:12px; }
.ct-faq-item{ border:1px solid var(--hm-border); border-radius:12px; background:#fff; overflow:hidden; }
.ct-faq-item summary{ list-style:none; cursor:pointer; padding:16px 18px; font-size:14.5px; font-weight:600; color:var(--hm-navy); display:flex; align-items:center; justify-content:space-between; gap:12px; }
.ct-faq-item summary::-webkit-details-marker{ display:none; }
.ct-faq-chev{ color:var(--hm-muted); font-size:13px; transition:transform .2s; flex:0 0 auto; }
.ct-faq-item[open] summary{ color:var(--hm-blue); }
.ct-faq-item[open] .ct-faq-chev{ transform:rotate(180deg); }
.ct-faq-a{ padding:0 18px 16px; font-size:13.5px; color:var(--hm-muted); line-height:1.65; }
/* cta */
.ct-cta{ margin-top:48px; background:linear-gradient(120deg,var(--hm-navy),var(--hm-blue)); border-radius:18px; padding:36px 40px; display:flex; align-items:center; justify-content:space-between; gap:24px; color:#fff; overflow:hidden; }
.ct-cta-text h2{ font-size:24px; font-weight:800; margin:0 0 8px; color:#fff; }
.ct-cta-text p{ font-size:15px; margin:0 0 18px; color:rgba(255,255,255,.9); max-width:560px; line-height:1.6; }
.ct-cta-btn{ display:inline-flex; align-items:center; gap:8px; background:#fff; color:var(--hm-navy); padding:13px 26px; border-radius:10px; font-weight:700; font-size:15px; text-decoration:none; }
.ct-cta-btn:hover{ background:var(--hm-blue-light); }
.ct-cta-ic{ font-size:90px; color:rgba(255,255,255,.18); flex:0 0 auto; }
@media (max-width:900px){ .contact-page .ct-top,.contact-page .ct-mid{ grid-template-columns:1fr; } .ct-cta{ flex-direction:column; align-items:flex-start; } .ct-cta-ic{ display:none; } }
@media (max-width:600px){ .ct-title{ font-size:26px; } .ct-form-card{ padding:20px; } }
.ct-map-col .ct-map{ height:380px; margin-bottom:0; }
.ct-map-addr{ display:flex; gap:8px; align-items:flex-start; font-size:14px; color:var(--hm-text); margin-top:14px; line-height:1.5; }
.ct-map-addr i{ color:var(--hm-blue); margin-top:3px; flex:0 0 auto; }

/* ════════ TRANG TĨNH (page.php) — navy redesign ════════ */
.static-page{ background:#f4f8fd; }
.static-page .sp-wrap{ max-width:920px; margin:0 auto; padding:28px 24px 56px; }
.static-page .breadcrumb{ font-size:13px; color:var(--hm-muted); margin-bottom:20px; }
.static-page .breadcrumb a{ color:var(--hm-muted); text-decoration:none; }
.static-page .breadcrumb a:hover{ color:var(--hm-blue); }
.sp-card{ background:#fff; border:1px solid var(--hm-border); border-radius:16px; padding:48px 56px; box-shadow:0 4px 20px rgba(12,44,92,.06); }
.sp-title{ text-align:center; font-size:30px; font-weight:800; color:var(--hm-navy); margin:0 auto 16px; text-transform:uppercase; position:relative; padding-bottom:16px; }
.sp-title::after{ content:""; position:absolute; left:50%; transform:translateX(-50%); bottom:0; width:60px; height:3px; background:var(--hm-red); border-radius:2px; }
.sp-updated{ text-align:center; font-size:13.5px; color:var(--hm-muted); margin-bottom:22px; }
.sp-divider{ height:1px; background:var(--hm-border); margin:0 0 28px; }
.sp-content{ font-size:15.5px; line-height:1.85; color:var(--hm-text); }
.sp-content h2{ font-size:20px; } .sp-content h3{ font-size:17px; }
.sp-content h2,.sp-content h3,.sp-content h4{ color:var(--hm-navy); font-weight:800; margin:26px 0 12px; line-height:1.35; }
.sp-content p{ margin:0 0 16px; }
.sp-content a{ color:var(--hm-blue); text-decoration:underline; }
.sp-content ul{ list-style:disc; padding-left:22px; margin:0 0 16px; }
.sp-content ol{ list-style:decimal; padding-left:22px; margin:0 0 16px; }
.sp-content li{ margin-bottom:8px; }
.sp-content img{ max-width:100%; height:auto; border-radius:12px; margin:12px 0; }
.sp-content blockquote,.sp-content .note,.sp-content .callout{ display:flex; gap:10px; border-left:4px solid var(--hm-blue); background:var(--hm-blue-light); padding:14px 18px; border-radius:0 10px 10px 0; margin:20px 0; color:var(--hm-navy); }
.sp-content table{ width:100%; border-collapse:collapse; margin:18px 0; font-size:14.5px; }
.sp-content table th,.sp-content table td{ border:1px solid var(--hm-border); padding:10px 12px; text-align:left; }
.sp-content table th{ background:var(--hm-blue-light); color:var(--hm-navy); font-weight:700; }
.sp-features{ margin-top:32px; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.sp-feat{ display:flex; gap:12px; align-items:center; background:#fff; border:1px solid var(--hm-border); border-radius:12px; padding:16px; }
.sp-feat-ic{ width:44px; height:44px; border-radius:10px; background:var(--hm-blue-light); color:var(--hm-blue); display:flex; align-items:center; justify-content:center; font-size:18px; flex:0 0 auto; }
.sp-feat strong{ display:block; font-size:14px; color:var(--hm-navy); }
.sp-feat small{ font-size:12.5px; color:var(--hm-muted); }
@media (max-width:768px){ .sp-features{ grid-template-columns:1fr 1fr; } .sp-card{ padding:28px 22px; } }
@media (max-width:600px){ .sp-title{ font-size:24px; } }
