/* ============================================================
   LATOUR.VN - GIAO DIỆN MỚI HIỆN ĐẠI (CHUẨN THEO PHONG CÁCH PYS TRAVEL)
   Font: Be Vietnam Pro + Inter
   Colors: Primary Orange #ff5722 | Accent Green #1a6b3c | Brand Blue #0088e0
============================================================ */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800;900&display=swap');

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

body {
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  color: #1e293b;
  background: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.2s, background-color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
  --primary: #ff5722;
  --primary-hover: #ea4a16;
  --primary-light: #fff5f2;
  --brand-green: #1a6b3c;
  --brand-blue: #0088e0;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --border-light: #eef2f6;
  --bg-light: #f8fafc;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home-wrapper {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.page-home-wrapper #content-center {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/* ============================================================
   1. HEADER & NAVIGATION (PYS TRAVEL STYLE)
============================================================ */

#lt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.lt-header-main {
  padding: 6px 0;
}

.lt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lt-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

/* Main Navigation */
#main-nav-new {
  display: flex;
  align-items: center;
}

.lt-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Pill Highlight Button ("Tour Mùa Thu" / "Tour Măng Đen") */
.lt-nav-pill-item {
  margin-right: 8px;
  flex-shrink: 0;
}
.lt-nav-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff !important;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.2;
  white-space: nowrap !important;
  flex-shrink: 0;
  letter-spacing: -0.1px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.28);
}
.lt-nav-pill-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.38);
}

/* Regular Nav Links */
.lt-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.lt-nav-link:hover,
.lt-nav-list > li.active > .lt-nav-link {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-arrow {
  display: none !important;
}

/* ---- MEGA MENU (PYS TRAVEL 2-PANEL DROPDOWN) ---- */
.has-mega-menu {
  position: static;
}
.has-mega-menu:hover .lt-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lt-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  border-top: 2px solid var(--primary);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease-in-out;
}

.lt-mega-inner {
  display: flex;
  min-height: 380px;
}

/* Mega Menu Sidebar (Image 3 Style) */
.lt-mega-sidebar {
  width: 220px;
  background: #ffffff;
  border-right: 1px solid #f1f5f9;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.lt-mega-cat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11px 16px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.15s ease;
  background: #ffffff;
}
.lt-mega-cat-item .mega-cat-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}
.lt-mega-cat-item .mega-cat-sub {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lt-mega-cat-item:hover,
.lt-mega-cat-item.active {
  background: var(--primary);
  border-bottom-color: var(--primary);
}
.lt-mega-cat-item:hover .mega-cat-title,
.lt-mega-cat-item.active .mega-cat-title {
  color: #ffffff;
}
.lt-mega-cat-item:hover .mega-cat-sub,
.lt-mega-cat-item.active .mega-cat-sub {
  color: rgba(255, 255, 255, 0.88);
}

/* Mega Menu Content Panel */
.lt-mega-content {
  flex: 1;
  padding: 18px 24px;
  background: #ffffff;
  min-width: 0;
}

.lt-mega-panel {
  display: none;
}
.lt-mega-panel.active {
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: fadeInPanel 0.2s ease;
}
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.lt-mega-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}
.lt-mega-panel-header h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.lt-mega-viewall {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  transition: color 0.2s;
}
.lt-mega-viewall:hover {
  color: var(--primary);
}

/* Destination rows like Image 3 */
.lt-mega-dest-box {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lt-mega-dest-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  line-height: 1.5;
}
.lt-dest-label {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  min-width: 135px;
  flex-shrink: 0;
}
.lt-dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.lt-dest-link {
  font-size: 12.5px;
  font-weight: 500;
  color: #475569;
  transition: color 0.18s ease;
  white-space: nowrap;
}
.lt-dest-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* 3 Cards inside Mega Menu */
.lt-mega-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: auto;
}

.lt-mega-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.2s;
}
.lt-mega-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}

.lt-mega-card-thumb {
  display: block;
  height: 120px;
  overflow: hidden;
}
.lt-mega-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.lt-mega-card:hover .lt-mega-card-thumb img {
  transform: scale(1.06);
}

.lt-mega-card-body {
  padding: 10px 12px;
}
.lt-mega-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  height: 35px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 6px;
}
.lt-mega-card-rating {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.lt-star { color: #f59e0b; font-weight: 700; }
.lt-mega-card-meta {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.lt-mega-card-price strong {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--primary);
}

/* Standard Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border: 1px solid #eef2f6;
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1000;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: all 0.15s;
}
.dropdown-menu li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 22px;
}

/* Header Right: Hotline + Về Latour */
.lt-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lt-header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-dark);
  transition: color 0.2s;
}
.lt-header-phone:hover {
  color: var(--primary);
}
.lt-phone-icon {
  width: 15px;
  height: 15px;
  color: var(--primary);
}
.lt-header-about-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.lt-header-about-link:hover {
  color: var(--primary);
}

/* Hamburger */
.lt-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}
.lt-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ---- MOBILE MENU DRAWER (HIDDEN ON DESKTOP) ---- */
.lt-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
}
.lt-mobile-menu.open {
  display: block;
}
.lt-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 99999;
}
.lt-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 310px;
  height: 100%;
  background: #ffffff;
  z-index: 100000;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
.lt-mobile-menu.open .lt-mobile-panel {
  transform: translateX(0);
}
.lt-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}
.lt-mobile-header img {
  height: 38px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}
.lt-mobile-close {
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lt-mobile-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.lt-mobile-nav {
  padding: 10px 0;
  flex: 1;
}
.lt-mobile-nav li {
  border-bottom: 1px solid #f8fafc;
}
.lt-mobile-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
}
.lt-mobile-nav li a:hover {
  background: #fff5f2;
  color: #ff5722;
}
.lt-mobile-nav li ul {
  background: #f8fafc;
  padding: 6px 0;
}
.lt-mobile-nav li ul li a {
  padding: 9px 32px;
  font-size: 13.5px;
  font-weight: 500;
  color: #64748b;
}
.lt-mobile-toggle {
  font-size: 18px;
  color: #94a3b8;
  font-weight: bold;
}

/* ============================================================
   2. HERO BANNER CAROUSEL & FLOATING SEARCH BAR (PYS TRAVEL STYLE)
============================================================ */

.lt-hero-section {
  width: 100%;
  position: relative;
  margin-top: 14px;
  margin-bottom: 38px;
}

.lt-hero-container {
  padding-left: 16px;
  padding-right: 16px;
}

.lt-banner-carousel-box {
  position: relative;
  width: 100%;
}

.lt-banner-slides-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2048 / 900;
  max-height: 520px;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #f1f5f9;
}

.lt-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}
.lt-banner-slide.active {
  opacity: 1;
  visibility: visible;
}
.lt-banner-slide a,
.lt-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Carousel Prev/Next Buttons */
.lt-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 24px;
  line-height: 1;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s;
}
.lt-carousel-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.lt-prev { left: 16px; }
.lt-next { right: 16px; }

/* Floating Search Bar */
.lt-floating-search-wrap {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 680px;
  z-index: 25;
}

.lt-floating-search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  padding: 6px 8px 6px 20px;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lt-search-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.lt-search-input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text-dark);
  background: transparent;
}
.lt-search-input-group input::placeholder {
  color: var(--text-muted);
}

.lt-search-submit-btn {
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.35);
}
.lt-search-submit-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 87, 34, 0.45);
}

/* ============================================================
   3. TRUST BADGES / USP STRIP (5 ĐIỂM CAM KẾT)
============================================================ */

.lt-trust-strip {
  background: #ffffff;
  padding: 54px 0 26px;
  border-bottom: 1px solid #f1f5f9;
}

.lt-trust-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.lt-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lt-trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px dashed var(--brand-blue);
  background: #f0f7ff;
  color: var(--brand-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}
.trust-years { font-size: 16px; line-height: 1; }
.trust-unit { font-size: 9px; letter-spacing: 0.5px; }

.lt-trust-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lt-trust-icon-circle svg {
  width: 22px;
  height: 22px;
}

.lt-trust-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.lt-trust-text span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ============================================================
   4. CHƯƠNG TRÌNH KHUYẾN MÃI MỚI NHẤT (3 BANNER CARDS)
============================================================ */

.lt-section-promos {
  padding: 36px 0 16px;
}

.lt-section-header-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}
.lt-section-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lt-heading-bolt {
  color: #f59e0b;
  font-size: 22px;
}
.lt-section-viewall {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.lt-section-viewall:hover {
  color: var(--primary);
}

.lt-promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lt-promo-banner-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 190px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: block;
}
.lt-promo-banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lt-promo-banner-card:hover img {
  transform: scale(1.06);
}

.lt-promo-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.25) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  color: #ffffff;
}
.lt-promo-pill {
  display: inline-block;
  align-self: flex-start;
  background: var(--primary);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.lt-promo-card-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #ffffff;
}
.lt-promo-card-content p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ============================================================
   4B. TOUR ĐANG XU HƯỚNG (MẪU PYS TRAVEL - 5 ĐIỂM ĐẾN)
============================================================ */

.lt-section-trending {
  background: linear-gradient(180deg, #fff7ed 0%, #fffbf8 60%, #ffffff 100%);
  padding: 36px 0 42px;
  position: relative;
  overflow: hidden;
  margin: 6px 0 16px;
}
.lt-section-trending::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 180, 140, 0.22) 0%, rgba(255, 247, 237, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.lt-section-trending::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(254, 215, 170, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lt-trending-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 22px;
  letter-spacing: -0.3px;
}

.lt-trending-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.lt-trending-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f1f5f9;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
}
.lt-trending-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.13);
}

.lt-trending-thumb {
  width: 100%;
  height: 100%;
  position: relative;
}
.lt-trending-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.lt-trending-card:hover .lt-trending-thumb img {
  transform: scale(1.09);
}

.lt-trending-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.84) 100%);
  transition: background 0.3s ease;
}
.lt-trending-card:hover .lt-trending-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0.9) 100%);
}

.lt-trending-name {
  position: absolute;
  bottom: 14px;
  left: 10px;
  right: 10px;
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.85);
  z-index: 2;
  transition: transform 0.3s ease, color 0.2s ease;
}
.lt-trending-card:hover .lt-trending-name {
  color: #ffedd5;
  transform: translateY(-2px);
}

/* ============================================================
   5. 4 DỊCH VỤ NHANH
============================================================ */

.lt-section-services {
  padding: 16px 0 36px;
}
.lt-services-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lt-svc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #eef2f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s;
}
.lt-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

.lt-svc-icon-box,
.lt-svc-info-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lt-svc-icon-box img,
.lt-svc-info-box img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.lt-svc-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 3px;
}
.lt-svc-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   6. TOUR CARD (CHUẨN FORM PYS TRAVEL)
============================================================ */

.lt-section-tours {
  padding: 24px 0 36px;
}

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

.lt-tour-card-pys {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #eef2f6;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.lt-tour-card-pys:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: #e2e8f0;
}

.lt-tour-thumb-pys {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
  display: block;
}
.lt-tour-thumb-pys img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lt-tour-card-pys:hover .lt-tour-thumb-pys img {
  transform: scale(1.06);
}

.lt-card-badge-hot,
.lt-card-badge-hotel {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.lt-card-badge-hotel {
  background: var(--brand-blue);
}

.lt-tour-body-pys {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lt-tour-title-pys {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 8px;
}
.lt-tour-title-pys a {
  color: inherit;
  transition: color 0.2s;
}
.lt-tour-card-pys:hover .lt-tour-title-pys a {
  color: var(--primary);
}

.lt-tour-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.lt-rating-star {
  color: #f59e0b;
  font-weight: 700;
}

.lt-tour-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.lt-tour-info-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lt-tour-footer-pys {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.lt-tour-old-price {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
  line-height: 1.2;
}
.lt-tour-sale-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

/* ============================================================
   7. KHÁCH HÀNG NÓI GÌ VỀ LATOUR (REVIEWS)
============================================================ */

.lt-section-reviews {
  background: #f0f7ff;
  padding: 48px 0;
  border-top: 1px solid rgba(0, 136, 224, 0.08);
  border-bottom: 1px solid rgba(0, 136, 224, 0.08);
}

.lt-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.lt-review-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 136, 224, 0.08);
  display: flex;
  flex-direction: column;
}

.lt-review-stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.lt-review-tour-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
}
.lt-review-text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
  font-style: italic;
}
.lt-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}
.lt-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0f2fe;
}
.lt-review-author-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.lt-review-author-info span {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
}

.lt-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1.5px solid var(--brand-blue);
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.lt-btn-outline:hover {
  background: var(--brand-blue);
  color: #ffffff;
}

/* ============================================================
   8. KHÁM PHÁ ĐIỂM ĐẾN (BENTO GRID)
============================================================ */

.lt-section-destinations {
  padding: 36px 0;
}

.lt-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.lt-bento-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}
.lt-bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.lt-bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lt-bento-card:hover img {
  transform: scale(1.06);
}

.lt-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
}
.lt-bento-overlay h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
  color: #ffffff;
}
.lt-bento-overlay span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   9. CẨM NANG & BẢN TIN (2 CỘT)
============================================================ */

.lt-section-news {
  padding: 36px 0;
}

.lt-news-two-col {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
}

.lt-camnang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lt-camnang-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #eef2f6;
  box-shadow: var(--shadow-card);
}
.lt-camnang-thumb {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.lt-camnang-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.lt-camnang-card:hover .lt-camnang-thumb img {
  transform: scale(1.05);
}
.lt-camnang-body {
  padding: 12px 14px;
}
.lt-camnang-body h5 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 6px;
}
.lt-camnang-body h5 a {
  color: var(--text-dark);
  transition: color 0.2s;
}
.lt-camnang-card:hover .lt-camnang-body h5 a {
  color: var(--primary);
}
.lt-news-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--text-muted);
}

.lt-bantin-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lt-bantin-item {
  display: flex;
  gap: 14px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 8px;
  border: 1px solid #eef2f6;
  transition: all 0.2s;
}
.lt-bantin-item:hover {
  box-shadow: var(--shadow-card);
  border-color: #cbd5e1;
}
.lt-bantin-thumb {
  width: 110px;
  height: 74px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.lt-bantin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lt-bantin-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lt-bantin-info h5 {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
}
.lt-bantin-info h5 a {
  color: var(--text-dark);
}
.lt-bantin-item:hover .lt-bantin-info h5 a {
  color: var(--primary);
}

/* ============================================================
   10. BÁO CHÍ NÓI VỀ LATOUR
============================================================ */

.lt-section-press {
  padding: 24px 0 36px;
}

.lt-press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lt-press-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #eef2f6;
  transition: all 0.2s;
}
.lt-press-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}
.lt-press-card img {
  max-height: 38px;
  width: auto;
  margin-bottom: 12px;
  object-fit: contain;
}
.lt-press-card p {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.45;
  margin: 0;
}

/* ============================================================
   11. CTA BANNER CARD
============================================================ */

.lt-section-cta {
  padding: 20px 0 48px;
}

.lt-cta-card {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.25);
}

.lt-cta-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #ffffff;
}
.lt-cta-text p {
  font-size: 15px;
  opacity: 0.92;
  margin: 0 0 24px;
  max-width: 540px;
}

.lt-cta-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
}
.lt-cta-form input {
  flex: 1;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  border: none;
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
}
.lt-cta-form button {
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 13px 28px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.4);
}
.lt-cta-form button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.lt-cta-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* ============================================================
   12. FOOTER (LIGHT MODERN BACKGROUND PYS TRAVEL STYLE)
============================================================ */

footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  color: var(--text-body);
  font-size: 14px;
}

.lt-footer-main {
  padding: 50px 0 36px;
}

.lt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.lt-footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}
.lt-footer-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.lt-footer-grid h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px;
}

.lt-footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lt-footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.lt-footer-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}
.lt-footer-info-item a {
  color: inherit;
  transition: color 0.2s;
}
.lt-footer-info-item a:hover {
  color: var(--primary);
}

.lt-footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding: 18px 0;
  font-size: 13px;
  color: var(--text-muted);
  background: #f1f5f9;
}
.lt-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   13. RESPONSIVENESS (MOBILE & TABLET)
============================================================ */

@media (min-width: 1025px) {
  .lt-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  #main-nav-new {
    display: none !important;
  }
  .lt-header-about-link {
    display: none !important;
  }
  .lt-header-phone .lt-phone-number {
    display: none !important;
  }
  .lt-header-phone {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .lt-header-phone .lt-phone-icon {
    width: 18px;
    height: 18px;
  }
  .lt-hamburger {
    display: flex !important;
  }

  .lt-hero-section {
    margin-top: 10px;
    margin-bottom: 32px;
  }
  .lt-banner-slides-wrapper {
    aspect-ratio: 2048 / 960;
    min-height: 260px;
    border-radius: 14px;
  }

  .lt-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .lt-services-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lt-tours-grid-pys {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .lt-promo-cards-grid {
    grid-template-columns: 1fr;
  }
  .lt-trending-grid {
    gap: 14px;
  }
  .lt-trending-name {
    font-size: 13.5px;
    bottom: 10px;
  }
  .lt-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lt-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .lt-bento-large {
    grid-column: span 2;
    height: 240px;
  }
  .lt-bento-card {
    height: 160px;
  }
  .lt-news-two-col {
    grid-template-columns: 1fr;
  }
  .lt-press-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lt-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lt-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .lt-cta-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .lt-header-main {
    padding: 6px 0;
  }
  .header-logo-img {
    height: 32px;
  }

  .lt-hero-section {
    margin-top: 8px;
    margin-bottom: 28px;
  }
  .lt-hero-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .lt-banner-slides-wrapper {
    aspect-ratio: 2048 / 960;
    min-height: 160px;
    max-height: 230px;
    border-radius: 12px;
  }
  .lt-carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  .lt-prev { left: 8px; }
  .lt-next { right: 8px; }

  /* Floating Search on Mobile: Sleek single-line Pill */
  .lt-floating-search-wrap {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 440px;
  }
  .lt-floating-search-box {
    border-radius: var(--radius-full);
    flex-direction: row;
    padding: 4px 5px 4px 12px;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
  .lt-search-input-group {
    gap: 6px;
  }
  .lt-search-input-group svg {
    width: 15px;
    height: 15px;
  }
  .lt-search-input-group input {
    font-size: 12px;
  }
  .lt-search-submit-btn {
    padding: 7px 14px;
    font-size: 12px;
    gap: 4px;
  }
  .lt-search-submit-btn svg {
    width: 13px;
    height: 13px;
  }

  /* Trending Section Mobile Horizontal Scroll */
  .lt-section-trending {
    padding: 22px 0 28px;
  }
  .lt-trending-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .lt-trending-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .lt-trending-grid::-webkit-scrollbar {
    display: none;
  }
  .lt-trending-card {
    flex: 0 0 135px;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    scroll-snap-align: start;
  }
  .lt-trending-name {
    font-size: 13px;
    bottom: 8px;
    left: 6px;
    right: 6px;
  }

  /* Trust Badges Strip */
  .lt-trust-strip {
    padding: 34px 0 16px;
  }
  .lt-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
  }
  .lt-trust-item {
    gap: 8px;
  }
  .lt-trust-badge-icon,
  .lt-trust-icon-circle {
    width: 36px;
    height: 36px;
  }
  .trust-years { font-size: 13px; }
  .trust-unit { font-size: 7.5px; }
  .lt-trust-text strong {
    font-size: 12px;
    display: block;
    line-height: 1.2;
  }
  .lt-trust-text span {
    font-size: 10.5px;
    display: block;
    line-height: 1.2;
    margin-top: 2px;
  }

  /* Sections */
  .lt-section-promos,
  .lt-section-services,
  .lt-section-tours,
  .lt-section-hotels,
  .lt-section-camnang,
  .lt-section-feedback,
  .lt-section-bento,
  .lt-section-press,
  .lt-section-cta {
    padding: 22px 0;
  }
  .lt-section-heading {
    font-size: 17px;
  }
  .lt-section-sub {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .lt-section-header-inline {
    margin-bottom: 12px;
  }
  .lt-section-viewall {
    font-size: 12.5px;
  }

  /* Promo Cards */
  .lt-promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lt-promo-banner-card {
    height: 125px;
  }
  .lt-promo-card-content h4 {
    font-size: 15px;
  }

  /* Quick Services */
  .lt-services-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .lt-service-card {
    padding: 12px 10px;
    gap: 8px;
  }
  .lt-service-card h4 {
    font-size: 13px;
  }
  .lt-service-card p {
    font-size: 11px;
  }

  /* Tour Grids: 2 columns on mobile, 12 tours per category */
  .lt-tours-grid-pys {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .lt-tour-thumb {
    height: 115px;
  }
  .lt-tour-card-body {
    padding: 8px 10px;
  }
  .lt-tour-card-title {
    font-size: 12.5px;
    height: 34px;
    line-height: 1.35;
    margin-bottom: 4px;
  }
  .lt-tour-rating {
    font-size: 10.5px;
    margin-bottom: 4px;
  }
  .lt-tour-card-meta {
    font-size: 10.5px;
    gap: 3px;
    margin-bottom: 6px;
  }
  .lt-price-amount {
    font-size: 14px;
  }
  .lt-btn-book {
    display: none;
  }

  /* Bento Grid */
  .lt-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .lt-bento-large {
    grid-column: span 2;
    height: 160px;
  }
  .lt-bento-card {
    height: 110px;
  }

  /* Reviews & News & Press */
  .lt-reviews-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lt-camnang-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lt-press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* CTA Banner */
  .lt-cta-card {
    padding: 24px 16px;
    border-radius: 12px;
  }
  .lt-cta-text h3 {
    font-size: 17px;
  }
  .lt-cta-text p {
    font-size: 12.5px;
  }
  .lt-cta-form {
    flex-direction: column;
    gap: 8px;
  }
  .lt-cta-form input {
    width: 100%;
    font-size: 13px;
    padding: 10px 14px;
  }
  .lt-cta-form button {
    width: 100%;
    font-size: 13.5px;
    padding: 10px 16px;
  }

  /* Footer */
  .lt-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lt-footer-main {
    padding: 32px 0 24px;
  }
  .lt-footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ============================================================
   14. FLOATING CONTACT BUTTONS (BÊN PHẢI NHƯ ẢNH MẪU 2)
============================================================ */
.lt-floating-contact {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.lt-contact-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lt-contact-btn:hover {
  transform: scale(1.12);
}

.lt-contact-btn a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

/* 1. Phone Button (Xanh lá) */
.lt-btn-phone a {
  background: #0b8043;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(11, 128, 67, 0.45);
}
.lt-btn-phone svg {
  animation: lt-wiggle 1.5s infinite ease-in-out;
}

/* 2. Messenger Button (Xanh dương) */
.lt-btn-messenger a {
  background: #0084ff;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 132, 255, 0.45);
}

/* 3. Zalo Button (Trắng với logo Zalo) */
.lt-btn-zalo a {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 104, 255, 0.22);
}
.lt-btn-zalo svg {
  width: 100%;
  height: 100%;
}

/* Hiệu ứng sóng lan tỏa (Ripples) chuẩn như ảnh 2 */
.lt-contact-ripple {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.lt-ripple-green {
  border: 1.5px solid rgba(11, 128, 67, 0.5);
  animation: lt-pulse-wave 2.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lt-ripple-blue {
  border: 1.5px solid rgba(0, 132, 255, 0.5);
  animation: lt-pulse-wave 2.2s infinite 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.lt-ripple-zalo {
  border: 1.5px solid rgba(0, 104, 255, 0.45);
  animation: lt-pulse-wave 2.2s infinite 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes lt-pulse-wave {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  60% {
    transform: scale(1.45);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes lt-wiggle {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-18deg); }
  20%, 40% { transform: rotate(18deg); }
  50% { transform: rotate(0); }
}

@media (max-width: 768px) {
  .lt-floating-contact {
    bottom: 75px;
    right: 14px;
    gap: 10px;
  }
  .lt-contact-btn {
    width: 44px;
    height: 44px;
  }
}

