/*
Theme Name: TIMES SPEED SERVICES
Theme URI: https://wp-tsts.com.vn/
Author: TIMES SPEED SERVICES
Description: Responsive WordPress Theme for TIMES SPEED SERVICES Logistics with Customizer layout sections.
Version: 2.3.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.1
Text Domain: times-speed-services
*/

:root {
  /* Brand Colors */
  --color-red: #e52320;
  --color-red-dark: #c31a17;
  --color-orange: #f58220;
  --color-orange-dark: #d76911;
  --color-navy: #0f172a;
  --color-navy-light: #1e293b;
  --color-gray: #64748b;
  --color-gray-light: #f1f5f9;
  --color-border: #e2e8f0;
  --color-bg-light: #f8fafc;
  --color-bg-warm: #ffffff;
  --color-white: #ffffff;

  /* Typography */
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  /* UI settings */
  --radius: 16px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 10px 20px -10px rgba(15, 23, 42, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-navy);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.15px;
  color: #0f172ac7;
}

strong {
  color: #0f172ac7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 4px);
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.tsts-anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

/* Typography Utilities */
.title-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  margin: 18px auto 0;
  border-radius: 2px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 32px;
}

.section-header-center h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: #0f172ac7;
  line-height: 1.35;
  letter-spacing: 0.15px;
  font-weight: 700;
}

/* Button Component */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.button i {
  transition: var(--transition);
}

.button:hover i.icon-right {
  transform: translateX(4px);
}

.button-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  box-shadow: 0 6px 16px rgba(229, 35, 32, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-orange-dark) 100%);
  box-shadow: 0 8px 20px rgba(229, 35, 32, 0.3);
  transform: translateY(-2px);
}

.button-secondary-outline {
  color: var(--color-red);
  background: transparent;
  border-color: var(--color-orange);
}

.button-secondary-outline:hover {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

/* Top bar style */
.top-bar {
  background-color: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.top-bar-link i {
  color: var(--color-orange);
}

.top-bar-link:hover {
  color: var(--color-white);
  opacity: 1;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-links-flags {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-text-link {
  cursor: pointer;
  transition: var(--transition);
}

.top-bar-text-link:hover {
  color: var(--color-orange);
}

.top-bar-separator {
  opacity: 0.3;
}

.top-bar-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.flag-icon {
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.flag-icon:hover {
  transform: scale(1.15);
}

/* Google Translate Custom Reset (Hide UI elements for native premium look) */
body {
  top: 0 !important;
}

.skiptranslate,
iframe.skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}

#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
}

.top-bar-socials a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: var(--transition);
}

.top-bar-socials a:hover {
  color: var(--color-orange);
  transform: translateY(-1px);
}

/* Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 16px;
}

/* Brand logo layout */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  max-height: 54px;
  object-fit: contain;
}

.brand-logo-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-emblem-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-red);
  line-height: 1.1;
  letter-spacing: -0.2px;
}

.brand-tagline {
  font-size: 9px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.2px;
  margin-top: 2px;
}

/* Navigation menu */
.site-header nav {
  display: flex;
  align-items: center;
}

.site-header nav .menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.site-header nav .menu a {
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
  border-radius: 8px;
  position: relative;
}

.site-header nav .menu a:hover,
.site-header nav .menu .current-menu-item>a {
  color: var(--color-red);
}

.site-header nav .menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-header nav .menu a:hover::after,
.site-header nav .menu .current-menu-item>a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Prevent custom anchor links (hash links) from being styled as active on load */
.site-header nav .menu .menu-item-type-custom.current-menu-item > a[href*="#"] {
  color: var(--color-navy);
}
.site-header nav .menu .menu-item-type-custom.current-menu-item > a[href*="#"]::after {
  transform: scaleX(0);
}
.site-header nav .menu .menu-item-type-custom.current-menu-item > a[href*="#"]:hover {
  color: var(--color-red);
}
.site-header nav .menu .menu-item-type-custom.current-menu-item > a[href*="#"]:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Sub-menu (Dropdown) styling */
.site-header nav .menu li {
  position: relative;
}

.site-header nav .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--color-white);
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.site-header nav .menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header nav .menu .sub-menu li {
  width: 100%;
}

.site-header nav .menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-navy-light);
  border-radius: 0;
  transition: all 0.2s ease;
}

.site-header nav .menu .sub-menu a::after {
  display: none; /* Disable underline effect in sub-menu */
}

.site-header nav .menu .sub-menu a:hover,
.site-header nav .menu .sub-menu .current-menu-item > a {
  background-color: rgba(242, 179, 0, 0.06);
  color: var(--color-orange);
  padding-left: 24px; /* Slight slide-in effect on hover */
}

/* Arrow indicator for parent items */
.site-header nav .menu .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-header nav .menu .menu-item-has-children > a::before {
  content: '\f107'; /* FontAwesome down angle */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  order: 2; /* Put it after text */
  transition: transform 0.3s ease;
  color: inherit;
  opacity: 0.7;
}

.site-header nav .menu .menu-item-has-children:hover > a::before {
  transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button-ghost-header {
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--color-white);
}

.button-ghost-header:hover {
  background-color: var(--color-gray-light);
  border-color: var(--color-gray);
  transform: translateY(-1px);
}

.button-ghost-header i {
  color: var(--color-red);
  margin-right: 6px;
}

.button-primary-header {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(229, 35, 32, 0.15);
  text-transform: uppercase;
}

.button-primary-header:hover {
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-orange-dark) 100%);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 35, 32, 0.3);
}

/* Hamburger mobile button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   HOMEPAGE MODULES
   ========================================================================== */

/* 1. HERO SLIDER */
.hero-slider-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.hero-slider {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 5;
}

.hero-slide-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  filter: blur(80px);
  opacity: 0.12; /* Subtle ambient lighting effect */
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0); /* Hardware acceleration */
}

.hero-text-col {
  max-width: 650px;
}

.hero-pretitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 46px);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172ac7;
  margin-bottom: 28px;
  letter-spacing: 0.15px;
}

.hero-title .text-highlight {
  color: var(--color-orange);
}

.hero-description {
  font-size: clamp(15px, 1.8vw, 16px);
  color: var(--color-gray);
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-mobile-trust-badges {
  display: none;
}

/* Hero Custom Buttons */
.button-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
  border-radius: 30px;
  font-weight: 700;
  padding: 12px 28px;
}

.button-outline-dark:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-slide .button-primary {
  background-color: var(--color-orange);
  color: var(--color-navy);
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 700;
}

.hero-slide .button-primary:hover {
  background-color: var(--color-orange-dark);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 179, 0, 0.25);
}

/* Right Column: Hero Image & Badges */
.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1.15;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
}

.hero-image-hexagon-border {
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
}

.hero-image-inner-frame {
  position: absolute;
  inset: 4px;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 2;
  background-color: var(--color-white);
  transform: translateZ(0); /* Hardware acceleration */
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-inner-frame:hover .hero-main-img {
  transform: scale(1.06);
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-size: 80px;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 10px 20px -10px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 5;
  transition: all 0.5s ease;
}

/* Subscribers Badge */
.badge-subscribers {
  top: 10%;
  left: -5%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
}

.badge-subscribers .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.badge-subscribers .badge-text {
  display: flex;
  flex-direction: column;
}

.badge-subscribers .badge-text strong {
  font-size: 14px;
  color: var(--color-navy);
  font-weight: 800;
  line-height: 1.2;
}

.badge-subscribers .badge-text span {
  font-size: 11px;
  color: var(--color-gray);
  font-weight: 600;
}

/* Avatars Badge */
.badge-avatars {
  bottom: 12%;
  left: 0;
  padding: 10px 14px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group .avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  margin-right: -8px;
  box-shadow: var(--shadow-sm);
}

.avatar-group .avatar-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #22c55e;
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
}

/* Reviews Badge */
.badge-reviews {
  bottom: 8%;
  right: -5%;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-reviews-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviews-heart {
  font-size: 14px;
}

.reviews-text {
  font-size: 12px;
  color: var(--color-navy);
}

.badge-reviews-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars-gold {
  color: #fbbf24;
  font-size: 12px;
  letter-spacing: 1px;
}

.rating-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-gray);
}

/* Micro-interactions: Floating badges animation */
.hero-slide.active .badge-subscribers {
  animation: badgeFloat 4s ease-in-out infinite alternate;
}

.hero-slide.active .badge-avatars {
  animation: badgeFloat 4.5s ease-in-out infinite alternate-reverse;
}

.hero-slide.active .badge-reviews {
  animation: badgeFloat 5s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* Slider navigation arrows */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background-color: rgba(15, 23, 42, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.slide-nav:hover {
  background-color: var(--color-orange);
  border-color: transparent;
  color: var(--color-navy);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(242, 179, 0, 0.2);
}

.slide-prev {
  left: 32px;
}

.slide-next {
  right: 32px;
}

/* Dot Indicators */
.slide-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slide-dot.active {
  background-color: var(--color-orange);
  width: 28px;
  border-radius: 4px;
}

/* 2. WELCOME INTRO */
.intro-section {
  position: relative;
  margin-top: -60px; /* Overlap slide slightly more */
  z-index: 20;
  padding-bottom: 36px;
}

.intro-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 48px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 56px 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.intro-split-layout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

.intro-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.intro-pretitle {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(242, 80, 0, 0.08);
  color: var(--color-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 20px;
}

.intro-title {
  color: #0f172ac7;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15px;
  margin: 0;
}

.intro-title .text-highlight {
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.title-divider-left {
  width: 60px;
  height: 3px;
  background-color: var(--color-orange);
  margin-top: 16px;
  margin-bottom: 24px;
  border-radius: 2px;
}

.intro-text {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.8;
  margin: 0 0 28px 0;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.intro-actions .button {
  padding: 12px 28px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.intro-actions .button-primary {
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 15px rgba(242, 80, 0, 0.3);
}

.intro-actions .button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 80, 0, 0.4);
}

.intro-actions .button-outline-dark {
  background-color: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.intro-actions .button-outline-dark:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Feature Grid right */
.intro-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.intro-feature-card {
  background-color: var(--color-bg-light);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.intro-feature-card:hover {
  background-color: var(--color-white);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(242, 80, 0, 0.15);
}

.intro-feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: rgba(242, 80, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.intro-feature-icon {
  font-size: 20px;
  color: var(--color-orange);
  transition: all 0.3s ease;
}

.intro-feature-card:hover .intro-feature-icon-wrapper {
  background-color: var(--color-orange);
}

.intro-feature-card:hover .intro-feature-icon {
  color: var(--color-white);
  transform: scale(1.1);
}

.intro-feature-title {
  color: var(--color-navy);
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.intro-feature-desc {
  color: var(--color-gray);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   3. COUNTRY SHIPPING PACKAGES (Perfect side-by-side alignment)
   ========================================================================== */
.packages-section {
  padding-top: 24px;
  padding-bottom: 36px;
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.section-pretitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.package-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.packages-carousel-dots {
  display: none;
}

.package-grid-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.package-grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 179, 0, 0.4);
  box-shadow: var(--shadow-lg);
}

.package-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.package-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.package-grid-card:hover .package-card-image-wrapper img {
  transform: scale(1.05);
}

.pkg-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  gap: 12px;
}

.placeholder-icon {
  font-size: 40px;
  color: var(--color-orange);
}

.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.pkg-badge i {
  color: var(--color-orange);
}

.package-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card-header {
  margin-bottom: 16px;
}

/* Modern Visual Route Connection */
.package-route-connection {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.route-node {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-navy-light);
  background-color: var(--color-bg-light);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.route-flag {
  font-size: 13px;
}

.route-path-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0, var(--color-border) 3px, transparent 3px, transparent 6px);
  position: relative;
  display: flex;
  align-items: center;
  min-width: 30px;
}

.route-path-dot {
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-orange);
}

.route-path-plane {
  position: absolute;
  left: 0;
  font-size: 10px;
  color: var(--color-orange);
  transform: translateY(-50%);
  transition: left 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.4s ease;
  top: 50%;
}

/* Flight Animation on Hover */
.package-grid-card:hover .route-path-plane {
  left: calc(100% - 10px);
  color: var(--color-red);
}

.package-title {
  font-size: 18px;
  color: #0f172ac7;
  font-weight: 700;
  letter-spacing: 0.15px;
  margin-bottom: 0;
  line-height: 1.35;
}

.package-title::after {
  display: none;
}

.package-desc {
  color: var(--color-gray);
  margin-bottom: 20px;
  font-size: 13.5px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 43px;
}

/* Bullet list checkmark - Grid layout with Pill-tags */
.package-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 0;
}

.package-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-navy-light);
  background-color: var(--color-bg-light);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition: var(--transition);
}

.package-points li:hover {
  background-color: var(--color-white);
  border-color: rgba(242, 179, 0, 0.3);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  transform: translateY(-1px);
}

.point-icon {
  color: var(--color-orange);
  font-size: 13px;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.package-cta {
  display: flex;
  margin-top: auto;
}

.package-cta .button-secondary-outline {
  width: 100%;
  text-align: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  color: var(--color-navy);
  background: transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.package-cta .button-secondary-outline:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 179, 0, 0.2);
}

.package-cta .button-secondary-outline i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.package-cta .button-secondary-outline:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   4. CARGO SERVICES GALLERY (Gold Badge Customizations)
   ========================================================================== */
.services-gallery-section {
  padding-top: 24px;
  padding-bottom: 36px;
  background-color: var(--color-white);
}

.cargo-accordion-container {
  display: flex;
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  gap: 0;
}

.cargo-accordion-panel {
  flex: 0.65; /* Default collapsed width */
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.25, 1);
  border-right: 1px solid var(--color-border);
}

.cargo-accordion-panel:first-child {
  flex: 2.2; /* First panel expanded by default on desktop load */
}

.cargo-accordion-panel:last-child {
  border-right: none;
}

/* Expansion transitions (when hovered) */
.cargo-accordion-container:hover .cargo-accordion-panel {
  flex: 0.65;
}

.cargo-accordion-panel:hover {
  flex: 2.2 !important;
}

/* Watermark/background container */
.panel-brand-bg-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.25, 1);
}

.panel-brand-bg-logo {
  max-width: 70%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.07;
  filter: grayscale(1);
  transition: all 0.6s ease;
}

.cargo-accordion-panel:first-child .panel-brand-bg-logo {
  opacity: 0.12; /* Brand logo opacity for default expanded first panel */
}

.cargo-accordion-container:hover .cargo-accordion-panel:first-child .panel-brand-bg-logo {
  opacity: 0.07;
}

.cargo-accordion-panel:hover .panel-brand-bg-logo {
  opacity: 0.12;
  transform: scale(1.08);
}

.panel-cover-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.12;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.25, 1), opacity 0.6s ease;
}

.cargo-accordion-panel:first-child .panel-cover-bg-image {
  opacity: 0.22; /* Cover image opacity for default expanded first panel */
}

.cargo-accordion-container:hover .cargo-accordion-panel:first-child .panel-cover-bg-image {
  opacity: 0.12;
}

.cargo-accordion-panel:hover .panel-cover-bg-image {
  opacity: 0.22;
  transform: scale(1.06);
}

.panel-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 2;
  transition: background 0.6s ease;
}

/* Add dynamic brand subtle tint on hover */
.cargo-accordion-panel:hover .panel-overlay-gradient {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.85) 100%);
}

.panel-link-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
}

/* COLLAPSED CONTENT (vertical text & number) */
.panel-collapsed-content {
  position: absolute;
  inset: 0;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.25, 1), transform 0.35s ease;
  z-index: 4;
}

.cargo-accordion-panel:hover .panel-collapsed-content {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

/* First panel collapsed state is hidden by default */
.cargo-accordion-panel:first-child .panel-collapsed-content {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

/* Show Panel 1 collapsed content when container is hovered (unless it is hovered directly) */
.cargo-accordion-container:hover .cargo-accordion-panel:first-child .panel-collapsed-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cargo-accordion-container:hover .cargo-accordion-panel:first-child:hover .panel-collapsed-content {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.panel-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.15);
  margin-bottom: 16px;
  line-height: 1;
}

.panel-collapsed-icon {
  flex-shrink: 0;
  aspect-ratio: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.panel-vertical-title {
  writing-mode: vertical-lr;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  white-space: nowrap;
  line-height: 1.2;
}

/* EXPANDED CONTENT (horizontal lists & buttons) */
.panel-expanded-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.25, 1), transform 0.35s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: 5;
}

.cargo-accordion-panel:hover .panel-expanded-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* First panel expanded content is visible by default */
.cargo-accordion-panel:first-child .panel-expanded-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* Show Panel 1 expanded content when container is hovered (unless it is hovered directly) */
.cargo-accordion-container:hover .cargo-accordion-panel:first-child .panel-expanded-content {
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition-delay: 0s;
}

.cargo-accordion-container:hover .cargo-accordion-panel:first-child:hover .panel-expanded-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.panel-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--panel-color);
  margin-bottom: 8px;
  display: inline-block;
}

.panel-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.35;
  margin-bottom: 16px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  text-align: left !important;
}

.panel-item-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.panel-item-list li {
  font-size: 13px;
  color: var(--color-navy-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  margin: 0;
}

.panel-item-list li .list-check-icon {
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.panel-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.panel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.25, 1);
  border: 2px solid;
  text-decoration: none !important;
}

.cargo-accordion-panel:hover .panel-btn {
  background-color: var(--panel-color) !important;
  border-color: var(--panel-color) !important;
  color: var(--color-white) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.panel-btn-arrow {
  transition: transform 0.3s ease;
}

.cargo-accordion-panel:hover .panel-btn-arrow {
  transform: translateX(5px);
}

/* ==========================================================================
   MOBILE & RESPONSIVE LAYOUT FOR ACCORDION
   ========================================================================== */
@media (max-width: 768px) {
  .cargo-accordion-container {
    flex-direction: column;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
  }

  .cargo-accordion-panel {
    width: 100%;
    height: 70px; /* Collapsed height */
    flex: none !important;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    transition: height 0.5s cubic-bezier(0.25, 1, 0.25, 1);
  }

  .cargo-accordion-panel:last-child {
    border-bottom: none;
  }

  /* Expand when .is-expanded class is applied on mobile */
  .cargo-accordion-panel.is-expanded {
    height: 290px !important;
  }

  /* Reset hover flex logic for mobile */
  .cargo-accordion-container:hover .cargo-accordion-panel {
    flex: none;
  }

  /* Collapsed state styling on mobile */
  .panel-collapsed-content {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 20px;
    height: 70px;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    transition: opacity 0.3s ease;
  }

  /* Hide collapsed triggers when expanded on mobile */
  .cargo-accordion-panel.is-expanded .panel-collapsed-content {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .panel-num {
    margin-bottom: 0;
    margin-right: 12px;
    font-size: 20px;
  }

  .panel-collapsed-icon {
    margin-bottom: 0;
    margin-right: 12px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .panel-vertical-title {
    writing-mode: horizontal-tb;
    font-size: 13.5px;
    white-space: normal;
    text-align: left;
  }

  /* Expanded content on mobile */
  .panel-expanded-content {
    padding: 18px;
    transform: translateY(10px);
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .cargo-accordion-panel.is-expanded .panel-expanded-content {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    transition-delay: 0.15s;
  }

  .panel-badge {
    margin-bottom: 4px;
  }

  .panel-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .panel-item-list {
    margin-bottom: 12px;
    gap: 6px;
  }

  .panel-item-list li {
    font-size: 12.5px;
  }

  .panel-footer {
    padding-top: 10px;
  }

  .panel-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* ==========================================================================
   5. WHY CHOOSE US & CONTACT FORM GRID
   ========================================================================== */
.why-contact-section {
  padding-top: 24px;
  padding-bottom: 36px;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: stretch;
}

.why-us-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.column-title {
  font-size: clamp(28px, 4vw, 36px);
  color: #0f172ac7;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.15px;
}

.column-subtitle {
  color: var(--color-gray);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Premium Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  margin-bottom: 32px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  background-color: #f8fafc;
  color: var(--color-navy);
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--color-border);
}

/* Header Highlight */
.comparison-table th.col-highlight {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  text-align: center;
  font-weight: 800;
  border-bottom: 2px solid var(--color-navy-light);
  position: relative;
}

.comparison-table th.col-highlight::after {
  content: 'ĐỀ XUẤT';
  position: absolute;
  top: 6px;
  right: 8px;
  background-color: var(--color-orange);
  color: var(--color-navy);
  font-size: 8px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background-color: #f8fafc;
}

.cell-title {
  color: var(--color-navy);
  font-weight: 700;
  background-color: #f8fafc;
  width: 30%;
}

/* Highlighted TIMES SPEED column values */
.cell-tsts {
  font-weight: 700;
  color: var(--color-navy);
  background-color: rgba(242, 179, 0, 0.02);
  border-left: 1.5px dashed rgba(242, 179, 0, 0.3);
  border-right: 1.5px dashed rgba(242, 179, 0, 0.3);
  text-align: center;
}

.cell-other {
  color: var(--color-gray);
  opacity: 0.85;
  text-align: center;
}

.tsts-check-icon {
  color: #10b981;
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

.other-x-icon {
  color: #ef4444;
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

/* Stats Metric Cards */
.stats-row {
  display: flex;
  gap: 24px;
}

.stat-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--color-white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 179, 0, 0.3);
}

.stat-success {
  border-bottom: 3px solid var(--color-orange);
}

.stat-warning {
  border-bottom: 3px solid var(--color-navy);
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 24px;
}

.stat-success .stat-icon-wrapper {
  background-color: rgba(242, 179, 0, 0.08);
  color: var(--color-orange-dark);
}

.stat-warning .stat-icon-wrapper {
  background-color: rgba(15, 23, 42, 0.06);
  color: var(--color-navy);
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.08) rotate(-5deg);
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-navy);
  line-height: 1.1;
}

.stat-success .stat-number {
  color: var(--color-orange);
}

.stat-warning .stat-number {
  color: var(--color-navy);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray);
  line-height: 1.3;
}

/* Contact Form Card */
.contact-form-column {
  display: flex;
}

.contact-form-card {
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.contact-form-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.contact-form-card .card-header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.contact-form-card .card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
}

.header-form-icon {
  font-size: 28px;
  color: var(--color-orange);
  margin-bottom: 12px;
  display: inline-block;
  animation: paperPlaneFloat 3s ease-in-out infinite;
}

@keyframes paperPlaneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(-5deg);
  }
}

.contact-form-card .card-header h3 {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-form-card .card-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-form {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 18px;
}

.form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy-light);
}

.required {
  color: var(--color-red);
  margin-left: 2px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 14px;
  transition: var(--transition);
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px 14px 46px;
  font-family: var(--font-body);
  font-size: 13.5px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-navy);
  background-color: var(--color-bg-light);
  transition: var(--transition);
}

.contact-form textarea {
  padding-left: 16px;
  resize: vertical;
  min-height: 90px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(242, 179, 0, 0.12);
}

.contact-form input:focus+.input-icon {
  color: var(--color-orange-dark);
  transform: scale(1.05);
}

.button-submit {
  width: 100%;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  color: var(--color-navy);
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(242, 179, 0, 0.2);
  margin-top: 10px;
}

.button-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 179, 0, 0.35);
  background: linear-gradient(90deg, var(--color-orange-dark) 0%, var(--color-orange) 100%);
}

.button-submit i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.button-submit:hover i {
  transform: translate(3px, -3px);
}

.button-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* AJAX Message Responses */
.form-response {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  animation: fadeIn 0.3s ease;
}

.form-response.success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-response.error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   5.5. PARTNERS MARQUEE SLIDER
   ========================================================================== */
.partners-section {
  padding-top: 24px;
  padding-bottom: 36px;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.partners-slider-wrapper {
  overflow: hidden;
  padding-block: 20px;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

/* Horizontal fade edge effect */
.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.partners-slider-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-light) 0%, transparent 100%);
}

.partners-slider-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg-light) 0%, transparent 100%);
}

.partners-marquee {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marqueeLoop 24s linear infinite;
  align-items: center;
}

@keyframes marqueeLoop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Pause on Hover */
.partners-slider-wrapper:hover .partners-marquee {
  animation-play-state: paused;
}

.partner-logo-item {
  width: 180px;
  height: 80px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}

.partner-logo-item:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 179, 0, 0.4);
  box-shadow: var(--shadow-md);
}

/* Image Logos Styling */
.partner-logo-img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  opacity: 0.9;
  transition: var(--transition);
}

.partner-logo-item:hover .partner-logo-img {
  opacity: 1;
}

/* Vector Logos Styling */
.partner-logo-text {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.9;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-logo-item:hover .partner-logo-text {
  opacity: 1;
}

/* 1. DHL Logo */
.dhl-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: #d00000; /* DHL Red */
  text-shadow: 2px 2px 0 #ffcc00; /* DHL Yellow background style shadow */
}

/* 2. FedEx Logo */
.fedex-logo {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -1.2px;
  color: #4d148c; /* FedEx Purple */
}

.fedex-logo span {
  color: #ff6600; /* FedEx Orange */
  transition: var(--transition);
}

/* 3. UPS Logo */
.ups-logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #351c15; /* UPS Brown */
}

.ups-logo i {
  font-size: 14px;
  color: #ffb500; /* UPS Gold Shield */
  transition: var(--transition);
}

/* 4. Viettel Post Logo */
.viettel-logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.5px;
  color: #008080; /* Teal brand */
}

.viettel-logo span {
  font-weight: 900;
  color: #e50914; /* Red brand */
  transition: var(--transition);
}

/* 5. VNPost Logo */
.vnpost-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #005bae; /* Blue brand */
}

.vnpost-logo span {
  color: #ffb800; /* Yellow brand */
  transition: var(--transition);
}

.vnpost-logo i {
  font-size: 13px;
  color: inherit;
}

/* 6. EMS Logo */
.ems-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 19px;
  letter-spacing: -0.3px;
  color: #00529b; /* EMS Blue */
}

/* ==========================================================================
   6. FAQ ACCORDION (Collapsibles)
   ========================================================================== */
.faq-section {
  padding-top: 24px;
  padding-bottom: 36px;
  background-color: var(--color-white);
}

.faq-accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.3);
}

.accordion-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.5);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.accordion-item.active .accordion-header {
  background-color: rgba(249, 115, 22, 0.02);
}

.accordion-q-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-navy);
  line-height: 1.5;
  transition: var(--transition);
}

.accordion-icon {
  color: var(--color-orange);
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  background: rgba(249, 115, 22, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--color-white);
  background-color: var(--color-red);
}

.accordion-item.active .accordion-q-text {
  color: var(--color-red);
}

.accordion-body {
  display: none;
  border-top: 1px solid var(--color-border);
  background-color: #fafbfc;
}

.accordion-content {
  padding: 22px 24px;
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER SECTION (Yellow/Orange Scheme)
   ========================================================================== */
/* ==========================================================================
   FOOTER SECTION (Modern Dark Navy Scheme)
   ========================================================================== */
.site-footer {
  background-color: var(--color-navy);
  color: #94a3b8;
  padding-top: 50px;
  border-top: 4px solid var(--color-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Footer Brand styling */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.footer-brand-logo-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 0;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: -0.2px;
}

.footer-about-text {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* Column titles */
.footer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 28px;
  height: 2px;
  background-color: var(--color-orange);
}

/* Links List */
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list a {
  font-size: 13.5px;
  font-weight: 500;
  color: #94a3b8;
  padding-left: 0;
  display: inline-block;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--color-orange);
  transform: translateX(4px);
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
}

.contact-list-icon {
  color: var(--color-orange);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list a {
  font-weight: 500;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--color-orange);
}

/* Copyright footer bar */
.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 16px;
  font-size: 12.5px;
  font-weight: 500;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.15);
}

.copyright-bar-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright-text {
  opacity: 0.65;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & MOBILE MENU
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-slider-section {
    height: auto !important;
    min-height: auto;
    padding-block: 0;
    overflow: visible;
  }

  .hero-slider {
    height: auto;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  .hero-slide.active {
    position: relative;
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    padding-block: 40px;
  }
 
  .hero-slide-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
 
  .hero-text-col {
    max-width: 100%;
    margin-inline: auto;
    position: relative;
    z-index: 5;
    order: 2;
  }
 
  .hero-actions {
    justify-content: center;
    margin-bottom: 0;
  }

  .hero-mobile-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .trust-badge-item {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .trust-badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    border-color: rgba(245, 130, 32, 0.2);
  }

  .trust-badge-item .badge-icon {
    font-size: 16px;
    color: var(--color-orange);
    margin-bottom: 6px;
    background-color: rgba(245, 130, 32, 0.08);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trust-badge-item .badge-icon.text-warning {
    color: #fbbf24;
    background-color: rgba(251, 191, 36, 0.08);
  }

  .trust-badge-item .badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .trust-badge-item .badge-info strong {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
  }

  .trust-badge-item .badge-info span {
    font-size: 10px;
    color: var(--color-gray);
    font-weight: 500;
    white-space: nowrap;
  }

  @media (max-width: 480px) {
    .hero-mobile-trust-badges {
      grid-template-columns: 1fr;
      gap: 8px;
      margin-top: 20px;
    }

    .trust-badge-item {
      flex-direction: row;
      align-items: center;
      text-align: left;
      padding: 10px 16px;
      gap: 12px;
      justify-content: flex-start;
    }

    .trust-badge-item .badge-icon {
      margin-bottom: 0;
      width: 32px;
      height: 32px;
      font-size: 14px;
    }

    .trust-badge-item .badge-info {
      flex-direction: row;
      align-items: center;
      gap: 6px;
    }

    .trust-badge-item .badge-info strong {
      font-size: 13.5px;
    }

    .trust-badge-item .badge-info span {
      font-size: 12px;
    }
  }
 
  .hero-image-col {
    display: none !important;
  }
 
  .hero-image-wrapper {
    position: relative;
    width: 160px;
    aspect-ratio: 1.15;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.1));
  }
 
  .hero-image-col .floating-badge {
    display: none;
  }

  .nav-bar {
    padding-block: 16px;
  }

  .site-header nav {
    display: none;
  }

  .site-header nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    border-bottom: 2px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    padding: 16px 0;
    animation: slideDownMenu 0.3s ease;
  }

  @keyframes slideDownMenu {
    from {
      transform: translateY(-10px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .site-header nav.active .menu {
    flex-direction: column;
    padding-inline: 16px;
    gap: 0;
  }

  .site-header nav.active .menu a {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .site-header nav.active .menu li:last-child a {
    border-bottom: none;
  }

  .site-header nav.active .menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    margin: 0;
    min-width: 0;
    width: 100%;
    display: block;
  }

  .site-header nav.active .menu .sub-menu a {
    padding: 10px 16px;
    font-size: 13px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  }

  .site-header nav.active .menu .menu-item-has-children > a::before {
    display: none;
  }

  .menu-toggle {
    display: flex;
    order: 2;
  }

  .menu-toggle.active .bar-top {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active .bar-middle {
    opacity: 0;
  }

  .menu-toggle.active .bar-bottom {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-actions {
    margin-left: auto;
    order: 1;
  }

  /* Grid Layout Resets */
  .package-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }

  .package-card-image-wrapper {
    height: 180px !important;
  }

  .package-card-content {
    padding: 20px !important;
  }

  .why-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .intro-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 36px;
  }
}

@media (max-width: 768px) {
  .package-grid-container {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 16px !important;
    padding-bottom: 24px !important;
    padding-inline: 16px !important;
    margin-inline: -16px !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-padding-inline: 16px !important;
  }

  .package-grid-container::-webkit-scrollbar {
    display: none !important;
  }

  .package-grid-card {
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
    margin-bottom: 8px !important;
  }

  .packages-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
  }

  .packages-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .packages-carousel-dot.active {
    background-color: var(--color-orange);
    width: 20px;
    border-radius: 4px;
  }

  .package-card-image-wrapper {
    height: 200px !important;
  }

  .top-bar {
    display: none;
  }

  .header-actions .button-ghost-header {
    display: none;
  }

  .hero-slider-section {
    height: auto !important;
    min-height: auto !important;
  }

  .hero-image-col {
    margin-bottom: 10px;
  }

  .hero-image-wrapper {
    width: 140px !important;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .intro-split-layout {
    padding: 36px 24px;
    gap: 32px;
  }

  .intro-right-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .intro-feature-card {
    padding: 24px 20px;
  }

  .intro-actions {
    width: 100%;
  }

  .intro-actions .button {
    width: 100%;
    justify-content: center;
  }

  .services-gallery-grid {
    grid-template-columns: 1fr;
  }

  .faq-accordion-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .stats-row .stat-card {
    padding: 16px 12px !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .stats-row .stat-icon-wrapper {
    width: 46px !important;
    height: 46px !important;
    border-radius: 10px !important;
    font-size: 18px !important;
  }

  .stats-row .stat-number {
    font-size: 20px !important;
  }

  .stats-row .stat-label {
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  .package-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  .footer-col-brand,
  .footer-col-contact {
    grid-column: span 2;
  }

  .footer-col-links,
  .footer-col-policy {
    grid-column: span 1;
  }
}

/* ==========================================================================
   FLOATING CONTACT BUTTONS (Zalo, Messenger, WhatsApp, Telegram)
   ========================================================================== */
.tsts-floating-contacts {
  position: fixed;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  align-items: center;
}

.tsts-floating-contacts.position-bottom-right {
  right: 24px;
}

.tsts-floating-contacts.position-bottom-left {
  left: 24px;
}

/* Floating Contact Button Base */
.floating-contact-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white) !important;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s var(--transition), opacity 0.3s, visibility 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.floating-contact-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Zalo SVG Icon */
.zalo-svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
}

/* Ring ripple animation on the buttons */
.btn-ripple {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulseRipple 2s infinite;
  pointer-events: none;
}

@keyframes pulseRipple {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Colors for each platform */
.item-zalo {
  background-color: #0068ff;
}

.item-messenger {
  background: linear-gradient(135deg, #0084ff 0%, #a200ff 100%);
}

.item-whatsapp {
  background-color: #25d366;
}

.item-telegram {
  background-color: #229ed9;
}

/* Tooltip text styling */
.floating-contact-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  padding: 6px 12px;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Position tooltip based on wrapper alignment */
.tsts-floating-contacts.position-bottom-right .floating-contact-btn::after {
  right: 70px;
}

.tsts-floating-contacts.position-bottom-left .floating-contact-btn::after {
  left: 70px;
}

.floating-contact-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

/* COLLAPSIBLE / MENU TOGGLE MECHANISM */

/* Trigger Button Base */
.floating-contact-trigger {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-orange);
  color: var(--color-navy) !important;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, color 0.3s;
  cursor: pointer;
  z-index: 10;
}

.floating-contact-trigger:hover {
  transform: scale(1.08);
  background-color: var(--color-orange-dark);
}

.floating-contact-trigger .close-icon {
  display: none;
}

/* Hide menu items by default if toggle exists */
.tsts-floating-contacts.has-toggle .floating-contact-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.7);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s, visibility 0.3s;
}

/* Expanded state for items */
.tsts-floating-contacts.has-toggle.expanded .floating-contact-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Expanded state for trigger button */
.tsts-floating-contacts.expanded .floating-contact-trigger {
  background-color: var(--color-red);
  color: var(--color-white) !important;
}

.tsts-floating-contacts.expanded .floating-contact-trigger .fa-comments {
  display: none;
}

.tsts-floating-contacts.expanded .floating-contact-trigger .close-icon {
  display: block;
}

/* Staggered transition delays for opening items */
.tsts-floating-contacts.expanded .floating-contact-btn:nth-child(1) {
  transition-delay: 0.15s;
}
.tsts-floating-contacts.expanded .floating-contact-btn:nth-child(2) {
  transition-delay: 0.1s;
}
.tsts-floating-contacts.expanded .floating-contact-btn:nth-child(3) {
  transition-delay: 0.05s;
}
.tsts-floating-contacts.expanded .floating-contact-btn:nth-child(4) {
  transition-delay: 0s;
}

/* ==========================================================================
   BRANCH MAPS SECTION
   ========================================================================== */
.maps-section {
  padding-top: 24px;
  padding-bottom: 36px;
  background-color: var(--color-bg-light);
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .maps-grid {
    grid-template-columns: 1fr;
  }
  .maps-section {
    padding-top: 16px;
    padding-bottom: 28px;
  }
}

.map-card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.map-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 35, 32, 0.2);
}

.map-image-container {
  position: relative;
  height: 220px;
  background-color: #e2e8f0;
  overflow: hidden;
}

.map-static-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  border-radius: 0 !important;
}

.map-card:hover .map-static-img {
  transform: scale(1.05);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-gray);
  gap: 12px;
  font-size: 14px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 20px;
  text-align: center;
}

.placeholder-map-icon {
  font-size: 40px;
  color: var(--color-orange);
}

.map-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.map-image-container:hover .map-image-overlay {
  opacity: 1;
}

.overlay-btn {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(229, 35, 32, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(10px);
  transition: var(--transition);
}

.map-image-container:hover .overlay-btn {
  transform: translateY(0);
}

.map-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.branch-title {
  font-size: 18px;
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branch-title-icon {
  color: var(--color-red);
  font-size: 16px;
}

.branch-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.branch-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-navy-light);
  line-height: 1.5;
}

.info-icon {
  color: var(--color-orange);
  font-size: 14px;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.info-text {
  flex-grow: 1;
}

.branch-phone-link {
  font-weight: 700;
  color: var(--color-red);
  transition: var(--transition);
}

.branch-phone-link:hover {
  color: var(--color-orange);
}

.button-map-directions {
  width: 100%;
  color: var(--color-red);
  background-color: transparent;
  border: 2px solid var(--color-orange);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-directions-icon {
  font-size: 15px;
  transition: var(--transition);
}

.button-map-directions:hover {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(229, 35, 32, 0.35);
  transform: translateY(-2px);
}

.button-map-directions:hover .btn-directions-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   6. ABOUT PAGE TEMPLATE
   ========================================================================== */
.about-page {
  background-color: var(--color-white);
}

/* 6.1 ABOUT HERO SECTION */
.about-hero {
  position: relative;
  height: 280px;
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 2;
}

.about-hero-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.about-hero-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* 6.2 ABOUT INTRO SECTION */
.about-intro-section {
  padding: 80px 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-pretitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-section-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.4;
}

.title-divider-left {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  margin: 20px 0 28px;
  border-radius: 1.5px;
}

.about-text-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-gray-dark);
}

.about-text-desc p {
  margin-bottom: 16px;
}

.about-intro-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1.15;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
}

.about-image-hexagon-border {
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
}

.about-image-inner-frame {
  position: absolute;
  inset: 4px;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 2;
  background-color: var(--color-white);
  transform: translateZ(0);
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-inner-frame:hover .about-main-img {
  transform: scale(1.06);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-size: 80px;
}

/* 6.3 CORE VALUES */
.about-values-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
  position: relative;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background-color: var(--color-white);
  padding: 45px 35px 35px 35px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-red) 100%);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
  border-color: rgba(242, 179, 0, 0.25);
}

.value-card:hover::before {
  width: 100%;
}

.value-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: rgba(15, 23, 42, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.value-card:hover .value-number {
  color: rgba(242, 179, 0, 0.07);
  transform: scale(1.08);
}

.value-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(242, 179, 0, 0.06);
  color: var(--color-orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(242, 179, 0, 0.3);
  transform: translateY(-2px);
}

.value-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-navy);
  margin-top: 24px;
  margin-bottom: 0;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.value-card-divider {
  width: 30px;
  height: 3px;
  background-color: var(--color-orange);
  margin-top: 14px;
  margin-bottom: 16px;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover .value-card-divider {
  width: 60px;
  background-color: var(--color-red);
}

.value-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-gray-dark);
  margin: 0;
}


/* 6.4 STATS BAND */
.about-stats-band {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 50px 0;
  color: var(--color-white);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item .stat-number {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 6.5 CTA SECTION */
.about-cta-section {
  padding: 80px 0;
  background-color: var(--color-white);
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 15px;
  color: var(--color-gray-dark);
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

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

.about-cta-section .button-outline-light {
  color: var(--color-navy);
  border: 1.5px solid var(--color-navy);
}

.about-cta-section .button-outline-light:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

/* 6.6 BUSINESS PRINCIPLES SECTION */
.about-principles-section {
  padding: 80px 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.principle-item {
  display: flex;
  gap: 20px;
  background-color: var(--color-white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.principle-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange-light);
}

.principle-icon-wrapper {
  flex-shrink: 0;
}

.principle-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(242, 179, 0, 0.08);
  color: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.principle-item:hover .principle-icon {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.principle-content {
  flex-grow: 1;
}

.principle-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.principle-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

/* 6.7 DEVELOPMENT TIMELINE SECTION */
.about-timeline-section {
  padding: 80px 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--color-orange) 0%, var(--color-red) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
}

.timeline-item::after {
  content: "";
  display: table;
  clear: both;
}

.timeline-item-left {
  left: 0;
  padding-right: 40px;
  text-align: right;
}

.timeline-item-right {
  left: 50%;
  padding-left: 40px;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 20px;
  width: 16px;
  height: 16px;
  background-color: var(--color-white);
  border: 3px solid var(--color-orange);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(242, 179, 0, 0.15);
  transition: all 0.3s ease;
}

.timeline-item-left .timeline-dot {
  right: -8px;
}

.timeline-item-right .timeline-dot {
  left: -8px;
}

.timeline-item:hover .timeline-dot {
  background-color: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 0 0 6px rgba(229, 35, 32, 0.25);
  transform: scale(1.1);
}

.timeline-content-box {
  background-color: var(--color-white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  width: 100%;
  max-width: 390px;
  transition: all 0.3s ease;
  text-align: left;
}

.timeline-content-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange-light);
}

.timeline-year {
  display: inline-block;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-weight: 800;
  font-size: 13px;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.timeline-item:hover .timeline-year {
  background-color: var(--color-red);
}

.timeline-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.timeline-item-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

/* Timeline Responsive */
@media (max-width: 767px) {
  .timeline-line {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    text-align: left;
    padding-left: 45px;
    padding-right: 0;
    margin-bottom: 35px;
  }
  .timeline-item-right {
    left: 0;
  }
  .timeline-item-left .timeline-dot,
  .timeline-item-right .timeline-dot {
    left: 12px;
  }
  .timeline-content-box {
    max-width: 100%;
  }
}

/* ==========================================================================
   7. CONTACT PAGE TEMPLATE STYLES
   ========================================================================== */
.contact-page {
  background-color: var(--color-white);
}

/* 7.1 CONTACT HERO */
.contact-hero {
  position: relative;
  height: 320px;
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--color-white);
  padding-top: 80px; /* Offset fixed header if any */
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
  z-index: 1;
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-title {
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 900;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  letter-spacing: -1px;
  line-height: 1.2;
}

.contact-hero-subtitle {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 7.2 CONTACT SPLIT SECTION */
.contact-split-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
}

.contact-header-top {
  max-width: 800px;
  margin-bottom: 50px;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .contact-split-grid {
    align-items: stretch;
  }
  .contact-info-column {
    display: flex;
    flex-direction: column;
  }
  .contact-cards-stack {
    height: 100%;
    justify-content: space-between;
    gap: 20px;
  }
  .page-contact-form-card {
    height: 100%;
  }
}

.contact-pretitle {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-orange);
  margin-bottom: 12px;
}

.contact-section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--color-navy);
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.3;
}

.contact-section-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-gray-dark);
  margin-top: 20px;
  margin-bottom: 0;
}

/* 7.3 INFO CARDS STACK */
.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  background-color: var(--color-white);
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  border-color: rgba(242, 179, 0, 0.25);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(242, 179, 0, 0.06);
  color: var(--color-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);
  color: var(--color-white);
  box-shadow: 0 6px 15px rgba(242, 179, 0, 0.25);
}

.contact-card-body {
  flex-grow: 1;
}

.contact-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
  margin-top: 0;
}

.contact-card-body p {
  font-size: 14px;
  color: var(--color-gray-dark);
  margin: 0;
  line-height: 1.5;
}

.contact-card-body a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card-body a:hover {
  color: var(--color-orange);
}

.contact-card-link {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-orange) !important;
  margin-top: 6px;
}

.contact-card-link:hover {
  color: var(--color-red) !important;
}

.contact-phone-val a {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-orange) !important;
}

.contact-zalo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #0068ff;
  color: var(--color-white) !important;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 8px;
  transition: background-color 0.3s ease;
}

.contact-zalo-btn:hover {
  background-color: #0054d3;
}

.contact-sub-desc {
  display: block;
  font-size: 12px;
  color: var(--color-gray);
  margin-top: 4px;
}

.contact-social-channels {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.social-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-white) !important;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-channel-btn i {
  font-size: 12px;
}

.social-channel-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.social-channel-btn.zalo {
  background-color: #0068ff;
}

.social-channel-btn.messenger {
  background: linear-gradient(135deg, #006aff 0%, #00c6ff 100%);
}

.social-channel-btn.telegram {
  background-color: #0088cc;
}

.social-channel-btn.whatsapp {
  background-color: #25d366;
}

/* Card 5: Service Commitments styling */
.contact-commit-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-commit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--color-gray-dark);
  line-height: 1.5;
}

.contact-commit-list li i {
  color: #10b981; /* Emerald green */
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-commit-list li strong {
  color: var(--color-navy);
  font-weight: 700;
}

/* 7.4 CALLBACK FORM CARD */
.page-contact-form-card {
  background-color: var(--color-white);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-red) 100%);
}

.page-contact-form-card .contact-form-header {
  margin-bottom: 30px;
}

.page-contact-form-card .contact-form-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy);
  margin-top: 0;
  margin-bottom: 8px;
}

.page-contact-form-card .contact-form-header p {
  font-size: 13.5px;
  color: var(--color-gray-dark);
  line-height: 1.5;
  margin: 0;
}

.page-contact-form-card .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-contact-form-card .form-group {
  margin-bottom: 20px;
}

.page-contact-form-card .form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-navy-light);
  margin-bottom: 6px;
}

.page-contact-form-card .form-group label .required {
  color: var(--color-red);
}

.page-contact-form-card .input-wrapper {
  position: relative;
}

.page-contact-form-card .input-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray);
  font-size: 15px;
  transition: color 0.3s ease;
}

.page-contact-form-card .textarea-wrapper i {
  top: 18px;
  transform: none;
}

.page-contact-form-card .input-wrapper input,
.page-contact-form-card .input-wrapper textarea {
  width: 100%;
  padding: 12px 16px 12px 46px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-navy);
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: var(--color-white);
}

.page-contact-form-card .input-wrapper input:focus,
.page-contact-form-card .input-wrapper textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(242, 179, 0, 0.1);
  outline: none;
}

.page-contact-form-card .input-wrapper input:focus + i,
.page-contact-form-card .input-wrapper textarea:focus + i {
  color: var(--color-orange);
}

.page-contact-form-card .form-response-msg {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-contact-form-card .form-response-msg.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.page-contact-form-card .form-response-msg.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Contact Form Trust Footer styling */
.page-contact-form-card .contact-form-trust-footer {
  margin-top: auto;
  padding-top: 35px;
}

.form-trust-divider {
  height: 1px;
  background-color: var(--color-border);
  margin-bottom: 24px;
  border: none;
}

.form-trust-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-trust-title i {
  color: var(--color-orange);
  font-size: 14px;
}

.form-trust-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 18px;
}

.trust-step {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.trust-step .step-num {
  width: 18px;
  height: 18px;
  background-color: rgba(242, 179, 0, 0.1);
  color: var(--color-orange);
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-step .step-info h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 3px 0;
}

.trust-step .step-info p {
  font-size: 11px;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.3;
}

.trust-security-note {
  font-size: 11px;
  color: var(--color-gray);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  text-align: center;
}

.trust-security-note i {
  color: #10b981; /* green */
}

@media (max-width: 480px) {
  .form-trust-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* 7.5 BRANCHES SECTION */
.contact-branches-section {
  padding: 100px 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.contact-branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.branch-card {
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
  border-color: var(--color-orange-light);
}

.branch-card-image {
  position: relative;
  height: 170px;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.branch-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.branch-card:hover .branch-card-image img {
  transform: scale(1.06);
}

.branch-no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(15, 23, 42, 0.08);
}

.branch-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.branch-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 0;
  margin-bottom: 16px;
}

.branch-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.branch-info-list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--color-gray-dark);
  line-height: 1.5;
  align-items: flex-start;
}

.branch-info-list li i {
  color: var(--color-orange);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.branch-info-list li a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.branch-info-list li a:hover {
  color: var(--color-orange);
}

.branch-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1.5px solid var(--color-border);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  background-color: var(--color-white);
}

.branch-map-btn:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-navy);
  box-shadow: 0 4px 10px rgba(242, 179, 0, 0.2);
}

/* 7.5.5 CONTACT FAQ SECTION */
.contact-faq-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}

.contact-faq-accordion {
  max-width: 850px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-faq-accordion .accordion-item {
  background-color: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-faq-accordion .accordion-item:hover {
  border-color: rgba(242, 179, 0, 0.25);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}

.contact-faq-accordion .accordion-item.active {
  border-color: var(--color-orange);
  box-shadow: 0 10px 30px rgba(242, 179, 0, 0.06);
}

.contact-faq-accordion .accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: none;
  border: none;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-family: inherit;
}

.contact-faq-accordion .accordion-header:hover {
  color: var(--color-orange);
}

.contact-faq-accordion .accordion-item.active .accordion-header {
  color: var(--color-orange);
  border-bottom: 1px solid var(--color-border);
}

.contact-faq-accordion .accordion-icon {
  font-size: 12px;
  color: var(--color-gray);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.contact-faq-accordion .accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--color-orange);
}

.contact-faq-accordion .accordion-body {
  transition: all 0.3s ease;
}

.contact-faq-accordion .accordion-content {
  padding: 24px 28px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-dark);
  background-color: rgba(242, 179, 0, 0.01);
}

/* 7.6 RESPONSIVE STYLES */
@media (max-width: 991px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .contact-hero {
    height: 260px;
    padding-top: 60px;
  }
  .contact-split-section,
  .contact-branches-section,
  .contact-faq-section {
    padding: 60px 0;
  }
  .contact-branches-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-faq-accordion .accordion-header {
    padding: 16px 20px;
    font-size: 14.5px;
  }
  .contact-faq-accordion .accordion-content {
    padding: 18px 20px;
  }
  .page-contact-form-card {
    padding: 30px 20px;
  }
  .page-contact-form-card .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================
   7.7 TIN TỨC / BLOG PAGE STYLES
   ========================================== */
.blog-page-wrapper {
  background-color: #f8fafc;
  padding-bottom: 80px;
}

/* Blog Hero Section */
.blog-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--color-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242, 179, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.blog-hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(242, 179, 0, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(242, 179, 0, 0.15);
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.blog-hero-desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Featured Post Section */
.featured-post-section {
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}

.featured-post-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.featured-post-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-post-card:hover .featured-post-image img {
  transform: scale(1.04);
}

.featured-category-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(230, 28, 41, 0.2);
  z-index: 2;
}

.featured-post-content {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--color-gray-dark);
}

.featured-post-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-post-meta .meta-item i {
  color: var(--color-orange);
}

.meta-badge-mock {
  font-size: 10px;
  font-weight: 800;
  color: var(--color-navy-light);
  background-color: rgba(15, 23, 42, 0.05);
  border: 1px dashed rgba(15, 23, 42, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-post-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.featured-post-title a {
  color: var(--color-navy);
  transition: color 0.2s ease;
}

.featured-post-title a:hover {
  color: var(--color-red);
}

.featured-post-excerpt {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-gray-dark);
  margin-bottom: 28px;
}

.button-primary-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 4px 14px rgba(230, 28, 41, 0.2);
  transition: all 0.3s ease;
}

.button-primary-blog:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 28, 41, 0.35);
  color: var(--color-white);
}

.button-primary-blog i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.button-primary-blog:hover i {
  transform: translateX(4px);
}

/* Grid Posts Section */
.blog-grid-section {
  padding: 0 0 80px 0;
}

/* Clean Header styles */
.blog-header-clean {
  text-align: center;
  padding: 60px 0 45px 0;
  max-width: 800px;
  margin: 0 auto;
}

.blog-badge-clean {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: rgba(242, 179, 0, 0.06);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  border: 1px solid rgba(242, 179, 0, 0.12);
}

.blog-title-clean {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.blog-desc-clean {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-gray-dark);
  margin-bottom: 24px;
  opacity: 0.85;
}

.blog-divider-clean {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  border-radius: 2px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Post News Card */
.news-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
  border-color: rgba(242, 179, 0, 0.2);
}

.news-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(230, 28, 41, 0.15);
  z-index: 2;
}

.news-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--color-gray-dark);
}

.news-card-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-card-meta .meta-item i {
  color: var(--color-orange);
}

.news-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  min-height: 48px;
}

.news-card-title a {
  color: var(--color-navy);
  transition: color 0.2s ease;
}

.news-card-title a:hover {
  color: var(--color-red);
}

.news-card-excerpt {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-gray-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--color-navy);
  transition: all 0.2s ease;
  align-self: flex-start;
}

.read-more-link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.read-more-link:hover {
  color: var(--color-red);
}

.read-more-link:hover i {
  transform: translateX(4px);
}

/* Screen Reader Text (WordPress accessibility class to hide elements visually) */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Pagination */
.blog-pagination {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.blog-pagination .pagination {
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 6px;
  border-radius: 10px;
  background-color: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
  text-decoration: none;
  cursor: pointer;
}

.blog-pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(229, 35, 32, 0.2);
}

.blog-pagination .page-numbers:hover:not(.current) {
  background-color: var(--color-white);
  border-color: var(--color-orange);
  color: var(--color-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.05);
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  padding: 0 18px;
  display: inline-flex;
  gap: 8px;
  border-color: rgba(15, 23, 42, 0.08);
  font-size: 13.5px;
}

.blog-pagination .page-numbers.prev:hover,
.blog-pagination .page-numbers.next:hover {
  border-color: var(--color-orange);
  color: var(--color-red);
}

.blog-pagination .page-numbers.dots {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-gray-dark);
  cursor: default;
  box-shadow: none;
}

/* Responsive Blog Styles */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-post-card {
    grid-template-columns: 1fr;
  }
  .featured-post-image {
    min-height: 300px;
  }
  .featured-post-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 0;
  }
  .blog-hero-title {
    font-size: 32px;
  }
  .blog-hero-desc {
    font-size: 14px;
  }
  .featured-post-section {
    margin-top: -20px;
    margin-bottom: 40px;
  }
  .featured-post-title {
    font-size: 22px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .news-card-body {
    padding: 20px;
  }
}

/* ==========================================================================
   PROCESS PAGE CLEAN (QUY TRÌNH MỚI - COMPACT & MODERN)
   ========================================================================== */
.process-page-clean {
  background-color: var(--color-bg-light);
  padding-bottom: 60px;
}

/* 1. Compact Header */
.process-clean-header {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-light) 100%);
  text-align: left;
}

.process-clean-header .process-pretitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.process-clean-header .process-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.process-clean-header .title-divider-left {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  margin: 0 0 20px 0;
  border-radius: 2px;
}

.process-clean-header .process-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--color-gray);
  max-width: 800px;
  line-height: 1.6;
}

/* 2. Process Flow Grid */
.process-flow-section {
  padding: 20px 0 60px;
}

.process-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

/* Flow Card */
.process-flow-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 30px 20px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  z-index: 2;
}

/* Step Badge */
.process-flow-card .step-badge {
  position: absolute;
  top: -14px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

/* Icon Box */
.process-flow-card .card-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-red);
  margin-bottom: 20px;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.process-flow-card .card-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 42px; /* Ensure alignment */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.process-flow-card .card-step-desc {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
}

/* Step Connector (Desktop Arrow) */
.process-flow-card .step-connector {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
}

/* Hover Animations */
.process-flow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(229, 35, 32, 0.3);
}

.process-flow-card:hover .step-badge {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  transform: scale(1.05);
}

.process-flow-card:hover .card-icon-box {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(229, 35, 32, 0.2);
}

.process-flow-card:hover .card-step-title {
  color: var(--color-red);
}

/* 3. Compact CTA */
.process-compact-cta {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  margin-top: 20px;
}

.cta-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.process-compact-cta .cta-text-col {
  flex: 1;
}

.process-compact-cta .cta-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.process-compact-cta .cta-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.5;
}

.process-compact-cta .cta-btn-col {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.process-compact-cta .button-outline-dark {
  color: var(--color-navy);
  background: transparent;
  border: 2px solid var(--color-border);
}

.process-compact-cta .button-outline-dark:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-navy);
  transform: translateY(-2px);
}

/* Responsive Grid */
@media (max-width: 1199px) {
  .process-flow-grid {
    gap: 16px;
  }
  .process-flow-card .step-connector {
    right: -14px;
  }
}

@media (max-width: 991px) {
  .process-flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .process-flow-card .step-connector {
    display: none; /* Hide arrows when columns wrap */
  }

  .cta-flex-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .process-compact-cta .cta-btn-col {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .process-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-flow-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .process-flow-card {
    padding: 24px 16px 20px;
  }
  
  .process-flow-card .card-step-title {
    min-height: auto;
  }

  .process-compact-cta .cta-btn-col {
    flex-direction: column;
    width: 100%;
  }

  .process-compact-cta .cta-btn-col .button {
    width: 100%;
  }
}

/* ==========================================================================
   BRANCH SINGLE PAGE (CHI NHÁNH) STYLES
   ========================================================================== */
.branch-single-page {
  background-color: var(--color-bg-light);
  padding-bottom: 80px;
}

.branch-single-header {
  padding: 60px 0 30px;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-light) 100%);
  text-align: left;
}

.branch-single-header .branch-pretitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.branch-single-header .branch-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.branch-single-header .title-divider-left {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  margin: 0 0 20px 0;
  border-radius: 2px;
}

/* 2. Layout Grid */
.branch-single-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Content Column */
.branch-main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Quick Info Box */
.branch-quick-info {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  background-color: var(--color-white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.branch-quick-info .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.branch-quick-info .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(229, 35, 32, 0.08);
  border: 1px solid rgba(229, 35, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-red);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.branch-quick-info .info-text h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.branch-quick-info .info-text p {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.5;
}

.branch-quick-info .info-text p a {
  color: var(--color-red);
  font-weight: 700;
  font-family: var(--font-heading);
}

.branch-quick-info .info-text p a:hover {
  color: var(--color-orange-dark);
}

/* Editor HTML content styling */
.branch-editor-content {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  color: var(--color-navy-light);
}

.branch-editor-content p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.branch-editor-content p:last-child {
  margin-bottom: 0;
}

/* CTA inside Main Content */
.branch-internal-cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  padding: 35px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.branch-internal-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(229, 35, 32, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(245, 130, 32, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.branch-internal-cta h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.branch-internal-cta p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.branch-internal-cta .cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.branch-internal-cta .button-outline-light {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.branch-internal-cta .button-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Sidebar Widgets */
.branch-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.branch-sidebar .sidebar-widget {
  background-color: var(--color-white);
  padding: 30px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.branch-sidebar .widget-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.branch-sidebar .widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-red);
}

/* Branches list in sidebar */
.sidebar-branches-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-branches-links li a.branch-link-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px;
  background-color: var(--color-bg-light);
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid transparent;
  transition: var(--transition);
}

.sidebar-branches-links li a.branch-link-item:hover {
  background-color: var(--color-white);
  border-color: rgba(229, 35, 32, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.sidebar-branches-links li a.branch-link-item .branch-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  transition: var(--transition);
}

.sidebar-branches-links li a.branch-link-item:hover .branch-name {
  color: var(--color-red);
}

.sidebar-branches-links li a.branch-link-item .branch-addr-sub {
  font-size: 12px;
  color: var(--color-gray);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.sidebar-branches-links li a.branch-link-item .branch-addr-sub i {
  color: var(--color-red);
  margin-top: 2px;
}

/* Online Support chat widget */
.chat-channels-widget .widget-desc {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
  margin-bottom: 20px;
}

.sidebar-chat-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-chat-buttons .chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.sidebar-chat-buttons .zalo-btn {
  background-color: rgba(0, 104, 255, 0.08);
  color: #0068ff;
  border-color: rgba(0, 104, 255, 0.15);
}

.sidebar-chat-buttons .zalo-btn:hover {
  background-color: #0068ff;
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 104, 255, 0.2);
  transform: translateY(-1px);
}

.sidebar-chat-buttons .facebook-btn {
  background-color: rgba(24, 119, 242, 0.08);
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.15);
}

.sidebar-chat-buttons .facebook-btn:hover {
  background-color: #1877f2;
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2);
  transform: translateY(-1px);
}

/* Responsive Single Branch Page */
@media (max-width: 991px) {
  .branch-single-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .branch-quick-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .branch-editor-content {
    padding: 24px 20px;
  }
  
  .branch-internal-cta {
    padding: 24px 20px;
  }
  
  .branch-internal-cta .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .branch-internal-cta .cta-btns .button {
    width: 100%;
  }
}

/* ==========================================================================
   SINGLE POST TYPOGRAPHY & SPACING (PREMIUM DESIGN FOR ARTICLES)
   ========================================================================== */
.single-post #main {
  background-color: var(--color-bg-light);
  padding-block: 60px;
}

.single-post article.post {
  max-width: 860px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 50px 45px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* Post main title */
.single-post article.post h1 {
  font-size: clamp(26px, 4vw, 35px);
  color: #0f172ac7;
  line-height: 1.5; /* Increased vertical breathing room */
  margin-bottom: 36px;
  font-weight: 700; /* 700 is cleaner and less blocky than 800 */
  letter-spacing: normal; /* Normal spacing for Vietnamese accent marks readability */
  text-align: left;
}

/* Paragraph styling */
.single-post article.post p {
  font-size: 16.5px; /* Slightly larger text for reading comfort */
  line-height: 1.95; /* Premium reading line height */
  color: #334155; /* Slate 700 for high readability */
  margin-top: 0;
  margin-bottom: 28px;
  font-family: var(--font-body);
  letter-spacing: 0.15px; /* Keep characters separated naturally */
}

/* Headings inside content */
.single-post article.post h2,
.single-post article.post h3,
.single-post article.post h4 {
  color: #0f172ac7;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.5;
  margin-top: 48px;
  margin-bottom: 22px;
  letter-spacing: normal; /* Normal spacing for Vietnamese text */
}

.single-post article.post h2 {
  font-size: clamp(22px, 3.2vw, 26px);
  border-left: 4px solid var(--color-orange);
  padding-left: 14px;
}

.single-post article.post h3 {
  font-size: clamp(19px, 2.5vw, 22px);
  color: var(--color-red);
}

.single-post article.post h4 {
  font-size: clamp(17px, 2vw, 19px);
}

/* Lists styling */
.single-post article.post ul,
.single-post article.post ol {
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 24px;
}

.single-post article.post li {
  font-size: 16.5px;
  line-height: 1.95;
  color: #334155;
  margin-bottom: 14px;
  position: relative;
  letter-spacing: 0.15px;
}

/* Bold text */
.single-post article.post strong {
  color: #0f172ac7;
  font-weight: 700;
}

/* Links inside posts */
.single-post article.post a {
  color: var(--color-red);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition);
}

.single-post article.post a:hover {
  color: var(--color-orange);
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .single-post #main {
    padding-block: 30px;
  }
  .single-post article.post {
    padding: 30px 20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE OPTIMIZATIONS (AUDITED OVERRIDES)
   ========================================================================== */

/* 1. Mobile flags bar selection menu */
.mobile-flags-bar {
  display: none;
}

@media (max-width: 1024px) {
  .site-header nav.active .mobile-flags-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-top: 1px solid var(--color-border);
    margin-top: 12px;
    width: 100%;
  }
  .mobile-flags-bar .mobile-flags-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-navy);
  }
  .mobile-flags-bar .top-bar-flags {
    display: flex;
    gap: 12px;
    font-size: 20px;
  }
  .mobile-flags-bar .flag-icon {
    cursor: pointer;
    transition: var(--transition);
  }
  .mobile-flags-bar .flag-icon:hover {
    transform: scale(1.15);
  }
}

/* 2. Header CTA buttons layout on Mobile */
@media (max-width: 768px) {
  .header-actions {
    display: none !important;
  }
}

/* 3. Footer grid layout and stats cards on smaller screens */
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-col-brand,
  .footer-col-contact,
  .footer-col-links,
  .footer-col-policy {
    grid-column: span 1 !important;
  }

  .stats-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .stats-row .stat-card {
    padding: 20px 16px !important;
    gap: 16px !important;
  }
  .stats-row .stat-icon-wrapper {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
    font-size: 20px !important;
  }
  .stats-row .stat-number {
    font-size: 24px !important;
  }
  .stats-row .stat-label {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }
}

/* 4. Overflow protection inside single articles */
.single-post article.post img,
.single-post article.post iframe,
.single-post article.post video {
  max-width: 100% !important;
  height: auto !important;
}
.single-post article.post table {
  width: 100% !important;
  display: block !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* ==========================================================================
   GENERIC PAGES (page-entry & entry-content PREMIUM DESIGN)
   ========================================================================== */
.page-entry {
  background-color: var(--color-bg-light);
  padding-block: 60px;
  min-height: 50vh;
}
.page-entry .page-entry__header {
  margin-bottom: 30px;
}
.page-entry .page-entry__header h1 {
  font-size: clamp(28px, 4.5vw, 37px);
  color: #0f172ac7;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
}
.page-entry .entry-content {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
  background-color: var(--color-white);
  padding: 50px 45px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.page-entry .entry-content p {
  font-size: 16.5px;
  line-height: 1.95;
  color: #334155; /* Slate 700 */
  margin-bottom: 28px;
  letter-spacing: 0.15px;
}
.page-entry .entry-content h2,
.page-entry .entry-content h3,
.page-entry .entry-content h4 {
  color: #0f172ac7;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.5;
  margin-top: 48px;
  margin-bottom: 22px;
  letter-spacing: normal;
}
.page-entry .entry-content h2 {
  font-size: clamp(22px, 3.2vw, 26px);
  border-left: 4px solid var(--color-orange);
  padding-left: 14px;
}
.page-entry .entry-content h3 {
  font-size: clamp(19px, 2.5vw, 22px);
  color: var(--color-red);
}
.page-entry .entry-content ul,
.page-entry .entry-content ol {
  margin-bottom: 28px;
  padding-left: 24px;
}
.page-entry .entry-content li {
  font-size: 16.5px;
  line-height: 1.95;
  color: #334155;
  margin-bottom: 14px;
  letter-spacing: 0.15px;
}
.page-entry .entry-content img,
.page-entry .entry-content iframe,
.page-entry .entry-content video {
  max-width: 100% !important;
  height: auto !important;
}
.page-entry .entry-content table {
  width: 100% !important;
  display: block !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Generic Page mobile overrides */
@media (max-width: 768px) {
  .page-entry {
    padding-block: 30px;
  }
  .page-entry .entry-content {
    padding: 30px 20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: 100%;
  }
}

/* 5. Mobile optimization for Welcome Intro Core Feature Cards */
@media (max-width: 768px) {
  .intro-feature-card {
    display: grid !important;
    grid-template-columns: 50px 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 16px !important;
    row-gap: 4px !important;
    align-items: start !important;
    padding: 20px 16px !important;
  }
  
  .intro-feature-icon-wrapper {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    margin-bottom: 0 !important;
    align-self: start !important;
  }
  
  .intro-feature-title {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin-bottom: 4px !important;
    font-size: 15.5px !important;
  }
  
  .intro-feature-desc {
    grid-column: 2 !important;
    grid-row: 2 !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }
}

/* 6. Mobile spacing optimization between homepage sections */
@media (max-width: 768px) {
  .packages-section,
  .services-gallery-section,
  .why-contact-section,
  .partners-section,
  .faq-section,
  .maps-section {
    padding-top: 16px !important;
    padding-bottom: 28px !important;
  }
  
  .intro-section {
    padding-bottom: 18px !important;
    margin-top: -30px !important;
  }
}

/* 7. Comparison Table mobile visual optimization */
@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 12px 6px !important; /* reduce cells horizontal/vertical padding to make space */
    font-size: 12.5px !important;
  }
  
  .comparison-table th {
    font-size: 12px !important;
  }
  
  .comparison-table th.col-highlight {
    padding-top: 24px !important; /* give space for center-aligned badge */
  }
  
  .comparison-table th.col-highlight::after {
    top: 4px !important;
    right: 50% !important;
    transform: translateX(50%) !important; /* center the 'ĐỀ XUẤT' label */
    font-size: 7.5px !important;
    padding: 1px 6px !important;
  }
  
  .cell-title {
    width: 28% !important;
    font-size: 12px !important;
    padding-left: 8px !important;
  }
  
  .cell-tsts,
  .cell-other {
    font-size: 12.5px !important;
  }
  
  .comparison-table .tsts-check-icon,
  .comparison-table .other-x-icon {
    display: block !important;
    font-size: 16px !important;
    margin: 0 auto 6px !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    float: none !important;
  }
}

/* 8. Scroll Reveal Animations (animate-up) */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-up.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 9. Premium Comparison Table Hover Styling */
.comparison-table tr:hover .cell-title {
  background-color: #f1f5f9 !important;
}

.comparison-table tr:hover .cell-tsts {
  background-color: rgba(245, 130, 32, 0.08) !important;
}

.comparison-table tr:hover .cell-other {
  background-color: #f8fafc !important;
}