/* =====================================================================
   BIDA TÂN THỜI - styles.css  (clean rewrite, no duplicates)
   ===================================================================== */

/* ── CSS Variables ── */
:root {
  --orange: #ff6900;
  --orange-dark: #df5200;
  --gold: #ffb000;
  --navy: #071523;
  --navy-soft: #10263a;
  --text: #171a1f;
  --muted: #5e6670;
  --line: #e8ebee;
  --surface: #f7f8fa;
  --container: 1280px;
}

@media screen and (min-width: 1600px) {
  :root {
    --container: 1320px;
  }
}

/* ── Reset / Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

a, button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

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

.section {
  padding: 72px 0;
}

/* ── Header ── */
.site-header {
  height: 82px;
  background: #030506;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  width: min(1320px, calc(100% - 40px));
  height: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-emblem {
  width: 54px;
  height: 62px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 0 0 54px;
}

.brand-emblem::before,
.brand-emblem::after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 3px;
  height: 40px;
  background: #fff;
  border-radius: 3px;
  transform-origin: bottom;
  opacity: .9;
}

.brand-emblem::before {
  transform: rotate(-28deg);
  left: 8px;
}

.brand-emblem::after {
  transform: rotate(28deg);
  right: 8px;
}

.brand-crown {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  text-shadow: 0 1px 4px #000;
}

.brand-ball {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: radial-gradient(circle at 37% 28%, #515151, #050505 60%);
  box-shadow: 0 0 0 2px #6b6b6b, 0 4px 10px rgba(0, 0, 0, .5);
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 900;
  color: #fff;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name b {
  color: var(--orange);
  font-size: 27px;
  font-style: italic;
  font-weight: 900;
  line-height: .92;
  letter-spacing: -1px;
}

.brand-name strong {
  font-size: 16px;
  letter-spacing: 1.6px;
  margin-top: 4px;
}

.brand-name small {
  font-size: 13px;
  color: #ff9900;
  height: auto;
  margin-top: 4px;
  letter-spacing: 1.8px;
  font-weight: 800;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex: 1;
}

.main-nav a.nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  transition: color .2s;
}

.main-nav a.nav-link:hover,
.main-nav a.nav-link.active {
  color: var(--orange);
}

.main-nav a.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--orange);
}

/* Submenu Desktop Hover */
.nav-item.has-submenu {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item-header {
  height: 100%;
  display: flex;
  align-items: center;
}

.arrow-down {
  font-size: 11px;
  margin-left: 4px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.nav-item.has-submenu:hover .arrow-down {
  transform: rotate(180deg);
}

.submenu-toggle {
  display: none;
  /* Ẩn nút toggle trên Desktop */
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #090e14;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.nav-item.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
  height: auto;
}

.submenu li a:hover {
  background: rgba(255, 105, 0, 0.12);
  color: var(--orange);
  padding-left: 24px;
}

.hotline {
  white-space: nowrap;
  border: 1px solid var(--orange);
  border-radius: 28px;
  padding: 9px 16px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
}

.hotline span {
  font-size: 19px;
  margin-right: 5px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.socials a {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .25);
  transition: transform .2s, filter .2s;
}

.socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.social-facebook {
  background: #2d72be;
  font-family: Arial, sans-serif;
  font-size: 21px;
  padding-top: 2px;
}

.social-zalo {
  background: #159ce4;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: -1px;
}

.social-youtube {
  background: #ed1c24;
}

.social-youtube span {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #fff;
  margin-left: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 27px;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  height: 570px;
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .52) 36%, rgba(0, 0, 0, .08) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, .28), transparent 45%);
}

.hero-content {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 25px;
}

.hero h1 {
  margin: 0;
  font-size: 92px;
  line-height: .93;
  letter-spacing: -3px;
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .4);
  color: var(--orange);
}

.hero h1 span {
  display: block;
  color: #fff;
}

.hero-content p {
  font-size: 20px;
  margin: 24px 0 25px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  border-radius: 10px;
  padding: 12px 23px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s;
}

.btn-yellow {
  background: linear-gradient(135deg, #ffbd00, #ff9d00);
  color: #15110b;
  box-shadow: 0 8px 24px rgba(255, 166, 0, .25);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn b {
  font-size: 22px;
}

/* Hero Carousel (Owl) */
.hero-carousel {
  position: absolute !important;
  inset: 0;
  height: 100%;
  z-index: unset;
}

.hero-carousel .owl-stage-outer {
  height: 100%;
  overflow: hidden !important;
  position: relative;
}

.hero-carousel .owl-stage {
  height: 100%;
}

.hero-carousel .owl-item {
  height: 100%;
  overflow: hidden;
}

.hero-carousel .hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-carousel .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.05);
  transition: transform 6s ease-out;
  will-change: transform;
}

.hero-carousel .owl-item.active .hero-slide img {
  transform: scale(1);
}

.hero-carousel .owl-item:not(.active) .hero-slide img {
  transform: scale(1.05);
  transition: none;
}

/* Fade transition cho Hero Owl Carousel */
.hero-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.hero-carousel .owl-animated-out {
  z-index: 1;
}
.hero-carousel .owl-animated-in {
  z-index: 0;
}
.hero-carousel .fadeOut {
  animation-name: heroFadeOut;
}
.hero-carousel .fadeIn {
  animation-name: heroFadeIn;
}
@keyframes heroFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes heroFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-carousel.owl-theme .owl-nav {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
  z-index: 10;
}

.hero-carousel.owl-theme .owl-nav button.owl-prev,
.hero-carousel.owl-theme .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  border-radius: 50% !important;
  background: rgba(10, 15, 24, 0.85) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center;
  pointer-events: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 16px rgba(255, 105, 0, 0.25);
  transition: all 0.25s ease !important;
  backdrop-filter: blur(4px);
}

.hero-carousel.owl-theme .owl-nav button.owl-prev {
  left: 26px;
}

.hero-carousel.owl-theme .owl-nav button.owl-next {
  right: 26px;
}

.hero-carousel.owl-theme .owl-nav button:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(255, 105, 0, 0.85);
}

.hero-carousel.owl-theme .owl-nav button span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  padding-bottom: 4px;
}

.hero-carousel.owl-theme .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero-carousel.owl-theme .owl-dots .owl-dot span {
  width: 31px;
  height: 4px;
  margin: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, .55);
}

.hero-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: var(--orange);
}

/* ── Utility ── */
.eyebrow {
  color: var(--orange);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: .35px;
}

.section h2 {
  font-size: 28px;
  line-height: 1.28;
  margin: 0 0 24px;
  font-weight: 900;
  letter-spacing: -.5px;
}

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

.section-heading h2 {
  font-size: 31px;
  margin-bottom: 0;
}

.section-heading.light h2 {
  color: #fff;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  gap: 70px;
  align-items: center;
}

.about-copy>p:not(.eyebrow) {
  font-size: 15px;
  color: #424951;
  margin: 0 0 14px;
}

.about-visual {
  position: relative;
  padding: 18px 20px 18px 0;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 0 34px;
  border: 3px solid var(--orange);
  border-radius: 14px;
  transform: rotate(2.5deg);
  opacity: .88;
}

.about-image-frame {
  position: relative;
  z-index: 1;
  border-radius: 12px 45px 12px 45px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(11, 27, 43, .24);
}

.about-image {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform .45s;
}

.about-visual:hover .about-image {
  transform: scale(1.035);
}

.experience-badge {
  padding: 5px 5px 5px 7px;
  position: absolute;
  z-index: 3;
  right: -16px;
  bottom: -12px;
  width: 154px;
  min-height: 82px;
  border-radius: 10px 0 10px 0;
  background: linear-gradient(135deg, #ff7b00, #ee4c00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 12px 25px rgba(211, 79, 0, .28);
}

.experience-badge strong {
  font-size: 34px;
  line-height: 1;
}

.experience-badge span {
  font-size: 14px;
  line-height: 1.28;
  font-weight: 800;
}

.promises {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  max-width: 530px;
  text-align: center;
}

.promises div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.promises i {
  width: 48px;
  height: 48px;
  border: 2px solid #ff8438;
  color: var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-style: normal;
  margin-bottom: 8px;
}

.promises strong,
.promises span {
  font-size: 14px;
  line-height: 1.35;
}

.promises span {
  font-weight: 600;
  color: #4d555d;
}

/* =====================================================================
   SECTION: SẢN PHẨM NỔI BẬT
   ===================================================================== */
.products {
  background: #f4f6f9;
}

/* Owl equal-height */
.product-carousel .owl-stage {
  display: flex;
}

.product-carousel .owl-item {
  display: flex;
  height: auto;
}

.product-carousel .owl-stage-outer {
  padding: 8px 4px 28px;
}

.product-card {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 105, 0, .15);
  border-color: var(--orange);
}

/* Badge nhãn góc trái */
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  box-shadow: 0 3px 8px rgba(255, 87, 34, .35);
}

.product-badge.hot {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  box-shadow: 0 3px 8px rgba(233, 30, 99, .35);
}

/* Ảnh sản phẩm */
.product-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #0d1e2d;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.08);
}

/* Overlay hover */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 35, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

.product-overlay span {
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  transform: translateY(10px);
  transition: transform .3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card:hover .product-overlay span {
  transform: translateY(0);
}

/* Nội dung card */
.product-info {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
  display: block;
}

.product-info h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.3;
}

.product-info h3 a {
  color: var(--navy);
  transition: color .2s;
}

.product-info h3 a:hover {
  color: var(--orange);
}

.product-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed #e2e8f0;
  padding-top: 14px;
  margin-top: auto;
}

.product-price {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
}

.btn-product-action {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 6px;
  transition: transform .2s, box-shadow .2s;
}

.btn-product-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 105, 0, .35);
}

/* Owl nav/dots - Products */
.owl-theme:not(.hero-carousel) .owl-nav {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.owl-theme:not(.hero-carousel) .owl-nav button.owl-prev,
.owl-theme:not(.hero-carousel) .owl-nav button.owl-next {
  width: 38px;
  height: 38px;
  margin: 0 !important;
  border: 1px solid #dce1e5 !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #152332 !important;
  display: grid !important;
  place-items: center;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .08);
  transition: background .2s, border-color .2s, color .2s;
}

.owl-theme:not(.hero-carousel) .owl-nav button:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
}

.owl-theme:not(.hero-carousel) .owl-nav button span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  padding-bottom: 4px;
}

.owl-theme:not(.hero-carousel) .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 12px 4px 0;
  background: #d8dce0;
  border-radius: 50%;
}

.owl-theme:not(.hero-carousel) .owl-dots .owl-dot.active span {
  background: var(--orange);
}

/* =====================================================================
   SECTION: DỊCH VỤ
   ===================================================================== */
.services {
  position: relative;
  color: #fff;
  background-color: var(--navy);
  background-image: linear-gradient(135deg, rgba(7, 21, 35, .93) 0%, rgba(16, 38, 58, .9) 100%),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.service-wrap {
  position: relative;
}

/* Owl equal-height - Services */
.service-carousel .owl-stage {
  display: flex;
}

.service-carousel .owl-item {
  display: flex;
  height: auto;
}

.service-carousel .owl-stage-outer {
  padding: 8px 4px 28px;
}

.service-carousel .owl-dots {
  display: none !important;
}

/* Nút nav trong vùng tối */
.services .owl-theme:not(.hero-carousel) .owl-nav button.owl-prev,
.services .owl-theme:not(.hero-carousel) .owl-nav button.owl-next {
  background: rgba(255, 255, 255, .1) !important;
  border-color: rgba(255, 255, 255, .3) !important;
  color: #fff !important;
}

.services .owl-theme:not(.hero-carousel) .owl-nav button:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}

.service-card {
  width: 100%;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .45);
  background: rgba(255, 255, 255, .14);
}

.service-card>img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  filter: brightness(.9);
  transition: transform .4s ease, filter .4s ease;
  display: block;
}

.service-card:hover>img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.service-card>div {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
  background: rgba(5, 15, 28, .55);
}

.service-card i {
  font-style: normal;
  color: var(--orange);
  font-size: 26px;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: rgba(255, 105, 0, .15);
  border: 1px solid rgba(255, 105, 0, .35);
  display: grid;
  place-items: center;
}

.service-card h3 {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  font-weight: 800;
  color: #fff;
}

/* =====================================================================
   SECTION: ALBUM ẢNH
   ===================================================================== */
/* Owl equal-height - Gallery */
.gallery-carousel .owl-stage-outer {
  padding: 8px 4px 28px;
}

.gallery-carousel .owl-dots {
  display: none !important;
}

.gallery-carousel a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
  cursor: pointer;
}

.gallery-carousel img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gallery-carousel a:hover img {
  transform: scale(1.08);
}

.gallery-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 35, .65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-zoom-overlay .zoom-icon {
  font-size: 28px;
  transform: scale(.7);
  transition: transform .3s ease;
}

.gallery-zoom-overlay span:not(.zoom-icon) {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
}

.gallery-carousel a:hover .gallery-zoom-overlay {
  opacity: 1;
}

.gallery-carousel a:hover .gallery-zoom-overlay .zoom-icon {
  transform: scale(1);
}

/* =====================================================================
   SECTION: FEEDBACK KHÁCH HÀNG
   ===================================================================== */
.testimonials {
  background: linear-gradient(180deg, #fff 0%, #f0f4f9 100%);
  padding-top: 36px;
}

/* Section heading light (trên nền tối - Dịch vụ) */
.section-heading.light .eyebrow {
  color: rgba(255, 200, 100, .9);
}

.section-heading.light h2 {
  color: #fff;
}

/* Owl equal-height - Testimonials */
.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-carousel .owl-item {
  display: flex;
  height: auto;
}

.testimonial-carousel .owl-stage-outer {
  padding: 8px 4px 28px;
}

.testimonial-carousel .owl-nav {
  display: none !important;
}

.quote {
  width: 100%;
  min-height: 230px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .09);
}

.person {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 4px;
}

.person .avatar {
  width: 54px !important;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 10px rgba(255, 105, 0, .25);
  display: block;
}

.person h3 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 2px;
  color: var(--navy);
}

.person small {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  display: block;
}

.stars {
  font-size: 16px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin: 12px 0 8px;
  display: block;
}

.quote>p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #4a5056;
  flex: 1;
}

/* =====================================================================
   SECTION: TIN TỨC
   ===================================================================== */
.news {
  padding-top: 48px;
}

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

.news-grid article {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 17px;
}

.news-grid img {
  width: 145px;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
}

.news-grid h3 {
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 8px;
}

.news-grid p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: #626970;
}

.news-grid a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  position: relative;
  color: #e2e8f0;
  background-color: #07121e;
  background-image:
    linear-gradient(135deg, rgba(5, 14, 24, .96) 0%, rgba(9, 25, 41, .94) 100%),
    url('https://images.unsplash.com/photo-1511193311914-0346f16efe90?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr 1fr;
  gap: 32px;
  padding-top: 54px;
  padding-bottom: 46px;
}

/* Wrapper mỗi cột footer */
.footer-col {
  min-width: 0;
}

.footer-title {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .5px;
  margin: 0 0 22px;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* Thông tin liên hệ */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #cbd5e1;
}

.contact-list .c-icon {
  font-size: 16px;
  flex: 0 0 22px;
  margin-top: 1px;
}

.contact-list strong {
  color: #fff;
}

.contact-list a {
  color: #cbd5e1;
  transition: color .2s;
}

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

/* Chính sách */
.policy-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-links li {
  margin-bottom: 12px;
}

.policy-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #cbd5e1;
  transition: color .2s, transform .2s;
}

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

.policy-links .p-arrow {
  color: var(--orange);
  font-weight: 900;
  font-size: 15px;
}

/* Bản đồ */
.footer-map {
  width: 100%;
  height: 200px;
  border-radius: 8px !important;
  display: block;
  border: none;
  filter: saturate(.85) contrast(1.02);
}

/* Facebook widget */
.fb-widget-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  color: #1c2b36;
}

.fb-cover {
  position: relative;
  height: 100px;
  background: #1877f2;
  /* overflow: hidden; */
}

.fb-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-avatar-wrap {
  position: absolute;
  left: 14px;
  bottom: -18px;
}

.fb-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #030506;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
  overflow: hidden;
}

/* Override brand-crown/brand-ball inside fb-avatar only */
.fb-avatar .brand-crown {
  font-size: 13px !important;
  position: absolute !important;
  top: 3px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  color: #fff !important;
  text-shadow: none !important;
}

.fb-avatar .brand-ball {
  width: 26px !important;
  height: 26px !important;
  border: 1px solid rgba(255, 255, 255, .5) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle at 37% 28%, #515151, #050505 60%) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  display: grid !important;
  place-items: center !important;
  margin-top: 10px !important;
  box-shadow: none !important;
}

.fb-body {
  padding: 26px 14px 16px;
  background: #fff;
}

.fb-page-name {
  font-size: 15px;
  font-weight: 800;
  color: #050505;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: color .2s;
}

.fb-page-name:hover {
  color: #1877f2;
  text-decoration: underline;
}

.fb-verified {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
}

.fb-subtext {
  font-size: 12px;
  color: #65676b;
  margin: 3px 0 14px;
}

.fb-actions {
  display: flex;
  gap: 8px;
}

.fb-btn {
  flex: 1;
  height: 34px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: background .2s;
}

.fb-btn-like {
  background: #e4e6eb;
  color: #050505;
}

.fb-btn-like:hover {
  background: #d8dadf;
}

.fb-btn-msg {
  background: #1877f2;
  color: #fff;
}

.fb-btn-msg:hover {
  background: #166fe5;
}

/* Copyright & Back-top */
.copyright {
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: 14px;
  padding: 18px;
  color: #8fa3b5;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 22px !important;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(255, 105, 0, .4);
  cursor: pointer;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, visibility .25s, transform .25s;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1260px) {
  .header-inner {
    gap: 15px;
  }

  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 14px;
  }

  .socials {
    display: none;
  }
}

@media (max-width: 1020px) {
  .site-header {
    height: 70px;
  }

  .brand {
    margin-right: auto;
    min-width: 200px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
    min-width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .menu-toggle:hover {
    background: var(--orange);
    border-color: var(--orange);
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    height: auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: #090e15;
    padding: 0 24px;
    gap: 0;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
    border-bottom: 3px solid var(--orange);
    transition: max-height 0.35s ease-in-out, opacity 0.3s ease, padding 0.35s ease;
    z-index: 99;
  }

  .main-nav.open {
    max-height: 85vh;
    opacity: 1;
    overflow-y: auto;
    padding: 14px 24px 24px;
  }

  .main-nav a.nav-link {
    height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 15px;
    font-weight: 700;
  }

  .main-nav a.nav-link.active::after {
    display: none;
  }

  .nav-item.has-submenu {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-item-header {
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-item-header a.nav-link {
    border-bottom: none;
    flex: 1;
  }

  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 10px;
    line-height: 1;
    padding: 0;
  }

  .submenu-toggle:hover,
  .nav-item.submenu-open .submenu-toggle {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
  }

  .submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-left: 2px solid var(--orange);
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0 6px 12px;
    margin: 2px 0 10px;
  }

  .submenu li a {
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 14px;
    color: #94a3b8;
  }

  .submenu li a:hover {
    color: var(--orange);
    background: transparent;
    padding-left: 16px;
  }

  .hero {
    height: 540px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-carousel .hero-slide {
    height: 540px;
  }

  .about-grid {
    grid-template-columns: 1fr 45%;
    gap: 38px;
  }

  .about-image {
    height: 370px;
  }

  .about-visual {
    padding-right: 14px;
  }

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

  .news-grid article {
    grid-template-columns: 220px 1fr;
  }

  .news-grid img {
    width: 220px;
    height: 170px;
  }

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

  .footer-map {
    height: 180px;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 30px);
  }

  .section {
    padding: 52px 0;
  }

  .hotline {
    font-size: 12px;
    padding: 5px 11px;
  }

  .hotline span {
    font-size: 12px;
    margin: 0;
  }

  .brand {
    min-width: 158px;
    gap: 7px;
  }

  .brand-emblem {
    width: 42px;
    height: 51px;
    flex-basis: 42px;
  }

  .brand-ball {
    width: 38px !important;
    height: 38px !important;
    font-size: 19px !important;
  }

  .brand-crown {
    font-size: 20px !important;
    top: 0 !important;
  }

  .brand-emblem::before,
  .brand-emblem::after {
    height: 32px;
  }

  .brand-name b {
    font-size: 21px;
  }

  .brand-name strong {
    font-size: 14px;
    letter-spacing: .6px;
  }

  .brand-name small {
    display: none;
  }

  .hero {
    height: 450px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: 52px;
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 15px;
    margin: 18px 0;
    max-width: 330px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .08) 75%);
  }

  .hero-carousel .hero-slide {
    height: 500px;
  }

  .hero-carousel.owl-theme .owl-nav button.owl-prev,
  .hero-carousel.owl-theme .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    display: none !important;
  }

  .hero-carousel.owl-theme .owl-nav button.owl-prev {
    left: 10px;
  }

  .hero-carousel.owl-theme .owl-nav button.owl-next {
    right: 10px;
  }

  .section-heading h2,
  .section h2 {
    font-size: 24px;
  }

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

  .about-image {
    height: 300px;
  }

  .about-visual {
    padding: 12px 10px 16px 0;
  }

  .experience-badge {
    right: -4px;
    bottom: -8px;
    width: 144px;
  }

  .promises {
    gap: 8px;
  }

  .promises div {
    min-width: 0;
    flex: 1;
  }

  .promises strong,
  .promises span {
    font-size: 13px;
  }

  .gallery-carousel img {
    height: 190px;
  }

  .news-grid article {
    grid-template-columns: 1fr;
  }

  .news-grid img {
    width: 100%;
    height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-map {
    height: 220px !important;
  }
}

/* =====================================================================
   SUBPAGES GLOBAL STYLES (Banner, Breadcrumb, Sidebar, Layouts)
   ===================================================================== */
.page-banner {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(7, 21, 35, 0.92) 0%, rgba(16, 38, 58, 0.88) 100%),
              url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  border-bottom: 3px solid var(--orange);
}
.page-banner h1 {
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb a {
  color: #cbd5e1;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--orange);
}
.breadcrumb span {
  color: var(--orange);
}
.breadcrumb i {
  font-size: 12px;
  color: #64748b;
}

/* Sidebar Layout */
.page-section {
  padding: 60px 0;
  background: #f8fafc;
}
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}
.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.widget-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 10px;
}
.widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* Search widget */
.search-form {
  display: flex;
  position: relative;
}
.search-form input {
  width: 100%;
  height: 44px;
  padding: 0 45px 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.search-form input:focus {
  border-color: var(--orange);
}
.search-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 38px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Widget Lists */
.widget-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-category-list li {
  border-bottom: 1px dashed #e2e8f0;
}
.widget-category-list li:last-child {
  border-bottom: none;
}
.widget-category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  transition: color 0.2s;
}
.widget-category-list a:hover {
  color: var(--orange);
}
.widget-category-list span.count {
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
}

/* Recent items widget */
.recent-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.recent-item:last-child {
  margin-bottom: 0;
}
.recent-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.recent-item-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.35;
}
.recent-item-info h4 a {
  color: var(--navy);
  transition: color 0.2s;
}
.recent-item-info h4 a:hover {
  color: var(--orange);
}
.recent-item-info span {
  font-size: 12px;
  color: #94a3b8;
}

/* CTA Banner widget */
.cta-widget {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.cta-widget h4 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--orange);
}
.cta-widget p {
  font-size: 13px;
  margin: 0 0 18px;
  color: #cbd5e1;
}
.cta-widget .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.pagination a:hover, .pagination span.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ==================== NEWS LIST & DETAIL STYLES ==================== */
.news-list-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-card-horizontal {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.news-card-horizontal img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}
.news-card-content {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}
.news-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
}
.news-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-meta i {
  color: var(--orange);
}
.news-card-content h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.35;
}
.news-card-content h3 a {
  color: var(--navy);
  transition: color 0.2s;
}
.news-card-content h3 a:hover {
  color: var(--orange);
}
.news-card-content p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}
.btn-read-more {
  align-self: flex-start;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-read-more:hover {
  gap: 10px;
}

/* News Detail */
.news-detail-wrapper {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 32px;
}
.news-detail-header {
  margin-bottom: 24px;
}
.news-detail-header h1 {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.3;
}
.news-detail-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 24px;
}
.news-detail-content {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
}
.news-detail-content p {
  margin-bottom: 18px;
}
.news-detail-content h2, .news-detail-content h3 {
  color: var(--navy);
  font-weight: 800;
  margin: 28px 0 14px;
}
.news-detail-content blockquote {
  background: #fff7ed;
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
  font-weight: 600;
  color: #9a3412;
  border-radius: 0 8px 8px 0;
}
.news-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
  margin: 32px 0;
}
.news-share-bar strong {
  font-size: 15px;
  color: var(--navy);
}
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.share-fb { background: #1877f2; }
.share-zalo { background: #0068ff; }
.share-link { background: #64748b; }

/* Author Box */
.author-box {
  display: flex;
  gap: 16px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 32px;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h4 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--navy);
}
.author-info p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

/* Related articles */
.related-news-section h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--navy);
}
.related-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-news-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}
.related-news-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.related-news-card-body {
  padding: 14px;
}
.related-news-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.35;
}
.related-news-card-body h4 a {
  color: var(--navy);
}

/* ==================== PRODUCT LIST & DETAIL STYLES ==================== */
.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
}
.product-toolbar p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}
.product-sort-select {
  padding: 6px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Product Detail */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 32px;
  margin-bottom: 40px;
}
.product-gallery-main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 14px;
}
.product-gallery-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.product-thumbs {
  display: flex;
  gap: 10px;
}
.product-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumbs img.active, .product-thumbs img:hover {
  border-color: var(--orange);
}
.product-detail-summary h1 {
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 12px;
}
.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.product-detail-rating .stars {
  margin: 0;
}
.product-detail-meta {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
}
.product-detail-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-detail-price .old-price {
  font-size: 18px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}
.product-spec-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px dashed #e2e8f0;
  border-bottom: 1px dashed #e2e8f0;
  padding: 16px 0;
}
.product-spec-highlights ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 8px;
}
.product-spec-highlights ul li:last-child {
  margin-bottom: 0;
}
.product-spec-highlights ul li i {
  color: var(--orange);
}
.product-spec-highlights li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f058";
    color: var(--orange);
}
.product-action-buttons {
  display: flex;
  gap: 14px;
}
.btn-buy-now {
  flex: 1;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(255, 105, 0, 0.3);
  transition: transform 0.2s;
}
.btn-buy-now:hover {
  transform: translateY(-2px);
}
.btn-zalo-call {
  background: #0068ff;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Product Tabs */
.product-detail-tabs {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.tab-headers {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.tab-btn {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 800;
  color: #64748b;
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.tab-btn.active {
  color: var(--orange);
  background: #fff;
  border-bottom-color: var(--orange);
}
.tab-content-body {
  padding: 30px;
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table tr:nth-child(even) {
  background: #f8fafc;
}
table td {
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
}
table td:first-child {
  font-weight: 700;
  width: 220px;
  color: var(--navy);
}

/* ==================== ALBUM LIST & DETAIL STYLES ==================== */
.album-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.album-tab-btn {
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.album-tab-btn.active, .album-tab-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.album-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.album-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s;
}
.album-card:hover {
  transform: translateY(-6px);
}
.album-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.album-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.album-card:hover .album-card-img img {
  transform: scale(1.08);
}
.photo-count-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 6px;
}
.album-card-info {
  padding: 18px;
}
.album-card-info h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
}
.album-card-info h3 a {
  color: var(--navy);
}
.album-card-info p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* Album Detail */
.project-summary-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px 30px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.project-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.project-summary-item i {
  font-size: 24px;
  color: var(--orange);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff7ed;
  display: grid;
  place-items: center;
}
.project-summary-item strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}
.project-summary-item span {
  font-size: 13px;
  color: #64748b;
}
.album-detail-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.album-photo-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 240px;
  display: block;
}
.album-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.album-photo-item:hover img {
  transform: scale(1.08);
}
.album-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 35, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}
.album-photo-item:hover .album-photo-overlay {
  opacity: 1;
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.contact-card-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.contact-card-item i {
  font-size: 30px;
  color: var(--orange);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff7ed;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.contact-card-item h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--navy);
}
.contact-card-item p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 32px;
}
.contact-form-box h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 8px;
}
.contact-form-box p {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
textarea.form-control {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
}
.form-control:focus {
  border-color: var(--orange);
}
.btn-submit-contact {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(255, 105, 0, 0.3);
}

.contact-map-box {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  height: 100%;
  min-height: 420px;
}
.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Subpages */
@media (max-width: 1020px) {
  .sidebar-layout {
    grid-template-columns: 1fr;
  }
  .news-card-horizontal {
    grid-template-columns: 1fr;
  }
  .news-card-horizontal img {
    height: 200px;
  }
  .products-page-grid, .album-grid-page, .album-detail-photos {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-layout, .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards-grid, .project-summary-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .products-page-grid, .album-grid-page, .album-detail-photos, .contact-cards-grid, .project-summary-box, .related-news-grid {
    grid-template-columns: 1fr;
  }
  .product-action-buttons {
    flex-direction: column;
  }
}

/* Zoom Overlay Hints for Fancybox Lightbox */
.product-gallery-main a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.product-gallery-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-gallery-main:hover img {
  transform: scale(1.04);
}
.gallery-zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(7, 21, 35, 0.8);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
}
.product-gallery-main:hover .gallery-zoom-hint {
  background: var(--orange);
  transform: scale(1.05);
}

.album-photo-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 240px;
  display: block;
  cursor: pointer;
}
.album-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.album-photo-item:hover img {
  transform: scale(1.08);
}
.album-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 35, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.album-photo-item:hover .album-photo-overlay {
  opacity: 1;
}

/* ── Search Page Styles ── */
.search-header-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.search-input-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.search-input-form input {
  flex: 1;
  height: 48px;
  padding: 0 18px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
}
.search-input-form input:focus {
  border-color: var(--orange);
}
.search-input-form button {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.search-input-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 105, 0, 0.35);
}
.search-meta-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #64748b;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}
.search-filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.search-tab-btn {
  padding: 9px 20px;
  border-radius: 25px;
  background: #f1f5f9;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.search-tab-btn:hover,
.search-tab-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.search-tab-btn .badge-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}
.search-tab-btn:not(.active) .badge-count {
  background: #cbd5e1;
  color: #334155;
}
.search-tags-cloud {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.search-tag-link {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  transition: all 0.2s;
  text-decoration: none;
}
.search-tag-link:hover {
  background: #fff7ed;
  border-color: var(--orange);
  color: var(--orange);
}

@media screen and (max-width: 600px) {
    .page-section {
        padding: 24px 0;
    }
    .page-banner h1 {
        font-size: 24px;
    }
    .product-detail-layout, .contact-main-grid {
        padding: 24px;
        gap: 10px;
    }
    .product-detail-summary h1 {
        font-size: 20px;
    }
    .product-detail-price {
        font-size: 18px;
    }
    .product-detail-meta {
        font-size: 13px;
    }
    .tab-btn {
        padding: 18px 20px;
        font-size: 14px;
    }
}


