html, body {
  overflow-x: hidden !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-header {
  background-color: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100px;
  top: 0;
}
#toastContainer {
    z-index: 999999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

#toastContent.toast.bg-success {
    background-color: #c8b200;
    color: #fff9e6;
}

#toastContent.toast.bg-danger {
    background-color: #b33636;
    color: #fff3f3;
}

/* Container nội dung */
.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  position: relative;
  border-radius: 10px;
  padding: 10px;
}
.logo {
  position: relative;
  z-index: 1;
}
/* Logo */
.logo img {
  height: 100px;
  object-fit: contain;
}

/* Menu chính */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  transition: color .2s;
}

.main-nav ul li a:hover {
  color: #D9B048;
  text-decoration: underline;
}

/* === Dropdown chính === */
.has-dropdown {
  position: relative;
  overflow: visible;    /* Đảm bảo dropdown không bị cắt */
}

.has-dropdown > a {
  position: relative;
  text-decoration: none;
  color: #c8b200;
  padding: 10px 5px;
}

/* Dropdown menu */
.has-dropdown .dropdown {
  position: absolute;
  top: 100%; left: 0;
  background-color: #6EE9D5;
  border-radius: 6px;
  margin-top: 8px;
  padding: 8px 0;
  min-width: 240px;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Hiển thị khi hover */
.has-dropdown:hover .dropdown {
  display: block;
}

/* từng item */
.has-dropdown .dropdown li {
  list-style: none;
}

.has-dropdown .dropdown li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.has-dropdown .dropdown li a:hover {
    color: #D9B048;
    text-decoration: none;
    border: 2px solid #fff;
  }

  /* Mặc định ẩn nút hamburger */
  .menu-toggle {
    display: none;
    background: none;
    border: 2px solid #fff;
    color: #333;
    font-size: 24px;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
  }

  /* Menu */
  .main-nav {
    display: flex;
  }
  .main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  .main-nav ul li a {
    color: #333;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    .main-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 240px;
      height: 100%;
      background: #222;
      flex-direction: column;
      padding: 60px 20px;
      z-index: 1000;
    }

    .main-nav.show {
      display: flex;
    }

    .main-nav ul {
      flex-direction: column;
      gap: 15px;
    }

    .main-nav ul li a {
      font-size: 16px;
      color: #fff;
    }

    /* ẩn dropdown trong menu mobile nếu muốn */
    .dropdown {
      display: none !important;
    }
  }

  /* Nút hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  z-index: 1100;
}

/* Hiện hamburger ở màn nhỏ */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* Menu mobile - ẩn mặc định */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 12px rgba(0,0,0,0.3);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 20px;
  z-index: 1050;
}

/* Mở menu */
.mobile-nav.open {
  transform: translateX(0);
}

/* Nút đóng */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 26px;
  color: #000;
  cursor: pointer;
}

/* Menu item */
.mobile-nav ul {
  list-style: none;
  padding: 0 0 0 0;
}
.mobile-nav ul li {
  border-bottom: 1px solid #ddd;
}
.mobile-nav ul li a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
    display: none;
  }

  /* Khi mở menu mobile, hiện overlay */
  .overlay.show {
    display: block;
  }

  .mobile-nav ul li a:hover {
    background-color: aqua;
    color: #d32f2f; /* đỏ đậm */
  }

  .submenu-mobile li a:hover {
    background-color: #eee;
    color: #007BFF; /* hoặc màu nổi bật khác */
  }

  /* Mặc định ẩn submenu */
.submenu-mobile {
  display: none;
  padding-left: 16px;
  list-style: none;
}

/* Khi có class .open => hiển thị */
.has-dropdown-mobile.open .submenu-mobile {
  display: block;
}

/* Style đẹp hơn nếu cần */
.submenu-mobile li a {
  padding: 2px 0;
  display: block;
  font-size: 15px;
  color: #444;
}

.pn-hotline-top {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f4cf5d;
    padding: 10px 16px;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    z-index: 10;
}
.pn-hotline-top:hover {
    border: 2px solid #fff;
}
.hotline-ring {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.hotline-circle,
.hotline-circle-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hotline-circle {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.3);
    animation: pulse-ring 0.7s infinite;
}

.hotline-circle-fill {
    width: 28px;
    height: 28px;
    background-color: #e60000;
    z-index: 2;
}

.hotline-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    z-index: 3;
    animation: rotate-phone 0.7s infinite linear;
}
.hotline-number{
    color: #fff;
}

/* Hiệu ứng rung vòng tròn */
@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Hiệu ứng quay của icon */
@keyframes rotate-phone {
    0%, 100% { transform: translate(-50%, -50%) rotate(-20deg); }
    50% { transform: translate(-50%, -50%) rotate(20deg); }
}

  .section-title {
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* khoảng cách xuống dưới */
    width: 100px;  /* độ dài gạch dưới */
    height: 2px;  /* độ dày gạch dưới */
    background-color: #333; /* hoặc #ccc, hoặc màu chính */
}

.section-title-footer {
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.section-title-footer::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* khoảng cách xuống dưới */
    width: 100px;  /* độ dài gạch dưới */
    height: 3px;  /* độ dày gạch dưới */
    background-color: #686963;
}

.footer-wrapper {
    background-color: #feebca;
    background-size: cover;
    color: #686963;
    position: relative;
    z-index: 1;
}

.floating-contact {
    position: fixed;
    bottom: 100px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.btn-contact {
    width: 48px;
    height: 48px;
    background-color: #0084ff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
}

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

.btn-contact img {
    width: 24px;
    height: 24px;
}

.to-top {
    display: none;
    background-color: #555;
}

.page-heading-wrapper {
    width: 100%;
    position: relative;
    margin-top: 100px;
}

.page-heading-background {
    background: url('../images/banner-header.jpg') no-repeat center center;
    background-size: cover;
    padding: 30px 0;
    color: #fff;
}

.page-heading-background .container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #686963;
}

.breadcrumb-wrapper {
    font-size: 16px;
    color: black;
}

.breadcrumb-wrapper a {
    text-decoration: none;
    color: black;
}

.breadcrumb-wrapper span {
    margin: 0 5px;
    color: black;
}

.page-heading-wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    z-index: 1;
}

.page-heading-background .container {
    position: relative;
    z-index: 2;
}
/* đảm bảo selector đúng */
.support-content {
    text-align: center;
}

/* mỗi item dùng flex để căn dọc + ngang */
.support-content .item-support {
    display: flex;
    flex-direction: column;
    align-items: center; /* căn ngang */
    justify-content: center; /* căn dọc nếu có height cố định */
    text-align: center;
    padding: 1rem 0; /* tùy chỉnh khoảng cách */
}

/* hình Zalo */
.support-content .item-support a img {
    display: block;
    max-width: 60px;    /* hoặc kích thước bạn muốn */
    height: auto;
    margin-bottom: .5rem;
}

/* tên và số điện thoại */
.support-content .item-support .item-info b {
    display: block;
    margin-bottom: .25rem;
}

.support-content .item-support .item-info p {
    margin: 0;
    font-size: .9rem;
    color: #333;
}

.banner-intro {
    position: relative;
    width: 100vw; /* Full chiều ngang viewport */
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background: url('../images/banner/banner-website2.jpg') no-repeat center center;
    background-size: cover;
    height: 420px;
}

.banner-intro::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  z-index: 1;
}

.banner-intro .container {
    position: relative;
    z-index: 2;
}

.btn-primary-custom {
  background-color: #d4af37;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
  background-color: #c39c2e;
}

.service-box {
    background: #f8f9fa;
    border-radius: 12px;
    transition: 0.3s ease-in-out;
    border: 1px solid #e0e0e0;
}

.service-box img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .service-box .row {
    flex-direction: column;
    text-align: center;
  }

  .service-box ul {
    padding-left: 0 !important;
  }
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #c8b200;
    background: #feebca;
}

.service-order-box {
    border-radius: 12px;
    transition: 0.3s ease-in-out;
    color: #f5d05e;
    background-color: #fff;
    border: 2px solid #c8b200;
}

.service-order-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #333;
    background-color: #feebca;
    color: #686963;
}

.title-service {
    color: #686963;
}

.btn-detail {
    background-color: #D9B048;
}
.btn-detail:hover {
    background-color: #D9B048;
    color: #686963;
}
a.text-dark:hover {
    color: inherit; /* giữ nguyên màu chữ khi hover */
    text-decoration: none;
}
.stat-box {
    background-color: #feebca;
    color: #686963;
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    margin: 10px;
    opacity: 0;
    transform: translateY(30px);
}


/* Hiệu ứng khi hiện */
.stat-box.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Tùy chỉnh khoảng cách */
.stat-box h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #333333;
}

.stat-box div {
    font-size: 15px;
    font-weight: 500;
}

.section-title-2::before {
    content: "";
    width: 60px;
    height: 5px;
    background-color: #e53935;
    display: block;
    margin: 0 auto 10px;
    border-radius: 5px;
}

.why-choose-us .reason-title {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.icon-box:hover {
    border: 2px solid #c8b200;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.why-choose-us .reason-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #c8b200;
    margin-top: 4px;
    border-radius: 3px;
}

.cta-quote {
    background-color: #feebca;
    color: #686963;
}
.button-send {
    background-color: #f1d05f;
}
.button-send:hover {
    background-color: #f1d05f;
    color: #333;
}
.home-contact-sec {
    background-color: #feebca;
}
.text-contact-sec {
    color: #686963;
}

.text-color, .home-contact-text {
    color: #686963;
}
.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-box .bg-white {
    border-left: 4px solid #0d6efd;
}

.testimonial-box img {
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.service-commitment {
    background-color: #eef6fa;
}

.service-commitment ul li {
    font-size: 15px;
    line-height: 1.6;
}

.btn-contact.consult {
    background: linear-gradient(to right, #D4AF37, #FFD700, #FFDC60);
    color: #fff;
    animation: pulseGlow 2s infinite ease-in-out;
    position: relative;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    box-shadow: 0 0 0 rgba(255, 102, 0, 0.7);
    transition: transform 0.2s;
}

.btn-contact.consult:hover {
    transform: scale(1.15);
}

/* Hào quang mềm quanh nút */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

/* Icon nhấp nháy */
.flash-icon {
    animation: flash 1.2s infinite;
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.btn-popup {
    background-color: #7f7053;
    color: #fff;
}

.btn-popup:hover {
    background-color: #7f7053;
    color: #fff;
    border: 2px solid #fff;
}
.form-contact {
    background-color: #feebca;
}
