@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  --primary: #E60012;
  --primary-hover: #FF4D4F;
  --primary-dark: #B8000F;
  --accent: #FFC107;
  --accent-hover: #E0A800;
  --bg-light: #F5F5F5;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --border-color: #E0E0E0;

  /* Layout tokens */
  --font-family: 'Be Vietnam Pro', sans-serif;
  --radius: 2px;
  /* Sharp technical edges */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 4px 12px rgba(255, 193, 7, 0.3);
  --shadow-danger: 0 4px 12px rgba(230, 0, 18, 0.2);
}

/* --- BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Heading hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  position: relative;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
}

.text-center h2::after,
h2.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ol,
ul {
  padding-left: 0px;
}

/* --- BUTTONS & CTAs --- */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.9rem;
}

.btn-primary-custom {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-danger);
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.35);
}

.btn-secondary-custom {
  background-color: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-secondary-custom:hover {
  background-color: var(--text-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-accent-custom {
  background-color: var(--accent);
  color: var(--text-dark);
  box-shadow: var(--shadow-accent);
}

.btn-accent-custom:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.45);
}

/* --- STRUCTURE SECTIONS --- */
section {
  padding: 6rem 0;
}

.section-bg-light {
  background-color: var(--bg-light);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow var(--transition-normal), background-color var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  border-bottom-color: transparent;
  /* background-color and backdrop-filter moved to ::before to prevent containing block issue with offcanvas */
}

.site-header.scrolled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}

.navbar-brand {
  width: 10%;
}

.navbar-brand img {
  height: 64px;
  width: auto;
  transition: height var(--transition-normal);
  display: block;
}

.site-header.scrolled .navbar-brand img {
  height: 52px;
}

.nav-link {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem !important;
  color: var(--text-dark) !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

/* Stable navbar height - prevents nav items from jumping on logo resize */
.navbar {
  min-height: 72px;
  align-items: center;
  transition: min-height var(--transition-normal);
}

.site-header.scrolled .navbar {
  min-height: 60px;
}

.navbar-collapse {
  align-items: center;
}


/* ============================================================
   MOBILE OFFCANVAS MENU — Premium Design
   ============================================================ */
.mobile-menu-offcanvas {
  width: 300px !important;
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

/* Header row */
.mobile-menu-header {
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.mobile-menu-close {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.mobile-menu-close:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* Body */
.mobile-menu-body {
  padding: 0;
  display: none !important;
  flex-direction: column;
  background: #ffffff;
}

/* Nav list */
.mobile-nav {
  flex: 1;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

/* Nav links */
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background: rgba(230, 0, 18, 0.05);
}

.mobile-nav-link.active {
  color: var(--primary);
  border-left: 3px solid var(--primary);
}

/* Chevron icon for accordion — rotates on open */
.mobile-nav-chevron {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
}

.mobile-nav-toggle:not(.collapsed) .mobile-nav-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-nav-toggle:not(.collapsed) {
  color: var(--primary);
  background: rgba(230, 0, 18, 0.05);
  border-left: 3px solid var(--primary);
}

/* Sub-menu */
.mobile-submenu {
  background: #f9f9f9;
}

.mobile-submenu-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.mobile-submenu-list li {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-submenu-list li:first-child {
  border-top: none;
}

.mobile-submenu-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem 0.8rem 2rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-submenu-list a i {
  color: var(--primary);
  font-size: 0.75rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-submenu-list a:hover {
  color: var(--primary);
  padding-left: 2.4rem;
}

/* CTA Footer */
.mobile-menu-cta {
  padding: 1.5rem;
  background: #f9f9f9;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(230, 0, 18, 0.35);
  margin-bottom: 1rem;
}

.mobile-cta-btn:hover {
  background: #ff2030;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.5);
  color: #fff;
}

.mobile-cta-contacts {
  display: flex;
  gap: 0.75rem;
}

.mobile-cta-contact {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mobile-cta-contact:hover {
  background: rgba(230, 0, 18, 0.04);
  color: var(--primary);
  border-color: rgba(230, 0, 18, 0.2);
}

.mobile-cta-contact i {
  color: var(--primary);
}

.mobile-cta-contact.zalo i {
  color: #0068ff;
}

/* Backdrop */
.offcanvas-backdrop {
  backdrop-filter: blur(2px);
}

/* Search bar on Header */
.search-box-wrapper {
  position: relative;
}

.search-trigger {
  background: none;
  border: none;
  font-size: 1.15rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.5rem;
}

.search-trigger:hover {
  color: var(--primary);
}

.header-search-form {
  display: none !important;
}

/* --- HEADER SLIDE DOWN SEARCH BAR --- */
.header-search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #1A1A1A;
  /* Màu tối sang trọng đồng bộ thương hiệu */
  z-index: -1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s, visibility 0.3s;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 3px solid var(--primary);
  /* Thanh highlight màu đỏ thương hiệu */
}

.header-search-bar.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header-search-bar .bar-search-group {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  /* Bo tròn hoàn toàn */
  padding: 0.35rem 0.35rem 0.35rem 1.5rem;
  transition: all 0.3s ease;
  width: 100%;
}

.header-search-bar .bar-search-group:focus-within {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.15);
}

.header-search-bar .search-input-icon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.15rem;
  margin-right: 0.75rem;
}

.header-search-bar .bar-search-input {
  flex: 1;
  background: none !important;
  border: none !important;
  outline: none !important;
  color: var(--bg-white) !important;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.6rem 0;
  min-width: 0;
  box-shadow: none !important;
}

.header-search-bar .bar-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.header-search-bar .btn-search-submit {
  background-color: var(--primary);
  color: var(--bg-white);
  border: none;
  padding: 0.65rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 50px;
  /* Nút tìm kiếm cũng bo tròn capsule cùng tông */
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(230, 0, 18, 0.2);
}

.header-search-bar .btn-search-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}


.header-search-bar .btn-search-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.35rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.header-search-bar .btn-search-close:hover {
  color: var(--bg-white);
  background-color: rgba(255, 255, 255, 0.08);
  transform: rotate(90deg);
}

.header-search-bar .search-suggestions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.header-search-bar .suggestion-label {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.header-search-bar .suggestion-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px dashed transparent;
}

.header-search-bar .suggestion-link:hover {
  color: var(--bg-white) !important;
  border-bottom-color: var(--bg-white);
}

@media (max-width: 991.98px) {
  .header-search-bar .container {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media (max-width: 767.98px) {
  .header-search-bar .search-input-group {
    padding-left: 0.75rem;
  }

  .header-search-bar .btn-search-submit {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .header-search-bar input[type="text"] {
    font-size: 0.95rem;
  }

  .header-search-bar .search-suggestions {
    gap: 0.5rem;
  }
}



.header-hotline {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- HERO BANNER (Asymmetric & Depth Layered) --- */
.hero-section {
  position: relative;
  background-color: var(--bg-light);
  padding: 10rem 0 6rem 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #E2E2E2;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--primary);
  display: block;
  font-weight: 900;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
  padding-left: 1.25rem;
}

/* USP badge elements */
.hero-usps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.usp-item i {
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Right side Image Overlap with HUD */
.hero-visual-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-image-bg {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-main-img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 2;
}

/* Technical HUD Cards */
.hud-card {
  position: absolute;
  background-color: var(--bg-white);
  border: 1px solid var(--text-dark);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatHUD 6s ease-in-out infinite;
}

.hud-card.hud-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.hud-card.hud-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 3s;
}

.hud-card i {
  font-size: 1.5rem;
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(230, 0, 18, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud-card-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
  color: var(--primary);
}

.hud-card-info p {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05rem;
}

@keyframes floatHUD {

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

  50% {
    transform: translateY(-10px);
  }
}

/* --- SERVICES SECTION (Sharp Cards, Real Images) --- */
.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 0, 18, 0.25);
  box-shadow: var(--shadow-md);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #e5e7eb;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  z-index: 2;
}

.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.service-card:hover .service-body h3 {
  color: var(--primary);
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-link {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link i {
  transition: var(--transition-fast);
}

.service-card:hover .service-link {
  color: var(--primary);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* --- QUICK BOOKING FORM --- */
.booking-section {
  position: relative;
  overflow: hidden;
}

.booking-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.booking-title {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-title h3 {
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.booking-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.booking-form .form-group {
  margin-bottom: 1.25rem;
}

.booking-form label {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
}

.booking-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.825rem 1rem;
  font-size: 0.95rem;
  width: 100%;
  font-family: var(--font-family);
  transition: var(--transition-fast);
}

.booking-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.08);
}

/* Invalid feedback */
.invalid-feedback-custom {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .invalid-feedback-custom {
  display: block;
}

.form-group.has-error .form-control {
  border-color: var(--primary);
  background-color: rgba(230, 0, 18, 0.02);
}

/* --- PRICE LIST --- */
.price-section {
  position: relative;
}

.price-table-wrapper {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow-x: auto;
  /* Prevent layout breakage on small screens */
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  /* Ensure structure is readable on mobile scroll */
}

/* Header Row 1: BẢNG GIÁ CHI TIẾT (Brand Red Gradient) */
.price-table .table-title-row th {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--bg-white);
  font-weight: 800;
  text-transform: uppercase;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.05em;
  border: 1px solid var(--primary-dark);
}

/* Header Row 2: HẠNG MỤC | ĐVT | ĐƠN GIÁ */
.price-table .table-header-row th {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid var(--border-color);
}

.price-table td {
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.price-table tr:nth-child(even) {
  background-color: rgba(245, 245, 245, 0.4);
}

.price-table tr:hover {
  background-color: rgba(230, 0, 18, 0.03);
  /* Soft brand red hover highlight */
  transition: background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hạng mục column text style (Clean, professional dark text) */
.price-table td:first-child {
  color: var(--text-dark);
  font-weight: 700;
  text-align: left;
  /* Left align item name for better reading, while centering others */
  padding-left: 2rem;
}

/* ĐVT column text style */
.price-table td:nth-child(2) {
  color: var(--text-muted);
}

/* Đơn giá column text style (Brand Red for prominence) */
.price-table td:last-child {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.05rem;
}

.table-caption {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 1rem;
}

/* --- WORKING PROCESS (Horizontal Timeline) --- */
.process-section {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  width: 76%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-step-num {
  width: 80px;
  height: 80px;
  background-color: var(--bg-white);
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.process-step:hover .process-step-num {
  background-color: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: var(--shadow-danger);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 0 1rem;
}

/* --- WHY CHOOSE US (6 Box Grid) --- */
.why-section {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

.why-box:hover {
  border-color: var(--text-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-icon-wrapper {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-box h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.why-box p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Counters section inside Why choose us */
.stats-banner {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 4rem 2rem;
  margin-top: 5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.stats-banner:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stat-item {
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: var(--transition-normal);
}

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  transition: var(--transition-normal);
}

.stat-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

/* Vertical dividers on desktop */
@media (min-width: 768px) {
  .stat-col {
    position: relative;
  }

  .stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background-color: var(--border-color);
  }
}

/* Micro-interaction hovers */
.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item:hover .stat-icon {
  color: var(--accent);
}

.stat-item:hover .stat-num {
  color: var(--text-dark);
}

/* --- CLIENT REVIEWS (Swiper Carousel) --- */
.reviews-section {
  overflow: hidden;
}

.reviews-carousel-container {
  position: relative;
  padding: 0;
}

/* Swiper: remove default absolute positioning for review nav */
.reviews-carousel .swiper-button-prev,
.reviews-carousel .swiper-button-next {
  display: none !important;
}

.reviews-swiper-button-prev,
.reviews-swiper-button-next {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  z-index: 10;
}

.reviews-swiper-button-prev {
  left: -24px;
}

.reviews-swiper-button-next {
  right: -24px;
}

@media (max-width: 767.98px) {
  .reviews-carousel-container {
    padding: 0;
  }

  .reviews-swiper-button-prev,
  .reviews-swiper-button-next {
    display: none !important;
  }
}

.reviews-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.reviews-nav-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-danger);
}

.reviews-nav-btn:active {
  transform: translateY(0);
}

.review-slide-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.review-slide-card:hover {
  border-color: rgba(230, 0, 18, 0.25);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-content {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  min-height: 80px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  width: 20px !important;
  border-radius: 10px !important;
  transition: var(--transition-fast) !important;
}

/* Swiper News Carousel */
.news-carousel-container {
  position: relative;
  padding: 0;
}

.news-carousel .swiper-button-prev,
.news-carousel .swiper-button-next {
  display: none !important;
}

.news-swiper-button-prev,
.news-swiper-button-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
}

.news-swiper-button-prev {
  left: -24px;
}

.news-swiper-button-next {
  right: -24px;
}

@media (max-width: 767.98px) {
  .news-carousel-container {
    padding: 0;
  }

  .news-swiper-button-prev,
  .news-swiper-button-next {
    display: none !important;
  }
}

/* --- NEWS SECTION --- */
.news-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}



.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 0, 18, 0.25);
  box-shadow: var(--shadow-md);
}

.news-img-wrapper {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #e5e7eb;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.news-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.news-card:hover .news-body h3 {
  color: var(--primary);
}

.news-body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.news-link {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.news-card:hover .news-link {
  color: var(--primary);
}

/* --- GOOGLE MAP SECTION --- */
.map-section {
  padding: 0;
  position: relative;
  height: 450px;
  background-color: #e5e7eb;
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay-card {
  position: absolute;
  top: 50px;
  left: 10%;
  z-index: 10;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 380px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.map-overlay-card h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.map-info-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.map-info-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.map-info-item p {
  color: var(--text-muted);
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
  border-top: 4px solid var(--accent);
}

.footer-logo {
  height: 150px;
  width: auto;
  max-height: 100px;
  margin-bottom: 1.5rem !important;
  margin: 0 auto;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--accent);
  color: var(--text-dark);
}

.footer-column h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(237 191 195 / 38%);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- FLOATING CONTACT ELEMENTS (DESKTOP) --- */
.floating-actions {
  position: fixed;
  right: 25px;
  bottom: 60px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn.f-hotline {
  background-color: transparent;
}

.floating-btn.f-zalo {
  background-color: transparent;
}

.floating-btn.f-messenger {
  background-color: transparent;
}

.floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Pulse animation for Hotline */
.floating-btn.f-hotline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary);
  z-index: -1;
  animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* --- MOBILE BOTTOM FIXED BAR --- */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  border-top: 1px solid var(--border-color);
}

.mobile-bottom-btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-transform: uppercase;
}

.mobile-bottom-btn.m-hotline {
  background-color: var(--primary);
  color: var(--bg-white);
}

.mobile-bottom-btn.m-zalo {
  background-color: #0068FF;
  color: var(--bg-white);
}

.mobile-bottom-btn.m-booking {
  background-color: var(--accent);
  color: var(--text-dark);
}

/* Mobile bottom bar — always hidden (replaced by FAB toggle) */
.mobile-bottom-bar {
  display: none !important;
}

/* === MOBILE FAB TOGGLE BUTTON === */
.mobile-fab-wrap {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1050;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.mobile-fab-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-fab-btn:hover {
  background: var(--primary-dark, #b71c1c);
  transform: scale(1.06);
}

.mobile-fab-btn i {
  transition: transform 0.3s ease;
  pointer-events: none;
}

.mobile-fab-wrap.open .mobile-fab-btn i {
  transform: rotate(45deg);
}

.mobile-fab-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-fab-wrap.open .mobile-fab-menu {
  max-height: 260px;
  opacity: 1;
}

/* Mobile FAB — reuse floating-btn style, smaller */
.mobile-fab-menu .floating-btn {
  width: 42px;
  height: 42px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
}

.mobile-fab-menu .floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Show FAB on tablet/mobile, hide floating-actions */
@media (max-width: 991.98px) {
  .mobile-fab-wrap {
    display: flex;
  }

  .floating-actions {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }
}

/* --- ABOUT US SECTION --- */
.about-section {
  background-color: var(--bg-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-story-text {
  margin-top: 1.5rem;
}

.about-story-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-story-text .lead-text {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.6;
}

.about-action {
  margin-top: 2rem;
}

.btn-about-link {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.btn-about-link:hover {
  color: var(--primary-hover);
  transform: translateY(2px);
}

/* Image Visual style with background frame offset */
.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.about-team-img {
  width: 100%;
  border-radius: var(--radius);
  border: 2px solid var(--text-dark);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.image-border-decor {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  z-index: 1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(230, 0, 18, 0.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 900;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--primary);
}

/* --- RESPONSIVE ADJUSTMENTS (MOBILE FIRST) --- */

/* Mobile view updates */
@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }

  .hero-section {
    padding: 8rem 0 4rem 0;
    min-height: auto;
  }

  .hero-section::before {
    display: none;
    /* Hide background clip on mobile */
  }

  .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero-desc {
    border-left: none;
    border-top: 2px solid var(--primary);
    padding-left: 0;
    padding-top: 1rem;
  }

  .hero-usps {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual-wrapper {
    margin-top: 2rem;
  }

  .hud-card.hud-1 {
    left: -5%;
  }

  .hud-card.hud-2 {
    right: -5%;
  }

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

  .process-grid {
    display: none;
    /* Hide horizontal process grid */
  }

  /* Show process swiper for mobile (handled in HTML) */
  .process-slider-mobile {
    display: block !important;
  }

  .map-section {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .map-container {
    height: 350px;
  }

  .map-overlay-card {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    border: none;
    box-shadow: none;
    padding: 3rem 1.5rem;
  }

  /* floating-actions and mobile-bottom-bar handled by FAB system above */

  .about-image-wrapper {
    margin-top: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-usps {
    grid-template-columns: 1fr;
  }

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

  .booking-card {
    padding: 2rem 1rem;
  }

  .price-table th,
  .price-table td {
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Swiper styling customization */
.swiper-button-prev,
.swiper-button-next {
  color: var(--text-dark) !important;
  background-color: var(--bg-white);
  border: 1px solid var(--text-dark);
  width: 44px !important;
  height: 44px !important;
  border-radius: var(--radius);
  transition: var(--transition-fast);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--text-dark);
  color: var(--bg-white) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.2rem !important;
  font-weight: 900;
}

/* --- HERO SLIDER (Fullscreen Swiper) --- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  padding: 0px;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

/* Static Overlay to fix text positioning */
.hero-static-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.hero-static-overlay .hero-slide-content {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.hero-static-overlay .hero-slide-content.fade-out {
  opacity: 0;
}

/* Hide duplicate content in slides */
.hero-swiper .hero-slide-content {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  color: #FFFFFF;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(230, 0, 18, 0.9);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-slide-content h1,
.hero-slide-content h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero-slide-content h2::after {
  display: none;
}

.text-accent {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-usps-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-usps-inline span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
}

.hero-usps-inline span i {
  color: var(--accent);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(230, 0, 18, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 0, 18, 0.5);
  color: #fff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-secondary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* Hero Swiper Navigation */
.hero-btn-prev,
.hero-btn-next {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 2px;
  width: 48px !important;
  height: 48px !important;
  transition: all 0.2s;
  z-index: 10 !important;
}

.hero-btn-prev:hover,
.hero-btn-next:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.hero-btn-prev::after,
.hero-btn-next::after {
  font-size: 1.2rem !important;
  font-weight: 900;
}

/* Hero Pagination */
.hero-pagination {
  bottom: 80px !important;
  z-index: 10 !important;
}

.hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  width: 10px;
  height: 10px;
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent) !important;
  width: 28px !important;
  border-radius: 10px !important;
}

/* Scroll cue arrow */
.hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  animation: bounceArrow 2s ease-in-out infinite;
}

.hero-scroll-cue:hover {
  color: var(--accent);
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Body padding for hero + header */
.hero-slider-section {
  padding-top: 0 !important;
}

/* Responsive hero */
@media (max-width: 767.98px) {
  .hero-slider-section {
    height: 85vh;
    min-height: 550px;
  }

  .hero-slide-content {
    padding-top: 80px;
  }

  .hero-slide-content h1 {
    font-size: 1.9rem;
  }

  .hero-usps-inline {
    gap: 0.75rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .hero-btn-prev,
  .hero-btn-next {
    display: none !important;
  }
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-us-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.about-badge {
  align-self: flex-start;
  /* Prevent stretching inside flex parent */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  background-color: rgba(230, 0, 18, 0.05);
  border: 1px solid rgba(230, 0, 18, 0.15);
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  /* Modern premium pill shape */
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.about-badge:hover {
  background-color: rgba(230, 0, 18, 0.1);
  border-color: var(--primary);
}

.about-content h2 {
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-content h2::after {
  display: none;
  /* Hide global heading underline here for clean asymmetric text alignment */
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-desc {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-desc-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* About Features List */
.about-features-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-features-list li {
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.about-features-list li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.about-features-list li strong {
  color: var(--text-dark);
}

/* Right Column Image Wrap */
.about-image-wrapper {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 10px;
  background-color: var(--bg-white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
  display: flex;
  aspect-ratio: 4/3;
  width: 100%;
}

@media (min-width: 992px) {
  .about-image-wrapper {
    height: 100%;
  }
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.about-img-tag {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background-color: var(--text-dark);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustment */
@media (max-width: 991.98px) {
  .about-us-section {
    padding: 3rem 0;
  }

  .about-image-wrapper {
    margin-top: 2rem;
  }
}

/* ==========================================================================
   DROPDOWN HOVER & MICRO-INTERACTIONS
   ========================================================================== */
/* Remove default Bootstrap arrow */
.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

.dropdown-icon {
  font-size: 0.75rem;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s;
}

/* Desktop Hover Interaction */
@media (min-width: 992px) {

  /* Show dropdown on hover */
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar-nav .nav-item.dropdown .dropdown-menu {
    display: block !important;
    /* Keep block display to allow transitions */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
    padding: 0.5rem 0;
    margin-top: 0;
    min-width: 240px;
  }

  /* Rotate chevron icon when dropdown is active on hover */
  .navbar-nav .nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: var(--primary);
  }
}

/* Premium Styling for Dropdown Items */
.dropdown-menu .dropdown-item {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.5rem;
  color: var(--text-dark);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  border: none;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: rgba(230, 0, 18, 0.05);
  color: var(--primary) !important;
  padding-left: 1.75rem;
  /* Subtle indentation push on hover */
}

/* ==========================================================================
   SERVICE DETAIL SUBPAGE STYLING
   ========================================================================== */
.service-detail-hero {
  background-image: url('../images/banner_repair_1.png');
  background-size: cover;
  background-position: center;
  padding: 10rem 0 6rem 0;
  position: relative;
  color: var(--bg-white);
  border-bottom: 4px solid var(--primary);
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.88);
  /* Dark overlay for readability */
  z-index: 1;
}

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

.service-badge-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-dark);
  background-color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.service-detail-hero h1 {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.service-detail-hero h1 span {
  color: var(--primary-hover);
}

.service-usps-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.service-usp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}

.service-usp-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* Mini Booking Form */
.mini-booking-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.mini-booking-card h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.mini-booking-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mini-booking-card .form-group {
  margin-bottom: 1rem;
}

.mini-booking-card label {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: block;
  text-align: left;
}

.mini-booking-card .form-control {
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.mini-booking-card .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.08);
}

/* Content Layout */
.service-content-wrapper {
  padding: 5rem 0;
}

.service-main-content h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.service-main-content h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.service-main-content p {
  color: var(--text-dark);
  font-size: 1.025rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.service-main-content ul {
  margin-bottom: 2rem;
  padding-left: 1.25rem;
}

.service-main-content ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Rating Summary Box */
.rating-summary-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.rating-big-num {
  text-align: center;
  flex-shrink: 0;
}

.rating-big-num h3 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.rating-big-num .stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.rating-big-num p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.rating-bar-item .star-label {
  width: 50px;
  color: var(--text-dark);
}

.rating-bar-item .progress {
  flex: 1;
  height: 8px;
  background-color: #E2E2E2;
  border-radius: var(--radius);
  overflow: hidden;
}

.rating-bar-item .progress-bar {
  background-color: var(--accent);
}

.rating-bar-item .percentage {
  width: 40px;
  text-align: right;
  color: var(--text-muted);
}

/* Comment Section */
.comments-wrapper {
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.comment-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.comment-card:hover {
  border-color: rgba(230, 0, 18, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.comment-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--bg-white);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.comment-meta h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--text-dark);
}

.comment-meta .date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.comment-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.comment-rating {
  color: var(--accent);
  font-size: 0.8rem;
}


/* Comment Form */
.comment-form-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.comment-form-card h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.comment-form-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.star-rating-selector {
  display: flex;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: #E2E2E2;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.star-rating-selector i:hover,
.star-rating-selector i.active {
  color: var(--accent);
}

.comment-form-card .form-group {
  margin-bottom: 1.25rem;
}

.comment-form-card label {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.comment-form-card .form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.comment-form-card .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.08);
}

/* Sidebar Widgets */
.sidebar-widget {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.sidebar-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-links a:hover,
.sidebar-links li.active a {
  color: var(--primary);
}

.sidebar-hotline-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

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

.sidebar-hotline-card>i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: pulseGlow 2s infinite;
}

.sidebar-hotline-card h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sidebar-hotline-card .phone-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}

.sidebar-hotline-card .btn-custom {
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-hotline-card .btn-custom i {
  color: var(--text-dark) !important;
  font-size: 0.95rem !important;
  margin: 0 0.35rem 0 0 !important;
  animation: none !important;
  display: inline-block !important;
}

@media (max-width: 991.98px) {
  .service-detail-hero {
    padding: 8rem 0 4rem 0;
  }

  .service-content-wrapper {
    padding: 1.5rem 0;
  }

  .rating-summary-box {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .rating-big-num {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
  }
}

/* --- TOAST NOTIFICATION --- */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
  background-color: var(--text-dark);
  color: var(--bg-white);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 600;
  font-size: 0.95rem;
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-notification i {
  color: var(--accent);
  font-size: 1.25rem;
}

.toast-notification.toast-error {
  border-left-color: var(--primary);
}

.toast-notification.toast-success {
  border-left-color: #28a745;
}

.toast-notification.toast-success i {
  color: #28a745;
}

/* --- NEWS SUBPAGE STYLES --- */
.news-page-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  color: var(--bg-white);
  padding: 10rem 0 5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary);
}

.news-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/banner_repair_3.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

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

.news-page-hero h1,
.news-page-hero .news-hero-title {
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
}

.news-page-hero h1 span,
.news-page-hero .news-hero-title span {
  color: var(--primary);
}

.news-breadcrumb {
  display: block;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.news-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
}

.news-breadcrumb a:hover {
  color: var(--primary);
}

.news-breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

.news-breadcrumb span.active {
  color: var(--primary);
}

.news-content-wrapper {
  padding: 4rem 0;
}

/* News controls bar */
.news-controls-bar {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 991.98px) {
  .category-pills {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
  }

  .category-pills::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
  }
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.category-pill:hover {
  color: var(--primary);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.category-pill.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.25);
}

.category-pill.active:hover {
  color: var(--bg-white);
}

.category-pill .cat-count {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Search input group */
.search-input-group {
  position: relative;
  width: 100%;
}

.search-input-group input {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0.65rem 3.5rem 0.65rem 1.25rem;
  font-size: 0.95rem;
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.search-input-group input:hover {
  border-color: var(--text-dark);
}

.search-input-group input:focus {
  outline: none;
  background-color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.08), var(--shadow-sm);
}

.search-input-group button {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-input-group button:hover {
  color: var(--primary);
}

/* Custom Pagination Styling */
.news-pagination .page-item {
  margin: 0 0.25rem;
}

.news-pagination .page-link {
  color: var(--text-dark);
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.news-pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 10px rgba(230, 0, 18, 0.25);
}

.news-pagination .page-link:hover {
  background-color: var(--bg-light);
  border-color: var(--text-dark);
  color: var(--primary);
  transform: translateY(-2px);
}

.news-pagination .page-item.disabled .page-link {
  background-color: var(--bg-light);
  border-color: var(--border-color);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.news-results-count {
  background-color: rgba(230, 0, 18, 0.04);
  border: 1px solid rgba(230, 0, 18, 0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  display: inline-block;
  font-weight: 600;
}

/* ==========================================================================
   NEWS DETAIL PAGE STYLING
   ========================================================================== */

.article-detail-wrapper {
  padding: 4rem 0;
  background-color: var(--bg-white);
}

.article-detail-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .article-detail-title {
    font-size: 1.75rem;
  }

  .navbar-brand {
    width: auto;
  }

  .open .mobile-fab-menu {
    overflow: visible;
  }

  .mb-5 {
    margin-bottom: 2.5rem !important;
  }

  .mt-5 {
    margin-top: 2.5rem !important;
  }

  .swiper-wrapper {
    margin-bottom: 30px;
  }

  main {
    overflow: hidden;
  }

  .sidebar-links {
    gap: 0.5rem;
  }

  ul.sidebar-links li span {
    display: flex;
    align-items: center;
  }

}

.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-meta i {
  color: var(--primary);
}

.article-featured-img-box img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

/* Category Badge Styling */
.category-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.badge-repair {
  background-color: rgba(230, 0, 18, 0.06);
  color: var(--primary);
  border: 1px solid rgba(230, 0, 18, 0.15);
}

.badge-tips {
  background-color: rgba(255, 193, 7, 0.08);
  color: #c48c00;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.badge-promo {
  background-color: rgba(40, 167, 69, 0.06);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.15);
}

/* Article content body text styling */
.article-content-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3a3a3a;
}

.article-content-body p {
  margin-bottom: 1.5rem;
}

.article-content-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

.article-content-body ul,
.article-content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-content-body li {
  margin-bottom: 0.5rem;
}

.article-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
  border-left: 4px solid var(--primary);
  background-color: var(--bg-light);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  border-radius: var(--radius);
  line-height: 1.6;
}



/* Social Share Buttons */
.btn-share-facebook {
  background-color: #1877F2 !important;
  color: #ffffff !important;
  border: 1px solid #1877F2 !important;
  transition: var(--transition-fast) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-share-facebook:hover {
  background-color: #166fe5 !important;
  border-color: #166fe5 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.btn-share-zalo {
  background-color: #0068FF !important;
  color: #ffffff !important;
  border: 1px solid #0068FF !important;
  transition: var(--transition-fast) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-share-zalo:hover {
  background-color: #005ce6 !important;
  border-color: #005ce6 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 104, 255, 0.3);
}

/* --- TABLE OF CONTENTS (MỤC LỤC BÀI VIẾT) --- */
.article-toc {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.article-toc:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 0, 18, 0.2);
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.toc-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.toc-title i {
  color: var(--primary);
  font-size: 1.15rem;
}

.toc-chevron-icon {
  font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
}

.article-toc.active .toc-chevron-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.toc-body {
  margin-top: 1rem;
  border-top: 1px dashed var(--border-color);
  padding-top: 1rem;
}

.toc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.toc-list li {
  position: relative;
  line-height: 1.4;
}

.toc-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: flex-start;
  font-weight: 500;
}

.toc-list a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.toc-depth-2 {
  font-weight: 600;
}

.toc-depth-3 {
  padding-left: 1.25rem;
}

.toc-depth-3 a::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
  display: inline-block;
}

.toc-depth-4 {
  padding-left: 2.5rem;
}

.toc-depth-4 a::before {
  content: "-";
  color: var(--text-muted);
  margin-right: 8px;
  display: inline-block;
}


/* ==========================================================================
   RESPONSIVE SYSTEM — COMPREHENSIVE OVERRIDES
   Breakpoints: 992px (Tablet), 768px (Mobile L), 576px (Mobile S)
   ========================================================================== */

/* ── TABLET (≤ 991.98px) ─────────────────────────────────────────────────── */
@media (max-width: 991.98px) {

  /* === HEADER === */
  .offcanvas {
    width: 320px !important;
  }

  .offcanvas-body {
    padding: 0;
    display: flex !important;
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .nav-link {
    padding: 0.85rem 1.25rem !important;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
  }

  .offcanvas-body .d-flex {
    padding: 1.25rem;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  /* Hide search trigger on mobile navbar, show at bottom */
  .search-box-wrapper {
    display: none !important;
  }

  /* === HERO SLIDER === */
  .hero-slider-section {
    height: 80vh;
    min-height: 520px;
  }

  .hero-slide-content {
    padding-top: 70px;
    text-align: center;
  }

  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-usps-inline {
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-ctas {
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-pagination {
    bottom: 60px !important;
  }

  /* === SECTIONS SPACING === */
  section {
    padding: 4rem 0;
  }

  /* === BOOKING SECTION === */
  .booking-card {
    padding: 2.5rem 2rem;
  }

  /* === MAP SECTION === */
  .map-section {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .map-container {
    height: 320px;
  }

  .map-overlay-card {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    border: none;
    border-top: 3px solid var(--primary);
    box-shadow: none;
    padding: 2.5rem 1.5rem;
  }

  /* === FOOTER === */
  .site-footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0rem;
    margin-top: 0rem;
    padding-top: 1rem;
  }

  /* === ABOUT SECTION === */
  .about-us-section {
    padding: 3rem 0;
  }

  .about-image-wrapper {
    margin-top: 0rem;
    aspect-ratio: 4/3;
  }

  .about-action {
    margin-top: 1rem;
  }

  /* === SUBPAGE HERO SECTIONS === */
  .about-page-hero,
  .contact-page-hero {
    padding: 8rem 0 4rem;
  }

  .news-page-hero {
    padding: 8rem 0 3.5rem;
  }

  /* === SERVICE DETAIL HERO === */
  .service-detail-hero {
    padding: 8rem 0 4rem;
    text-align: center;
  }

  .service-usps-list {
    align-items: center;
  }

  /* === CONTACT PAGE === */
  .contact-content-wrapper {
    padding: 3.5rem 0;
  }

  .contact-form-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .contact-map-wrapper iframe {
    min-height: 380px;
  }

  /* === NEWS PAGE === */
  .news-content-wrapper {
    padding: 3rem 0;
  }

  /* === NEWS DETAIL === */
  .article-detail-wrapper {
    padding: 2.5rem 0;
  }

  .article-detail-title {
    font-size: 1.85rem;
  }

  /* === SIDEBAR → Static below content on tablet === */
  .sidebar-wrapper {
    position: static !important;
    top: auto !important;
    margin-top: 2rem;
  }

  .sidebar-widget {
    margin-top: 2rem;
  }

  /* Share box row → column on tablet */
  .article-share-box {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start !important;
  }

  /* Related articles section */
  .related-news-section {
    padding: 3.5rem 0;
  }

  /* === STATS BANNER === */
  .stats-banner {
    padding: 3rem 1.5rem;
    margin-top: 3rem;
  }

  /* === REVIEWS === */
  .reviews-swiper-button-prev,
  .reviews-swiper-button-next {
    display: none !important;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
}


/* ── MOBILE LARGE (≤ 767.98px) ───────────────────────────────────────────── */
@media (max-width: 767.98px) {

  /* === HERO === */
  .hero-slider-section {
    height: 85vh;
    min-height: 500px;
  }

  .hero-slide-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: 1.75rem;
    line-height: 1.35;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.3rem 0.75rem;
  }

  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.85rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-btn-prev,
  .hero-btn-next {
    display: none !important;
  }

  /* === SECTIONS SPACING === */
  section {
    padding: 3rem 0;
  }

  /* === HEADINGS === */
  h2 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 1.5rem;
  }

  /* === SERVICE CARDS === */
  .service-body {
    padding: 1.25rem;
  }

  .service-body h3 {
    font-size: 1.1rem;
  }

  /* === BOOKING FORM === */
  .booking-card {
    padding: 2rem 1.25rem;
  }

  .booking-title h3 {
    font-size: 1.4rem;
  }

  /* === PRICE TABLE === */
  .price-table-wrapper {
    border-radius: 0;
  }

  .price-table {
    min-width: 100%;
  }

  .price-table th,
  .price-table td {
    padding: 0.9rem 1rem;
    font-size: 0.875rem;
  }

  /* === PROCESS SECTION === */
  .process-grid {
    display: none;
  }

  .process-slider-mobile {
    display: block !important;
  }

  .process-step-num {
    width: 64px;
    height: 64px;
    font-size: 1.4rem;
  }

  /* === WHY CHOOSE US === */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .why-box {
    padding: 1.75rem 1.25rem;
  }

  .why-icon-wrapper {
    font-size: 2rem;
    height: 56px;
  }

  /* === STATS BANNER === */
  .stats-banner {
    padding: 2.5rem 1.25rem;
    margin-top: 2rem;
  }

  .stat-col:not(:last-child)::after {
    display: none;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  /* === REVIEWS CAROUSEL === */
  .review-slide-card {
    padding: 1.5rem 1.25rem;
  }

  .review-content {
    font-size: 0.9rem;
    min-height: auto;
  }

  /* === NEWS CAROUSEL === */
  .news-swiper-button-prev,
  .news-swiper-button-next {
    display: none !important;
  }

  /* === MAP SECTION === */
  .map-container {
    height: 280px;
  }

  /* === FOOTER === */
  .footer-bottom p {
    margin-bottom: 0px;
  }

  .footer-logo {
    height: 100px;
    margin-bottom: 1rem !important;
  }

  .footer-column {
    margin-bottom: 1.5rem;
  }

  .footer-column h3 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  /* === ABOUT US === */
  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-subtitle {
    font-size: 1.05rem;
  }

  .about-features-list li {
    font-size: 0.9rem;
  }

  /* === DISABLE HOVER LIFTS ON MOBILE === */
  .service-card:hover,
  .why-box:hover,
  .news-card:hover,
  .stat-item:hover,
  .sidebar-widget:hover,
  .sidebar-hotline-card:hover,
  .contact-detail-card:hover,
  .contact-map-wrapper:hover,
  .comment-card:hover {
    transform: none !important;
  }

  .service-card:hover .service-img-wrapper img,
  .news-card:hover .news-img-wrapper img {
    transform: none !important;
  }

  .service-card:hover .service-link i {
    transform: none !important;
  }

  /* === SUBPAGE HEROES (mobile) === */
  .about-page-hero,
  .contact-page-hero,
  .news-page-hero {
    padding: 6.5rem 0 3rem;
    text-align: center;
  }

  .about-page-hero h1,
  .contact-page-hero h1,
  .news-page-hero h1,
  .news-page-hero .news-hero-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .about-breadcrumb,
  .contact-breadcrumb,
  .news-breadcrumb {
    justify-content: center;
    font-size: 0.8rem;
  }

  /* === SERVICE DETAIL === */
  .service-detail-hero {
    padding: 7rem 0 3rem;
    text-align: center;
  }

  .service-detail-hero h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .mini-booking-card {
    padding: 1.5rem;
    margin-top: 1rem;
  }

  .service-content-wrapper {
    padding: 2.5rem 0;
  }

  .rating-summary-box {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .rating-big-num h3 {
    font-size: 3rem;
  }

  .comment-card {
    flex-direction: column;
    gap: 1rem;
  }

  .comment-form-card {
    padding: 1.75rem 1.25rem;
  }

  /* === CONTACT PAGE (mobile) === */
  .contact-content-wrapper {
    padding: 2.5rem 0;
  }

  .contact-form-card {
    padding: 1.75rem 1.25rem;
    margin-top: 2rem;
  }

  .contact-form-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .contact-map-wrapper iframe {
    min-height: 280px;
  }

  .contact-detail-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .contact-icon-box {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  /* === NEWS PAGE (mobile) === */
  .news-page-hero h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .category-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .category-pill {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
  }

  .news-controls-bar {
    padding: 1.25rem;
  }

  .news-pagination .page-link {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
  }

  /* === NEWS DETAIL (mobile) === */
  .article-detail-wrapper {
    padding: 2rem 0;
  }

  .article-detail-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .article-meta {
    /* flex-direction: column; */
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .article-featured-img-box img {
    max-height: 260px;
    object-fit: cover;
    width: 100%;
  }

  .article-content-body {
    font-size: 1rem;
  }

  .article-content-body h3 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
  }

  .article-quote {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  /* Share box links wrap */
  .share-social-links {
    flex-wrap: wrap;
  }

  /* Comments section */
  .comments-wrapper {
    padding-top: 2rem;
    margin-top: 2rem;
  }

  .comments-wrapper h2 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem !important;
  }

  /* Related news */
  .related-news-section {
    padding: 2.5rem 0;
  }

  .related-news-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.75rem !important;
  }

  /* === TOAST === */
  .toast-notification {
    top: auto;
    bottom: 80px;
    right: 1rem;
    left: 1rem;
    font-size: 0.875rem;
  }
}


/* ── MOBILE SMALL (≤ 575.98px) ───────────────────────────────────────────── */
@media (max-width: 575.98px) {

  /* === HERO === */
  .hero-slider-section {
    height: 85vh;
    min-height: 480px;
  }

  .hero-slide-content h1,
  .hero-slide-content h2 {
    font-size: 1.55rem;
  }

  /* Keep USPs horizontal, allow scroll if needed */
  .hero-usps-inline {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-usps-inline::-webkit-scrollbar {
    display: none;
  }

  .hero-usps-inline span {
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* === SECTIONS === */
  section {
    padding: 2.5rem 0;
  }

  /* === WHY CHOOSE US — single column === */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .why-box {
    padding: 1.5rem 1rem;
  }

  /* === BOOKING FORM === */
  .booking-card {
    padding: 1.75rem 1rem;
  }

  /* === PRICE TABLE === */
  .price-table-wrapper {
    margin: 0 -0.75rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .price-table {
    min-width: 100%;
  }

  .price-table th,
  .price-table td {
    padding: 0.6rem 0.4rem;
    font-size: 0.75rem;
    word-break: break-word;
  }

  .price-table .table-title-row th {
    font-size: 0.95rem;
    padding: 0.8rem 0.5rem;
  }

  .price-table .table-header-row th {
    font-size: 0.75rem;
    padding: 0.6rem 0.4rem;
  }

  .price-table td:first-child {
    padding-left: 0.6rem;
    font-size: 0.8rem;
  }

  .price-table td:last-child {
    font-size: 0.85rem;
  }

  /* === FOOTER === */
  .site-footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-socials {
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  /* === HEADER NAV CTA === */
  .offcanvas-body .btn-custom {
    width: 100%;
    justify-content: center;
    margin: 0.25rem 0;
  }

  /* === STATS === */
  .stat-num {
    font-size: 2rem;
  }

  .stat-title {
    font-size: 0.75rem;
  }

  /* === REVIEW CARD === */
  .review-slide-card {
    padding: 1.25rem 1rem;
  }

  /* === ARTICLE DETAIL (small mobile) === */
  .article-detail-wrapper {
    padding: 1.5rem 0;
  }

  .article-detail-title {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .article-featured-img-box img {
    max-height: 210px;
  }

  .article-toc {
    padding: 1rem;
  }

  .toc-title {
    font-size: 0.9rem;
  }

  /* Share box on small mobile */
  .article-share-box {
    padding: 0.875rem !important;
  }

  .article-share-box>span {
    font-size: 0.85rem;
  }

  /* Comments */
  .comments-wrapper h2 {
    font-size: 1.2rem;
  }

  .comment-form-card h3 {
    font-size: 1.1rem;
  }

  /* Related news */
  .related-news-section h2 {
    font-size: 1.25rem;
  }

  /* === COMMENT CARD === */
  .comment-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .comment-meta h4 {
    font-size: 0.9rem;
  }

  /* === MINI BOOKING FORM === */
  .mini-booking-card h3 {
    font-size: 1.1rem;
  }

  /* === MAP === */
  .map-container {
    height: 250px;
  }

  /* === ABOUT === */
  .about-image-wrapper {
    padding: 6px;
  }

  /* === SUBPAGE HEROES (small mobile) === */
  .about-page-hero,
  .contact-page-hero,
  .news-page-hero {
    padding: 7.5rem 0 2.5rem;
  }

  .about-page-hero h1,
  .contact-page-hero h1,
  .news-page-hero h1,
  .news-page-hero .news-hero-title {
    font-size: 1.5rem;
  }

  .news-page-hero .lead {
    font-size: 0.9rem;
  }

  /* === SERVICE DETAIL HERO === */
  .service-detail-hero {
    padding: 5.5rem 0 2.5rem;
  }

  .service-detail-hero h1 {
    font-size: 1.4rem;
  }

  .service-usp-item {
    font-size: 0.9rem;
  }

  /* === CONTACT PAGE (small mobile) === */
  .contact-form-card {
    padding: 1.5rem 1rem;
  }

  .contact-form-card h2 {
    font-size: 1.2rem;
  }

  .contact-form-card .form-group {
    margin-bottom: 1rem;
  }

  .contact-map-wrapper iframe {
    min-height: 240px;
  }

  .contact-detail-card {
    padding: 1rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .contact-text-box h3 {
    font-size: 0.95rem;
  }

  .contact-text-box a {
    font-size: 1rem;
  }

  /* === NEWS CONTROLS (small mobile) === */
  .news-controls-bar {
    padding: 1rem;
  }

  .category-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
  }

  .news-search-input {
    font-size: 0.875rem;
    padding: 0.55rem 0.85rem;
  }

  /* === SIDEBAR WIDGET (small mobile) === */
  .sidebar-widget {
    padding: 1.25rem;
  }

  .sidebar-hotline-card {
    padding: 1.5rem 1rem;
  }

  .sidebar-hotline-card .phone-num {
    font-size: 1.35rem;
  }

  /* === PROCESS STEP === */
  .process-step-num {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .process-step h3 {
    font-size: 1rem;
  }

  /* === RATING BARS (small mobile) === */
  .rating-bar-item {
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .rating-bar-item .star-label {
    width: 42px;
  }

  .rating-bar-item .percentage {
    width: 34px;
  }
}

/* === AUTOMATICALLY MERGED SUBPAGE SPECIFIC STYLES === */

/* --- Styles from About Page --- */
/* Specific styles for About Us subpage to ensure the layout starts correctly below sticky header */
    .about-page-hero {
      background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
      color: var(--bg-white);
      padding: 10rem 0 5rem 0;
      position: relative;
      overflow: hidden;
      border-bottom: 3px solid var(--primary);
    }

    .about-page-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('assets/images/banner_repair_1.png');
      background-size: cover;
      background-position: center;
      opacity: 0.15;
      z-index: 1;
    }

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

    .about-page-hero h1 {
      text-transform: uppercase;
      font-weight: 900;
      margin-bottom: 1rem;
    }

    .about-page-hero h1 span {
      color: var(--primary);
    }

    .about-breadcrumb {
      display: flex;
      gap: 0.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .about-breadcrumb a {
      color: rgba(255, 255, 255, 0.7);
    }

    .about-breadcrumb a:hover {
      color: var(--primary);
    }

    .about-breadcrumb span.active {
      color: var(--accent);
    }

    @media (max-width: 767.98px) {
      .about-page-hero {
        text-align: center;
        padding: 7.5rem 0 2.5rem;
      }

      .about-breadcrumb {
        justify-content: center;
      }
    }

    @media (max-width: 575.98px) {
      .about-page-hero h1 {
        font-size: 1.5rem;
      }
    }

/* --- Styles from Contact Page --- */
/* Specific styles for Contact subpage to ensure consistent styling and layout */
    .contact-page-hero {
      background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
      color: var(--bg-white);
      padding: 10rem 0 5rem 0;
      position: relative;
      overflow: hidden;
      border-bottom: 3px solid var(--primary);
    }

    .contact-page-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('assets/images/banner_repair_1.png');
      background-size: cover;
      background-position: center;
      opacity: 0.15;
      z-index: 1;
    }

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

    .contact-page-hero h1 {
      text-transform: uppercase;
      font-weight: 900;
      margin-bottom: 1rem;
    }

    .contact-page-hero h1 span {
      color: var(--primary);
    }

    .contact-breadcrumb {
      display: flex;
      gap: 0.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .contact-breadcrumb a {
      color: rgba(255, 255, 255, 0.7);
    }

    .contact-breadcrumb a:hover {
      color: var(--primary);
    }

    .contact-breadcrumb span.active {
      color: var(--accent);
    }

    /* Contact Details Layout */
    .contact-content-wrapper {
      padding: 5rem 0;
      background-color: var(--bg-white);
    }

    .contact-detail-card {
      background-color: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      transition: var(--transition-normal);
      height: 100%;
      box-shadow: var(--shadow-sm);
      position: relative;
    }

    .contact-detail-card:hover {
      transform: translateY(-5px);
      border-color: var(--text-dark);
      box-shadow: var(--shadow-md);
    }

    .contact-icon-box {
      width: 48px;
      height: 48px;
      background-color: var(--primary);
      color: var(--bg-white);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .contact-text-box h3 {
      font-size: 1.1rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }

    .contact-text-box p {
      color: var(--text-dark);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .contact-text-box a {
      color: var(--primary);
      font-weight: 700;
      font-size: 1.1rem;
      display: inline-block;
      margin-top: 0.25rem;
      transition: var(--transition-fast);
    }

    .contact-text-box a:hover {
      color: var(--primary-hover);
      text-decoration: underline;
    }

    /* Contact Form block */
    .contact-form-card {
      background-color: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
      height: 100%;
    }

    .contact-form-card h2 {
      font-size: 1.75rem;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 2rem;
      color: var(--text-dark);
      position: relative;
    }

    .contact-form-card p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .contact-form-card .form-group {
      margin-bottom: 1.5rem;
    }

    .contact-form-card label {
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      display: block;
      color: var(--text-dark);
      letter-spacing: 0.02em;
    }

    .contact-form-card .form-control,
    .contact-form-card .form-select {
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 0.85rem 1.25rem;
      font-size: 0.95rem;
      color: var(--text-dark);
      background-color: var(--bg-light);
      transition: var(--transition-fast);
    }

    .contact-form-card .form-control::placeholder {
      color: #999;
    }

    .contact-form-card .form-control:hover,
    .contact-form-card .form-select:hover {
      border-color: var(--text-dark);
    }

    .contact-form-card .form-control:focus,
    .contact-form-card .form-select:focus {
      outline: none;
      background-color: var(--bg-white);
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.08);
    }

    /* Local validation enhancements */
    .contact-form-card .invalid-feedback-custom {
      color: var(--primary);
      font-size: 0.8rem;
      font-weight: 600;
      margin-top: 0.35rem;
      display: none;
    }

    .contact-form-card .form-group.has-error .invalid-feedback-custom {
      display: block;
    }

    .contact-form-card .form-group.has-error .form-control,
    .contact-form-card .form-group.has-error .form-select {
      border-color: var(--primary);
      background-color: rgba(230, 0, 18, 0.02);
    }

    /* Google Maps block */
    .contact-map-wrapper {
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      overflow: hidden;
      height: 100%;
      position: relative;
      transition: var(--transition-normal);
    }

    .contact-map-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--text-dark);
    }

    .contact-map-wrapper iframe {
      width: 100%;
      height: 100%;
      min-height: 500px;
      border: 0;
      display: block;
    }

    @media (max-width: 991.98px) {
      .contact-content-wrapper {
        padding: 3rem 0;
      }

      .contact-detail-card {
        padding: 1.5rem;
      }

      .contact-form-card {
        padding: 2rem 1.5rem;
      }

      .contact-map-wrapper iframe {
        min-height: 400px;
      }
    }

    @media (max-width: 767.98px) {
      .contact-page-hero {
        text-align: center;
        padding: 7.5rem 0 2.5rem;
      }

      .contact-breadcrumb {
        justify-content: center;
      }

      .contact-map-wrapper:hover {
        transform: none;
      }
    }

    @media (max-width: 575.98px) {
      .contact-page-hero h1 {
        font-size: 1.5rem;
      }
    }

/* --- Styles from Service Page --- */
/* Specific styles for Service Detail subpage */
    .service-detail-hero {
      background-image: url('assets/images/banner_repair_1.png');
      background-size: cover;
      background-position: center;
      padding: 10rem 0 6rem 0;
      position: relative;
      color: var(--bg-white);
      border-bottom: 4px solid var(--primary);
    }

    .service-detail-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(26, 26, 26, 0.88);
      /* Strong dark overlay for high contrast readability */
      z-index: 1;
    }

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

    .service-badge-yellow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      color: var(--text-dark);
      background-color: var(--accent);
      padding: 0.35rem 0.85rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      letter-spacing: 0.05em;
    }

    .service-detail-hero h1 {
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .service-detail-hero h1 span {
      color: var(--primary-hover);
    }

    .service-usps-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .service-usp-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
      font-size: 1rem;
    }

    .service-usp-item i {
      color: var(--accent);
      font-size: 1.2rem;
    }

    /* Mini Booking Form */
    .mini-booking-card {
      background-color: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      color: var(--text-dark);
    }

    .mini-booking-card h3 {
      font-size: 1.25rem;
      text-transform: uppercase;
      margin-bottom: 0.25rem;
      font-weight: 800;
      color: var(--text-dark);
    }

    .mini-booking-card p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .mini-booking-card .form-group {
      margin-bottom: 1rem;
    }

    .mini-booking-card label {
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      margin-bottom: 0.35rem;
      display: block;
    }

    .mini-booking-card .form-control {
      padding: 0.65rem 0.85rem;
      font-size: 0.9rem;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
    }

    .mini-booking-card .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.08);
    }

    /* Content Layout */
    .service-content-wrapper {
      padding: 5rem 0;
    }

    .service-main-content h2 {
      font-size: 1.8rem;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      position: relative;
    }

    .service-main-content h2::after {
      content: '';
      position: absolute;
      bottom: -0.5rem;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: var(--primary);
    }

    .service-main-content p {
      color: var(--text-dark);
      font-size: 1.025rem;
      line-height: 1.7;
      margin-bottom: 0.5rem;
    }

    .service-main-content ul {
      margin-bottom: 2rem;
      padding-left: 1.25rem;
    }

    .service-main-content ul li {
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }

    /* Rating Summary Box */
    .rating-summary-box {
      background-color: var(--bg-light);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 2rem;
      display: flex;
      align-items: center;
      gap: 2.5rem;
      margin-bottom: 3rem;
      box-shadow: var(--shadow-sm);
    }

    .rating-big-num {
      text-align: center;
      flex-shrink: 0;
    }

    .rating-big-num h3 {
      font-size: 4rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .rating-big-num .stars {
      color: var(--accent);
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .rating-big-num p {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0;
    }

    .rating-bars {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .rating-bar-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .rating-bar-item .star-label {
      width: 50px;
      color: var(--text-dark);
    }

    .rating-bar-item .progress {
      flex: 1;
      height: 8px;
      background-color: #E2E2E2;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .rating-bar-item .progress-bar {
      background-color: var(--accent);
    }

    .rating-bar-item .percentage {
      width: 40px;
      text-align: right;
      color: var(--text-muted);
    }

    /* Comment Section */
    .comments-wrapper {
      margin-top: 4rem;
      border-top: 1px solid var(--border-color);
      padding-top: 3rem;
    }

    .comment-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .comment-card {
      background-color: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 1.5rem;
      display: flex;
      gap: 1.25rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-fast);
    }

    .comment-card:hover {
      border-color: var(--text-dark);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .comment-avatar {
      width: 48px;
      height: 48px;
      background-color: var(--primary);
      color: var(--bg-white);
      font-weight: 800;
      font-size: 1.25rem;
      text-transform: uppercase;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .comment-body {
      flex: 1;
    }

    .comment-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    .comment-meta h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0;
      color: var(--text-dark);
    }

    .comment-meta .date {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .comment-text {
      font-size: 0.95rem;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .comment-rating {
      color: var(--accent);
      font-size: 0.8rem;
    }

    /* Comment Form */
    .comment-form-card {
      background-color: var(--bg-light);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 2.5rem;
      box-shadow: var(--shadow-sm);
    }

    .comment-form-card h3 {
      font-size: 1.35rem;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      font-weight: 800;
    }

    .comment-form-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .star-rating-selector {
      display: flex;
      gap: 0.5rem;
      font-size: 1.5rem;
      color: #E2E2E2;
      margin-bottom: 1.5rem;
      cursor: pointer;
    }

    .star-rating-selector i:hover,
    .star-rating-selector i.active {
      color: var(--accent);
    }

    .comment-form-card .form-group {
      margin-bottom: 1.25rem;
    }

    .comment-form-card label {
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      display: block;
    }

    .comment-form-card .form-control {
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 0.75rem 1rem;
      font-size: 0.95rem;
    }

    .comment-form-card .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.08);
    }

    /* Sidebar Widgets */
    .sidebar-widget {
      background-color: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition-normal);
    }

    .sidebar-widget:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--text-dark);
    }

    .sidebar-widget h3 {
      font-size: 1.15rem;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 1.25rem;
      color: var(--text-dark);
      position: relative;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--border-color);
    }

    .sidebar-widget h3::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--primary);
    }

    .sidebar-links {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .sidebar-links a {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .sidebar-links a:hover,
    .sidebar-links li.active a {
      color: var(--primary);
    }

    .sidebar-links li span {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-dark);
      display: flex;
      align-items: flex-start;
    }

    .sidebar-hotline-card {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      color: var(--bg-white);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: var(--radius);
      padding: 2.25rem 2rem;
      text-align: center;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
      transition: var(--transition-normal);
    }

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

    .sidebar-hotline-card>i {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 1rem;
      animation: pulseGlow 2s infinite;
    }

    .sidebar-hotline-card h3 {
      font-size: 1.25rem;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .sidebar-hotline-card .phone-num {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--accent);
      display: block;
      margin-bottom: 1.25rem;
    }

    .sidebar-hotline-card .btn-custom {
      font-size: 0.875rem;
      padding: 0.75rem 1.5rem;
      border-radius: var(--radius);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .sidebar-hotline-card .btn-custom i {
      color: var(--text-dark) !important;
      font-size: 0.95rem !important;
      margin: 0 0.35rem 0 0 !important;
      animation: none !important;
      display: inline-block !important;
    }

    @keyframes pulseGlow {

      0%,
      100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(255, 193, 7, 0);
      }

      50% {
        transform: scale(1.08);
        text-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
      }
    }

    @media (max-width: 991.98px) {
      .service-detail-hero {
        padding: 7rem 0 2.5rem 0;
      }

      .service-content-wrapper {
        padding: 1.5rem 0;
      }

      .rating-summary-box {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
      }

      .rating-big-num {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.5rem;
      }
    }

    @media (max-width: 767.98px) {
      .service-main-content h2 {
        font-size: 1.4rem;
      }

      .service-main-content h2::after {
        width: 36px;
      }

      .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
      }

      .sidebar-hotline-card>i {
        font-size: 2rem;
      }

      .comment-card:hover {
        transform: none;
      }

      .sidebar-widget:hover {
        transform: none;
      }
    }

    @media (max-width: 575.98px) {
      .service-main-content h2 {
        font-size: 1.25rem;
      }

      .service-usp-item {
        font-size: 0.875rem;
      }

      .rating-bar-item .star-label {
        width: 40px;
      }

      .sidebar-widget {
        padding: 1.25rem;
      }

      .comment-form-card {
        padding: 1.25rem 1rem;
      }

      .star-rating-selector {
        font-size: 1.35rem;
      }
    }

