/* Custom Cursor Follower Styles (Performance Optimized) */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background-image: url(../img/pointer.png);
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: 0px bottom;
  /* background: radial-gradient(circle, rgba(243, 112, 32, 0.8) 0%, rgba(229, 90, 43, 0.4) 100%); */
  /* border-radius: 50%; */
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  mix-blend-mode: normal;

  /* Performance optimizations */
  will-change: transform; /* Báo browser tối ưu GPU cho transform */
  backface-visibility: hidden; /* Tăng rendering performance */
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0); /* Force GPU acceleration */
}

/* Hide by default until mouse moves */
.cursor-follower.hidden {
  opacity: 0;
}

/* Scale up when hovering clickable elements */
.cursor-follower.hover-active {
  transform: translate3d(0, 0, 0) scale(1.2); /* Scale up slightly on hover */
  opacity: 1;
}

/* Animation for smooth appearance */
@keyframes cursorFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Hide cursor follower on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor-follower {
    display: none;
  }
}

/* Hide cursor follower on small screens */
@media (max-width: 768px) {
  .cursor-follower {
    display: none;
  }
}

.bg-orange {
  background: linear-gradient(135deg, #f37020 0%, #e55a2b 100%);
}

/* Reusable ScrollMagic Animation Classes */
.scroll-animate {
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* Slide from left */
.scroll-animate.slide-left {
  transform: translateX(-100px);
}

.scroll-animate.slide-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.scroll-animate.slide-right {
  transform: translateX(100px);
}

.scroll-animate.slide-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from top */
.scroll-animate.slide-top {
  transform: translateY(-50px);
}

.scroll-animate.slide-top.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from bottom */
.scroll-animate.slide-bottom {
  transform: translateY(50px);
}

.scroll-animate.slide-bottom.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Scale animation */
.scroll-animate.scale-up {
  transform: scale(0.8);
}

.scroll-animate.scale-up.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Fade in */
.scroll-animate.fade-in {
  transform: none;
}

.scroll-animate.fade-in.animate-in {
  opacity: 1;
}

/* Combined animations */
.scroll-animate.slide-left-scale {
  transform: translateX(-100px) scale(0.9);
}

.scroll-animate.slide-left-scale.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.scroll-animate.slide-right-scale {
  transform: translateX(100px) scale(0.9);
}

.scroll-animate.slide-right-scale.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Delay classes for staggered animations */
.scroll-animate.delay-100 {
  transition-delay: 0.1s;
}

.scroll-animate.delay-200 {
  transition-delay: 0.2s;
}

.scroll-animate.delay-300 {
  transition-delay: 0.3s;
}

.scroll-animate.delay-400 {
  transition-delay: 0.4s;
}

.scroll-animate.delay-500 {
  transition-delay: 0.5s;
}

/* Smooth transitions for better UX */
.btn {
  transition: all 0.3s ease;
}

.logo-img {
  transition: all 0.3s ease;
}

/* Report Number Section Styles */
.report-number {
  background: #f8f9fa;
  padding: 0 0;
  height: 495px;
}

.top-report-number {
  background: #f8f9fa;
  height: 250px;
}

.bottom-report-number {
  background: #e9ecef;
  height: 245px;
}

/* Certificate Section */
.certificate-section {
  text-align: center;
  padding: 20px;
}

.certificate-image {
  width: 100%;
  position: relative;
}

.certificate-image img {
  position: absolute;
  top: 0;
}

.certificate-image.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Statistics Section */
.statistics-section {
  padding: 20px 40px;
}

.main-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f37020;
  margin-bottom: 20px;
  line-height: 1.3;
  opacity: 1;
  transition: all 0.8s ease-out;
}

.main-title.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 1;
  transition: all 0.8s ease-out;
}

.description.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Achievement Box */
.achievement-box {
  transition: all 0.8s ease-out;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.achievement-box.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.achievement-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f36f20;
  margin-bottom: 5px;
  line-height: 1.3;
}

.achievement-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

h4.achievement-subtitle {
  font-size: 1rem;
  color: #f37020;
  font-weight: 400;
}

p.achievement-subtitle {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 300;
}

.main-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f37020;
  text-align: center;
  line-height: 1;
}

.stats-grid {
  background-color: white;
  padding: 15px 0px;
  border-radius: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  transition: all 0.6s ease-out;
  margin-bottom: 15px;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f37020;
  margin-bottom: 0px;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  line-height: 1.2;
}

.bottom-text {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin-top: 20px;
}

.bottom-text.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.bottom-text.animate-in .bg-orange {
  background: linear-gradient(135deg, #f37020 0%, #e55a2b 100%);
}

.top-report-number p.description {
  text-align: justify;
  font-size: 0.75rem;
  font-weight: 300;
  margin-bottom: 0px;
}

.brand-intro {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0;
}

.brand-intro-box {
  display: flex;
  flex-direction: column;
  height: 250px;
  justify-content: center;
}

.wrap-running-number {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wrap-running-number .running-number {
  display: flex;
  padding-left: 40px;
  justify-content: space-between;
  align-items: center;
}

.running-number .stat-item {
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.running-number .main-number {
  font-size: 4rem;
}

.running-number .stat-label {
  font-size: 0.9rem;
  margin-top: 8px;
}

.running-number .middle-number {
  border-left: 1px solid #f37020;
  border-right: 1px solid #f37020;
  padding-left: 25px;
  padding-right: 25px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statistics-section {
    padding: 20px;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .main-number {
    font-size: 2.5rem;
  }
}

.about-365 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-365-swiper {
  height: 300px;
}

.about-365-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.about-365-swiper .slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-365-swiper .swiper-slide:hover .slide-image {
  transform: scale(1.05);
}

.about-365-swiper .swiper-pagination {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}

.swiper-pagination-bullet {
  background: rgb(243 111 32 / 50%);
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  background: #f37020;
}

.about-365-swiper .swiper-pagination-bullet {
  width: 30px;
  height: 5px;
  background: rgb(243 111 32 / 50%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.about-365-swiper .swiper-pagination-bullet-active {
  background: #f37020;
}

h1.about-365-title {
  color: #f36f20;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 30px;
}

h1.category-title {
  color: #f36f20 !important;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0;
}

h1.about-lams-title {
  color: #f36f20 !important;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0;
}

.about-lams-subtitle {
  font-weight: 600;
  color: #575757;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

.an-toan .about-lams-subtitle {
  text-transform: none;
  font-weight: 400;
  line-height: 1.3;
  font-size: 1.4rem;
}

.quy-trinh .about-lams-subtitle {
  text-transform: none;
  font-weight: 400;
  line-height: 1.3;
  font-size: 1.5rem;
}

/* Mobile Content Block Styles */
.about-365-content-mobile-text {
  background-color: #e9ebed;
  padding: 30px 20px;
  margin-top: 0;
}

.mobile-content-block {
  text-align: center;
  max-width: 100%;
}

.mobile-main-title {
  color: #f37020;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  font-family: "SVN-Gotham", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0px;
}

.mobile-slogan {
  color: #4a4a4a;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 25px 0;
  font-family: "SVN-Gotham", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-features-list {
  text-align: left;
  max-width: 90%;
  margin: 0 auto 30px auto;
}

.mobile-features-list .feature-item {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-bottom: 15px;
  gap: 12px;
  flex-direction: row;
}

.mobile-features-list .feature-icon {
  width: 20px;
  height: 20px;
  background-color: #f37020;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* margin-top: 2px; */
  margin-bottom: 0px;
}

.mobile-features-list .feature-icon i {
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.mobile-features-list .feature-text {
  color: #000000;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
  letter-spacing: -1px;
  word-spacing: 0px;
  font-weight: 300;
}

.mobile-features-list .swiper-pagination {
  bottom: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
  .mobile-main-title {
    font-size: 1.5rem;
  }

  .mobile-slogan {
    font-size: 1rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }

  .about-365-content-mobile-text {
    padding: 25px 15px;
  }

  .mobile-features-list {
    max-width: 100%;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}

/* Ky Nguyen Mobile Styles */
.ky-nguyen-mobile {
  background: url("../img/about_365mc/ky-nguyen_bg-mobile.png") no-repeat center
    center;
  background-size: cover;
}

.ky-nguyen-mobile p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 15px;
  padding: 0 15px;
}

.ky-nguyen-slide-content {
  background: url(../img/about_365mc/opacity-bg.png) no-repeat;
  background-size: cover;
  border-radius: 15px 15px 0px 0px;
  margin: 0px 0px 0px 20px;
  background-position: top;
  padding: 25px 0px 10px 25px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -25px;
  top: 48px;
  width: 2px;
  height: calc(100% + 10px);
  background: #f37020;
  z-index: 0;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #f37020;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  padding: 8px;
  position: absolute;
  left: -45px;
}

.timeline-icon i {
  color: white;
  font-size: 24px;
}

.timeline-text {
  flex: 1;
  padding-top: 5px;
}

.timeline-text p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
  padding-right: 20px;
}

.ky-nguyen-slide-image {
  padding: 0;
  margin: 0 10px;
}

.ky-nguyen-slide-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.ky-nguyen-mobile-slider {
  padding-bottom: 30px;
}

.ky-nguyen-mobile-slider .swiper-pagination {
  bottom: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .ky-nguyen-mobile {
    width: 100%;
    background: url("../img/about_365mc/ky-nguyen_bg-mobile.png") no-repeat
      center center;
    background-size: cover;
  }

  .about-365-swiper .swiper-pagination {
    width: 100%;
  }

  .about-365-swiper {
    height: 250px;
    margin: 0 15px;
  }

  .about-365-swiper .slide-overlay {
    bottom: 15px;
    right: 15px;
    left: 15px;
    max-width: none;
    padding: 12px 15px;
  }

  .about-365-swiper .overlay-text {
    font-size: 13px;
    text-align: center;
  }

  .about-365-swiper .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    margin: 0 4px;
  }

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

  .main-title {
    font-size: 1.3rem;
  }

  .main-number {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  h1.about-365-title {
    text-align: center;
    font-size: 1.5rem;
  }
}

/* ===================================
     Category Page Styles
     =================================== */

/* Category Banner */
.category-banner {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.category-banner .category-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.category-banner .category-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Posts Grid */
.category-posts {
  padding: 0 0 80px;
}

.post-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-item .post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.post-item .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-item:hover .post-thumbnail img {
  transform: scale(1.1);
}

.post-item .post-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-item .post-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.post-item .post-title a {
  color: #f36f20;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-item .post-title a:hover {
  color: #667eea;
}

.post-item .post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.post-item .post-meta i {
  margin-right: 5px;
}

.post-item .post-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.post-item .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-item .read-more:hover {
  color: #764ba2;
  gap: 12px;
}

/* No Posts */
.no-posts {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.no-posts h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.no-posts p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.no-posts .btn-primary {
  background: #667eea;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.no-posts .btn-primary:hover {
  background: #764ba2;
  transform: translateY(-2px);
}

/* Pagination */
.pagination-wrapper {
  margin-top: 50px;
}

.pagination-wrapper .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0 15px;
  background: white;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.pagination-wrapper .page-numbers:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.pagination-wrapper .page-numbers.current {
  background: #667eea;
  color: white;
}

.pagination-wrapper .page-numbers.dots {
  background: transparent;
  box-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .category-banner {
    padding: 60px 0 40px;
  }

  .post-breadcrumb {
    padding: 10px !important;
  }

  .post-breadcrumb .breadcrumb-item.active {
    max-width: 200px;
  }

  .category-banner .category-title {
    font-size: 2rem;
  }

  .category-banner .category-description {
    font-size: 1rem;
  }

  .post-item .post-thumbnail {
    height: 200px;
  }

  .post-item .post-title {
    font-size: 1.2rem;
  }

  .post-item .post-content {
    padding: 20px;
  }

  .why-lams-content-mobile h1.about-lams-title {
    font-size: 1.5rem;
    padding: 0 15px;
    margin-bottom: 15px;
  }

  .why-lams-swiper {
    background: #f2f2f2;
    width: 100%;
    position: relative;
    padding: 15px;
  }

  p.why-lams-content-mobile-text {
    font-size: 13px;
    text-align: justify;
    font-weight: 400;
    padding-bottom: 15px;
    display: block;
    position: relative;
  }

  p.why-lams-content-mobile-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 2px;
    background: #f36f20;
  }

  .about-lams-subtitle {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .uu-diem-content-mobile img {
    padding: 20px 55px;
  }

  .an-toan .about-lams-title {
    font-size: 1.5rem;
  }

  .an-toan .about-lams-subtitle {
    font-size: 1rem;
    margin-top: 10px;
  }

  .quy-trinh {
    padding-top: 0 !important;
  }

  .quy-trinh-swiper {
    padding-bottom: 15px;
  }

  .quy-trinh-swiper img {
    height: 180px;
  }

  .step-number {
    background: #f36f20;
    color: #fff;
    text-align: center;
    height: 5px;
    position: relative;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 35px;
    display: block;
  }

  .step-number span {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    z-index: 99;
    background: #f36f20;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    left: 43%;
    top: -25px;
  }

  .step-text {
    color: #5d5d5d;
  }

  .step-text h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0px;
    margin-bottom: 15px;
  }

  .step-text p {
    text-align: justify;
    font-size: 13px;
  }

  .fit-for {
    padding-bottom: 0px !important;
  }

  .fit-for .about-lams-title {
    font-size: 1.5rem;
  }

  .fit-for-swiper {
    padding-bottom: 40px;
  }

  .fit-for-swiper .swiper-slide {
    background: #fff0e6;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .fit-for-swiper .swiper-slide p {
    font-size: 13px;
    font-weight: 300;
    padding: 0px 35px;
    margin-top: 20px;
    line-height: 1.3;
    height: 40px;
  }

  .fit-for-swiper .swiper-slide img {
    height: 200px;
  }
}

/* ===================================
     Single Post Page Styles
     =================================== */

.single-post-page {
  background-color: #fff;
}

.post-single-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Post Header */
.post-header {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.post-header .post-featured-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-header .post-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Post Main Content */
.post-main-content {
}

/* Breadcrumb */
.post-breadcrumb {
  padding: 20px 100px;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.post-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 13px;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}

.post-breadcrumb .breadcrumb-item {
  white-space: nowrap;
}

.post-breadcrumb .breadcrumb-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-breadcrumb .breadcrumb-item a:hover {
  color: #f36f20;
}

.post-breadcrumb .breadcrumb-item.active {
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 500px;
}

.post-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 8px;
  color: #999;
}

/* Post Title */
.post-single-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Post Meta */
.post-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px 0;
  /* border-top: 1px solid #e5e5e5;
      border-bottom: 1px solid #e5e5e5; */
  /* margin-bottom: 20px; */
  color: #666;
  font-size: 0.95rem;
}

.post-single-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-single-meta .meta-item i {
  color: #f36f20;
  font-size: 1.1rem;
}

.post-single-meta .meta-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-single-meta .meta-item a:hover {
  color: #f36f20;
}

/* Post Content */
.post-single-content {
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

.post-single-content p {
  margin-bottom: 0px;
  font-weight: normal;
}

.post-single-content h2,
.post-single-content h3,
.post-single-content h4 {
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #e55a2b;
}

.post-single-content h2 {
  font-size: 2rem;
}

.post-single-content h3 {
  font-size: 1.6rem;
}

.post-single-content h4 {
  font-size: 1.3rem;
}

.post-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
}

.post-single-content ul,
.post-single-content ol {
  padding-left: 30px;
  margin-bottom: 20px;
}

.post-single-content li {
  margin-bottom: 10px;
}

.post-single-content blockquote {
  border-left: 4px solid #f36f20;
  padding: 20px 30px;
  margin: 30px 0;
  background: #f8f9fa;
  font-style: italic;
  color: #555;
}

.post-single-content a {
  color: #f36f20;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.post-single-content a:hover {
  border-bottom-color: #f36f20;
}

/* Post Tags */
.post-tags {
  padding: 25px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
}

.post-tags i {
  color: #f36f20;
  margin-right: 10px;
  font-size: 1.1rem;
}

.post-tags a {
  display: inline-block;
  padding: 6px 15px;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 5px 5px 5px 0;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: #f36f20;
  color: white;
}

/* Post Navigation */
.post-navigation {
  margin: 60px 0;
}

.post-navigation .nav-post {
  display: block;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.post-navigation .nav-post:hover {
  background: #f36f20;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(243, 111, 32, 0.2);
}

.post-navigation .nav-post .nav-label {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 8px;
  font-weight: 600;
}

.post-navigation .nav-post:hover .nav-label {
  color: rgba(255, 255, 255, 0.8);
}

.post-navigation .nav-post .nav-title {
  display: block;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

.post-navigation .nav-post:hover .nav-title {
  color: white;
}

.post-navigation .prev-post .nav-label {
  text-align: left;
}

.post-navigation .next-post .nav-label {
  text-align: right;
}

/* Related Posts */
.related-posts {
  margin: 60px 0;
  padding-top: 50px;
  border-top: 2px solid #e5e5e5;
}

.related-posts-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.related-posts-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #f36f20;
}

.related-post-item {
  /* background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
  /* height: 100%; */
}

.related-post-item:hover {
  transform: translateY(-5px);
}

.related-post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.related-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-thumbnail img {
  transform: scale(1.1);
}

.related-post-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.related-post-title {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 0px;
  line-height: 1.4;
}

.related-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-title a:hover {
  color: #f36f20;
}

.related-post-date {
  font-size: 0.9rem;
  color: #999;
}

.related-post-date i {
  margin-right: 5px;
}

/* Mobile Responsive for Single Post */
@media (max-width: 768px) {
  .post-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px !important;
  }

  .breadcrumb-item + .breadcrumb-item {
    padding-left: 0 !important;
  }

  .post-header .post-featured-image {
    max-height: 300px;
  }

  .post-breadcrumb .breadcrumb-item.active {
    max-width: 200px;
  }

  .post-single-title {
    font-size: 1.8rem;
  }

  .post-single-meta {
    gap: 15px;
    font-size: 0.85rem;
  }

  .post-single-content {
    font-size: 1rem;
  }

  .post-single-content h2 {
    font-size: 1.6rem;
  }

  .post-single-content h3 {
    font-size: 1.3rem;
  }

  .post-navigation .nav-post {
    padding: 20px;
    margin-bottom: 15px;
  }

  .related-posts-title {
    font-size: 1.6rem;
  }

  .related-post-thumbnail {
    height: 180px;
  }

  .hinh-anh-bs-content h1 {
    font-size: 1.5rem !important;
    margin-top: 0 !important;
  }
}

/* ===================================
     404 Error Page Styles
     =================================== */

.error-404-page {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404-section {
  padding: 60px 0;
}

.error-404-content {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 404 Number */
.error-404-number {
  font-size: 10rem;
  font-weight: bold;
  color: #f36f20;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Error Title */
.error-404-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

/* Error Description */
.error-404-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Search Form */
.error-404-search {
  margin-bottom: 40px;
}

.search-form-404 {
  max-width: 600px;
  margin: 0 auto;
}

.search-input-wrapper {
  display: flex;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.search-input-404 {
  flex: 1;
  padding: 15px 25px;
  border: 2px solid #e5e5e5;
  border-right: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input-404:focus {
  border-color: #f36f20;
}

.search-button-404 {
  padding: 15px 30px;
  background: #f36f20;
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-button-404:hover {
  background: #d65a1a;
  transform: translateX(2px);
}

/* Back to Home Button */
.error-404-actions {
  margin-bottom: 40px;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.btn-back-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: white;
}

/* Quick Links */
.error-404-links {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #e5e5e5;
}

.error-404-links h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.quick-link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-link-item:hover {
  background: #f36f20;
  color: white;
  border-color: #f36f20;
  transform: translateY(-2px);
}

.quick-link-item i {
  font-size: 1.1rem;
}

.hinh-anh-bs-content h1 {
  text-align: center;
  color: #f36f20 !important;
  margin-bottom: 20px !important;
  margin-top: 50px;
  font-weight: 600;
  text-transform: uppercase;
}

.hinh-anh-ct-content h1 {
  text-align: center;
  color: #f36f20 !important;
  margin-bottom: 20px !important;
  margin-top: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.hinh-anh-bs-swiper {
  padding-bottom: 50px;
}

.hinh-anh-bs-swiper .swiper-button-next {
  bottom: 10px !important;
  top: auto !important;
  background: #f36f20 !important;
  width: 30px !important;
  height: 30px !important;
  right: 47% !important;
}

.hinh-anh-bs-swiper .swiper-button-next::after {
  font-size: 13px !important;
}

.hinh-anh-bs-swiper .swiper-button-next:hover {
  background: #f36f20 !important;
  color: white !important;
}

.hinh-anh-bs-swiper .swiper-button-prev {
  bottom: 10px !important;
  top: auto !important;
  background: #f36f20 !important;
  width: 30px !important;
  height: 30px !important;
  left: 47% !important;
}

.hinh-anh-bs-swiper .swiper-button-prev::after {
  font-size: 13px !important;
}

.hinh-anh-bs-swiper .swiper-button-prev:hover {
  background: #f36f20 !important;
  color: white !important;
}

section.dat-lich-bs-huy {
  margin-top: 50px;
  background: url(../img/team-member/lien-he.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 500px;
}

.dat-lich-bs-huy .row {
  height: 500px;
  align-items: anchor-center;
}

.dat-lich-bs-huy .subscribe-form {
  padding-left: 40px;
}

/* Mobile Responsive for 404 Page */
@media (max-width: 768px) {
  .error-404-content {
    padding: 40px 25px;
  }

  .error-404-number {
    font-size: 6rem;
  }

  .error-404-title {
    font-size: 1.8rem;
  }

  .error-404-description {
    font-size: 1rem;
  }

  .search-input-wrapper {
    flex-direction: column;
    border-radius: 12px;
  }

  .search-input-404 {
    border-radius: 12px 12px 0 0;
    border-right: 2px solid #e5e5e5;
    border-bottom: none;
  }

  .search-button-404 {
    border-radius: 0 0 12px 12px;
    justify-content: center;
  }

  .btn-back-home {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .quick-links {
    gap: 10px;
  }

  .quick-link-item {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  section.dat-lich-bs-huy {
    margin-top: 30px;
    background: url(../img/team-member/lien-he-mobile.png) no-repeat center
      center;
    background-size: cover;
    width: 100%;
    position: relative;
    height: 1000px;
  }

  .dat-lich-bs-huy .subscribe-form {
    padding-left: 0;
    padding-top: 730px;
  }
}

.history-text h1 {
  color: #f36f20 !important;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 20px !important;
}

.history-text p {
  font-size: 15px;
  text-align: justify;
  margin-bottom: 100px;
}

/* Timeline Styles */
.history-content .timeline-container {
  position: relative;
  margin-top: 30px !important;
  margin: 0 auto;
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.history-content .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #f9b78f;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 30px;
}

.history-content .timeline-container .timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.8s ease-out;
  width: 50%;
}

.timeline-container .timeline-item:nth-child(odd) {
  transform: translateX(0%) translateY(-200px);
}

.timeline-container .timeline-item:nth-child(even) {
  transform: translateX(100%);
}

.history-content .timeline-item:not(:last-child)::after {
  content: "";
  display: none;
}

.history-content .timeline-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.timeline-content {
  width: 100%;
  text-align: center;
  position: relative;
}

.timeline-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-year {
  text-align: center;
  font-size: 25px;
  margin-bottom: 0;
  color: #f36f20;
  font-weight: 600;
}

.faq-header {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 50px;
}

.faq-title {
  text-align: center;
}

.faq-title h1 {
  color: #f36f20 !important;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px !important;
}

.faq-title p {
  margin-bottom: 10px;
}

.faq-category .accordion {
  display: flex;
  justify-content: space-around;
  width: 90%;
  margin: auto;
}

.faq-category .accordion-item {
  background: #fef0e8;
  border: none;
  color: #000;
  border-radius: 25px;
  overflow: hidden;
}

.accordion-item:has(.accordion-button.collapsed)::after {
  transform: rotate(180deg);
}

.faq-category .accordion-button {
  background: #fef0e8;
  color: #000;
  min-width: 120px;
  text-align: center;
  display: block;
  text-transform: uppercase;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 380;
}

.faq-category .accordion-button:not(.collapsed) {
  background: #f36f20;
  color: #fff;
}

.faq-category .accordion-button::after {
  display: none;
}

.accordion-faq {
  border-bottom: solid 1px #e8e8e8;
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  display: block;
  padding-top: 10px;
}

.accordion-faq::after {
  content: "";
  background: url(../img/faq/mark-down.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  right: 0;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  cursor: pointer;
}

.accordion-faq span.mark-down {
  right: 0 !important;
}

.accordion-faq .accordion-header button {
  background: transparent;
  border: none;
}

.accordion-faq span {
  position: absolute;
  top: 0px;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: #fff0e6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
}

.accordion-faq .accordion-item {
  border: none;
}

.accordion-faq .accordion-header button {
  color: #f36f20;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.accordion-faq .accordion-body {
  color: #000;
  font-size: 0.95rem;
  font-weight: 380;
  padding-left: 10px;
}

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

.accordion-faq .accordion-body {
  border: none;
}

.accordion-faq .accordion-body ul {
  padding-left: 20px;
}

/* Mobile Timeline Styles */
@media (max-width: 768px) {
  .timeline-container {
    padding: 30px 0;
  }

  .timeline-container-mobile .timeline-item {
    margin-bottom: 20px;
    margin-top: 10px;
    padding-left: 0;
    text-align: center;
  }

  .timeline-line {
    left: 30px;
    width: 3px;
  }

  .timeline-item {
    margin-bottom: 60px;
    padding-left: 10px;
    text-align: left;
  }

  .timeline-marker {
    left: 30px;
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #f36f20;
  }

  .timeline-content {
    text-align: left;
  }

  .timeline-image {
    border-radius: 10px;
  }

  .history-text h1 {
    font-size: 1.5rem;
    margin-top: 20px;
    margin-bottom: 10px !important;
  }

  .history-text p {
    font-size: 13.5px;
    margin-bottom: 30px;
  }

  .faq-header {
    display: block;
    margin-bottom: 30px;
  }

  .faq-image {
    text-align: center;
  }

  .faq-image img {
    height: 100px;
  }

  .faq-category .accordion {
    width: 100%;
    display: block;
  }

  .faq-category .accordion-item {
    min-width: 120px;
    display: inline-block;
  }

  .accordion-faq {
    padding-left: 30px;
    padding-right: 20px;
    padding-top: 0;
  }

  .accordion-faq .accordion-header button {
    font-size: 1rem;
    margin-bottom: 0px;
  }

  .accordion-faq .accordion-header button {
    font-size: 1rem;
    margin-bottom: 0px;
  }

  .accordion-faq .accordion-body {
    font-size: 13px;
    padding-left: 0px;
  }

  .accordion-faq span {
    position: absolute;
    top: 0px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #fff0e6;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
  }

  .accordion-faq::after {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
     GIẢI THƯỞNG - AWARDS TEMPLATE STYLES
     ============================================ */

/* Giải thưởng title style */
.giai-thuong-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  font-weight: 300;
  color: #f36f20 !important;
  font-size: 1.7rem !important;
  letter-spacing: -1px;
}

/* Featured image cho giải thưởng - full width */
.giai-thuong-featured-image {
  margin-bottom: 0px;
}

.giai-thuong-featured-image img {
  width: 100%;
  height: auto;
}

/* Content area cho giải thưởng */
.giai-thuong-post-content {
  padding: 20px 0;
}

.giai-thuong-post-content p {
  font-weight: 300;
}

/* Related awards grid */
.related-awards .related-award-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-awards .related-award-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.related-awards .related-award-thumbnail {
  overflow: hidden;
}

.related-awards .related-award-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-awards .related-award-item:hover .related-award-thumbnail img {
  transform: scale(1.1);
}

.related-awards .related-post-content {
  padding: 15px;
}

.related-awards .related-post-title a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.related-awards .related-post-title a:hover {
  color: #007bff;
}

.related-awards .related-post-date {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
}

.category-prize {
  width: 100%;
  text-align: center;
  background: #f36f20;
  color: #fff;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-top: 40px;
  padding: 5px 0px;
}

.btn-list-prize {
  width: 100%;
  padding: 6px;
  background: #f36f20;
  border-radius: 30px;
  font-weight: 380;
  margin-bottom: 40px;
}

.btn-list-prize:hover {
  background: #d65a1a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(243, 111, 32, 0.2);
}

.btn-list-prize a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

/* Responsive cho giải thưởng */
@media (max-width: 768px) {
  .giai-thuong-title {
    font-size: 18px !important;
    font-weight: 400;
    margin-bottom: 20px !important;
    padding: 0px 30px;
  }

  .related-awards .related-award-thumbnail img {
    height: 150px;
  }

  .category-prize {
    font-size: 1.2rem;
    margin-top: 15px;
  }

  .giai-thuong-post-content p {
    font-weight: 400;
  }

  .btn-list-prize {
    padding: 6px 15px;
    width: 120px;
    background: #f36f20;
    border-radius: 30px;
    font-weight: 400;
    margin: auto;
    display: block;
    margin-bottom: 40px;
  }
}

/* ============================================
     CATEGORY GIẢI THƯỞNG - AWARDS CATEGORY
     ============================================ */

/* Category Giải Thưởng Header */
.category-giai-thuong .category-prize-header {
  width: 100%;
  text-align: center;
  color: #f36f20;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Award Item Card */
.category-giai-thuong .award-item {
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.category-giai-thuong .award-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Award Content */
.category-giai-thuong .award-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-giai-thuong .award-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.category-giai-thuong .award-title a {
  color: #f36f20;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-giai-thuong .award-title a:hover {
  color: #f36f20;
}

.category-giai-thuong .award-meta {
  margin-bottom: 15px;
}

.category-giai-thuong .award-date {
  color: #666;
  font-size: 0.9rem;
}

.category-giai-thuong .award-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.category-giai-thuong .award-read-more {
  color: #575757;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  margin: auto;
  background: #fff0e6;
  border: solid 1px #f36f20;
  padding: 5px 15px;
  font-size: 13px;
  border-radius: 30px;
}

.category-giai-thuong .award-read-more:hover {
  color: #d65a1a;
  gap: 10px;
}

.category-giai-thuong .award-read-more i {
  transition: transform 0.3s ease;
  font-weight: bolder;
  font-size: 20px;
  color: #f36f20;
}

.category-giai-thuong .award-item:hover .award-read-more i {
  transform: translateX(5px);
}

/* Responsive cho category giải thưởng */
@media (max-width: 768px) {
  .category-giai-thuong .category-prize-header {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .category-giai-thuong .award-thumbnail {
    height: 200px;
  }

  .category-giai-thuong .award-title {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .category-giai-thuong .award-content {
    padding: 15px;
  }

  .category-prize-banner {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0px;
  }
}

/* ===================================
     CO TAM CONTENT SECTION - OPTIMIZED
     =================================== */
.co-tam-content {
  padding: 40px 0;
  background: #fff;
}

.co-tam-wrapper {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  margin: 0 auto;
  background: #f2f2f2;
}

.co-tam-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.co-tam-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.co-tam-image:hover img {
  transform: scale(1.05);
}

.co-tam-text {
  padding: 20px 50px;
}

.co-tam-title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 600;
  color: #f37020;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(243, 112, 32, 0.1);
}

.co-tam-quote {
  position: relative;
  padding: 25px 25px;
  background: #ffffff;
  border-radius: 10px;
}

.quote-open,
.quote-close {
  opacity: 1;
  position: absolute;
}

.quote-open {
  top: -10px;
  left: -22px;
}

.quote-close {
  bottom: -5px;
  right: -20px;
}

.quote-content {
  position: relative;
  z-index: 2;
}

.quote-text {
  font-size: 14px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: justify;
}

.quote-text:last-child {
  margin-bottom: 0;
}

.hinh-anh-bs-item {
  border-radius: 10px;
  overflow: hidden;
  height: 462px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-tag {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 20px 0 0 20px;
  box-shadow: -5px 0 15px rgba(255, 107, 53, 0.3);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 15px 10px;
  gap: 10px;
  transition: all 0.3s ease;
}

.footer-tag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border-radius: 15px;
  cursor: pointer;
}

.footer-tag-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-decoration: none;
}

.footer-tag-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.footer-tag-icon svg {
  width: 30px;
}

.footer-tag-item:hover .footer-tag-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.footer-tag-text {
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  color: white;
  text-transform: none;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .footer-tag {
    padding: 8px 6px;
  }

  .footer-tag-item {
    padding: 8px 6px;
  }

  .footer-tag-icon {
    width: 45px;
    height: 45px;
  }

  .footer-tag-icon svg {
    width: 25px;
    height: 25px;
  }

  .footer-tag-text {
    font-size: 10px;
  }

  /* Before After Page - Small Mobile */
  .before-after-intro .intro-title {
    font-size: 1.5rem;
  }

  .before-after-intro .intro-description {
    font-size: 0.9rem;
  }

  .before-after-gallery .gallery-title {
    font-size: 1.3rem;
  }

  .before-after-swiper {
    padding: 0 35px;
  }

  .testimonials-section .section-title {
    font-size: 1.5rem;
  }

  .testimonials-swiper {
    padding: 0 40px;
  }

  .testimonial-slide-item {
    padding: 30px 15px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-author .author-name {
    font-size: 1.1rem;
  }

  .testimonial-button-next,
  .testimonial-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .testimonial-button-next:after,
  .testimonial-button-prev:after {
    font-size: 16px !important;
  }
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
  .co-tam-content {
    padding: 60px 0;
  }

  .co-tam-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .co-tam-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .co-tam-text {
    text-align: center;
    padding: 10px;
  }

  .co-tam-title {
    font-size: 2.5rem;
  }

  /* Before After Page - Tablet */
  .before-after-intro .intro-title {
    font-size: 2rem;
  }

  .before-after-intro .intro-description {
    font-size: 1rem;
  }

  .before-after-gallery .gallery-title {
    font-size: 1.8rem;
  }

  .before-after-swiper {
    padding: 0 50px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  .footer-tag {
    display: none;
  }

  .footer-tag-item {
    padding: 10px 8px;
  }

  .footer-tag-icon {
    width: 50px;
    height: 50px;
  }

  .footer-tag-icon svg {
    width: 30px;
    height: 30px;
  }

  .footer-tag-text {
    font-size: 11px;
  }

  .co-tam-content {
    padding: 40px 0;
  }

  .co-tam-wrapper {
    gap: 30px;
  }

  .co-tam-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .co-tam-quote {
    padding: 25px 30px;
  }

  .quote-open,
  .quote-close {
    font-size: 0rem;
  }

  .quote-open {
    top: 3px;
    left: 0px;
  }

  .quote-close {
    bottom: 5px;
    right: 5px;
  }

  .quote-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .quote-open img,
  .quote-close img {
    width: 30px;
  }
}

/* Performance Optimizations */
.co-tam-image img {
  content-visibility: auto;
  contain: layout style paint;
}

/* Animation Enhancement */
.co-tam-wrapper.animate-in .co-tam-image {
  animation: fadeInLeft 0.8s ease-out;
}

.co-tam-wrapper.animate-in .co-tam-text {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
     FOOTER TAG - Fixed Sidebar with Booking Form
     ======================================== */
.footer-tag {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(0px);
  background: #f36f20; /*linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);*/
  border-radius: 20px 0 0 20px;
  box-shadow: none; /*-5px 0 15px rgba(255, 107, 53, 0.3);*/
  z-index: 9999;
  display: flex;
  flex-direction: row;
  padding: 10px 10px;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-tag.active {
  transform: translateY(-50%) translateX(0px);
}

.footer-tag-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-evenly;
}

.footer-tag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border-radius: 15px;
  cursor: pointer;
}

.footer-tag-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}

.footer-tag-icon {
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.footer-tag-item:hover .footer-tag-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.footer-tag-text {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Animation cho icon */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.footer-tag-items .footer-tag-item:nth-child(2) .footer-tag-icon {
  animation: pulse 2s infinite;
}

/* Form Booking Styles */
.form-booking {
  width: 350px;
  opacity: 0;
  visibility: hidden;
  /* transform: translateX(20px); */
  transition: all 0.4s ease;
  padding: 10px 15px;
  padding-right: 0;
}

.footer-tag.active .form-booking {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.form-booking .footer-subscribe {
  background: white;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.form-booking .subscribe-title {
  color: #ff6b35;
  font-size: 16px;
  font-weight: 700;
}

.form-booking .subscribe-input {
  margin-bottom: 0;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
}

.form-booking .form-row-inline {
  display: flex;
  gap: 10px;
}

.form-booking .form-row-inline .form-group {
  flex: 1;
}

.form-booking .subscribe-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-booking .subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Close button for form */
.form-booking-close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ff6b35;
  font-size: 20px;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
}

.footer-tag.active .form-booking-close {
  opacity: 1;
  visibility: visible;
}

.form-booking-close:hover {
  background: #ff6b35;
  color: white;
  transform: rotate(90deg);
}

/* Responsive - Ẩn hoàn toàn trên mobile */
@media (max-width: 768px) {
  .footer-tag {
    display: none !important;
  }

  /* Before After Page - Mobile */
  .before-after-intro {
    padding: 50px 0 40px;
  }

  .before-after-intro .intro-title {
    font-size: 1.8rem;
  }

  .before-after-intro .intro-description {
    font-size: 0.95rem;
  }

  .before-after-gallery {
    padding: 20px 0;
  }

  .before-after-gallery .gallery-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .before-after-swiper {
    padding: 0 40px;
  }

  .before-after-swiper .swiper-button-next,
  .before-after-swiper .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .before-after-swiper .swiper-button-next:after,
  .before-after-swiper .swiper-button-prev:after {
    font-size: 16px !important;
  }

  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .testimonials-swiper {
    padding: 0 50px;
  }

  .testimonial-slide-item {
    padding: 40px 20px;
  }

  .testimonial-content {
    padding-left: 0;
    padding-top: 30px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-button-next,
  .testimonial-button-prev {
    width: 45px !important;
    height: 45px !important;
  }

  .testimonial-button-next:after,
  .testimonial-button-prev:after {
    font-size: 18px !important;
  }
}

/* ========================================
     BEFORE AFTER PAGE STYLES
  ======================================== */

.before-after-page {
  background-color: #fff;
}

/* Video Quote Section */
.before-after-intro {
  padding: 80px 0 60px;
  background-color: #ffffff;
  margin: 40px 0px 30px;
}

.before-after-intro .quote-icon {
  text-align: left;
  margin-bottom: 0px;
  position: absolute;
  left: -35px;
}

.before-after-intro .intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.before-after-intro .intro-description {
  font-size: 1.2rem;
  color: #666;
  text-align: justify;
  margin-bottom: 0;
  line-height: 1.8;
  padding-left: 15px;
  font-weight: 350;
}

.before-after-intro .intro-video {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.before-after-intro .intro-video video {
  width: 100%;
  display: block;
}

/* Before After Galleries */
.before-after-gallery {
  padding: 40px 0;
}

.before-after-gallery:last-of-type {
  border-bottom: none;
}

.before-after-gallery .gallery-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  text-align: left;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0px 60px;
}

.before-after-swiper {
  position: relative;
  padding: 0 60px;
}

.before-after-swiper .swiper-wrapper {
  align-items: center;
}

.before-after-swiper .swiper-slide {
  width: auto;
  height: auto;
}

.before-after-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.before-after-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.before-after-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Swiper Navigation for Before/After */
.before-after-swiper .swiper-button-next,
.before-after-swiper .swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  background-color: #f36f20 !important;
  border-radius: 50% !important;
  color: white !important;
}

.before-after-swiper .swiper-button-next:after,
.before-after-swiper .swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold !important;
}

.before-after-swiper .swiper-button-next {
  right: 10px !important;
}

.before-after-swiper .swiper-button-prev {
  left: 10px !important;
}

.before-after-swiper .swiper-pagination {
  bottom: -40px !important;
}

.before-after-swiper .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #f36f20 !important;
  opacity: 0.3 !important;
}

.before-after-swiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
  transform: scale(1.2);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #fff6ed;
}

.testimonials-section .section-title {
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-swiper {
  position: relative;
  padding: 0 80px;
}

.testimonial-slide-item {
  background: white;
  padding: 30px;
  border-radius: 20px;
  /* box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1); */
}

.testimonial-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-image img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-content {
  position: relative;
  padding-left: 30px;
}

.testimonial-quote-icon {
  width: 50px;
  margin-bottom: 20px;
}

.testimonial-quote-icon img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
  font-style: italic;
  text-align: justify;
}

.testimonial-author {
  border-top: 2px solid #f0f0f0;
  padding-top: 20px;
}

.testimonial-author .author-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f36f20;
  margin-bottom: 5px;
}

.testimonial-author .author-location {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 0;
}

/* ========================================
   MOBILE POPUP FORM - ĐĂNG KÝ TƯ VẤN
   ======================================== */
.mobile-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  display: flex !important; /* Override Bootstrap d-lg-none khi active */
}

.mobile-popup-container {
  position: relative;
  background: transparent;
  border-radius: 20px;
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); */
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: url(https://365mc.com.vn/wp-content/uploads/2025/11/Bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mobile-popup-overlay.active .mobile-popup-container {
  transform: scale(1) translateY(0);
}

.mobile-popup-close {
  position: absolute;
  top: 0px;
  right: 60px;
  width: 35px;
  height: 35px;
  background: rgba(243, 111, 32, 0.3);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #f36f20;
  font-size: 20px;
}

.mobile-popup-close:hover,
.mobile-popup-close:active {
  background: #f36f20;
  color: white;
  transform: rotate(90deg);
}

.mobile-popup-close i {
  pointer-events: none;
}

.mobile-popup-content {
  padding: 30px 25px;
}

.mobile-popup-content .footer-subscribe {
  padding: 0;
}

.mobile-popup-content .subscribe-title {
  color: #f36f20;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 20px;
}

.mobile-popup-content .subscribe-p-title {
  color: #575757;
  font-size: 14px;
  font-weight: 350;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.mobile-popup-content .subscribe-input {
  margin-bottom: 5px;
  border-radius: 25px;
  border: 1px solid #f36f20;
  padding: 12px 15px;
  font-size: 14px;
  width: 100%;
  font-weight: 350;
}

.mobile-popup-content .form-row-inline {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.mobile-popup-content .form-row-inline .form-group {
  flex: 1;
}

.mobile-popup-content .subscribe-btn {
  width: 70%;
  background: linear-gradient(135deg, #f36f20 0%, #e55a2b 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  margin: auto;
  display: block;
}

span.subscribe-span-title{
  color: #e75c2a;
  font-size: 13px;
  font-weight: 350;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 18px;
  display: block;
}

.mobile-popup-content .subscribe-btn:hover,
.mobile-popup-content .subscribe-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 111, 32, 0.4);
}

/* Prevent body scroll when popup is open */
body.popup-open {
  overflow: hidden;
}
