.stats-banner {
  background-size: cover;
  background-position: center;
  padding: 40px 0px;
  border-radius: 10px;
  display: flex;
  gap: 60px;
}

.stat-item {
  text-align: center;
  color: white;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #c80b08;
}

.stat-label {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .stats-banner {
    gap: 30px;
  }

  .stat-item {
    padding: 0 0px;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 16px;
  }
}

/* Button Primary - Filled */
.button.primary.btn-primary {
  background: #c80b08;
  color: #2c1810;
  font-weight: 500 !important;
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 75, 75, 0.4);
  position: relative;
  overflow: hidden;
}

.button.primary.btn-primary span {
  position: relative;
  z-index: 1;
}

.button.primary.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #c80b08;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button.primary.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 204, 75, 0.6);
}

.button.primary.btn-primary:hover::after {
  opacity: 1;
}

.button.primary.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(249, 204, 75, 0.4);
}

/* Button Outline */
.button.primary.is-outline.btn-ouline {
  background: transparent;
  font-weight: 500 !important;
  color: #c80b08;
  border: 2px solid #c80b08;
  border-radius: 12px;
  padding: 10px 26px !important;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button.primary.is-outline.btn-ouline.lowercase span {
  text-transform: none;
}

.button.primary.is-outline.btn-ouline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #c80b08;
  transition: left 0.4s ease;
  z-index: 0;
}

.button.primary.is-outline.btn-ouline span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.button.primary.is-outline.btn-ouline:hover {
  border-color: #c80b08;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 204, 75, 0.3);
}

.button.primary.is-outline.btn-ouline:hover::before {
  left: 0;
}

.button.primary.is-outline.btn-ouline:hover span {
  color: #2c1810;
}

.button.primary.is-outline.btn-ouline:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(249, 204, 75, 0.2);
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-15deg);
  }
  20%,
  40% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }

  .button.primary.btn-primary,
  .button.primary.is-outline.btn-ouline {
    padding: 16px 30px;
    font-size: 13px;
    width: 100%;
    max-width: 350px;
  }
}
.badge-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c80b08;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(249, 204, 75, 0.4);
  transition: all 0.3s ease;
}

.badge-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 204, 75, 0.6);
}

.badge-icon {
  font-size: 24px;
  animation: sparkle 2s infinite;
}

.badge-container p {
  color: #2c1810;
  font-size: 16px;
  margin: 0;
  white-space: nowrap;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: scale(1.1) rotate(-10deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  75% {
    transform: scale(1.1) rotate(10deg);
    opacity: 0.8;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .badge-container {
    padding: 10px 25px;
  }

  .badge-icon {
    font-size: 20px;
  }

  .badge-container p {
    font-size: 14px;
  }
}
.text.border-a {
  display: inline-block;
  background: #af3939d4;
  padding: 12px 30px;
  border-radius: 50px;
}

.text.border-a p {
  color: #2c1810;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .text.border-a {
    padding: 10px 25px;
  }

  .text.border-a p {
    font-size: 14px;
  }
}

/* Card */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.icon {
  width: 56px;
  height: 56px;
  background: #c80b08;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}

/* Section 2 */
.section2 .img-border {
  position: relative;
  padding: 20px 0 0 20px;
}

.section2 .img-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-top: 4px solid #c80b08;
  border-left: 4px solid #c80b08;
  border-radius: 12px 0 0 0;
}

.section2 .img-inner {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section2 .img-inner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .section2 .img-border {
    padding: 15px 0 0 15px;
  }

  .section2 .img-border::before {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }
}

/* btn lien hệ */
.button.primary.btn-lien-he {
  background: #c80b08;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(200, 106, 63, 0.3);
}

.button.primary.btn-lien-he.lowercase span {
  text-transform: none;
}

.button.primary.btn-lien-he::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.button.primary.btn-lien-he:hover {
  background: #b55e37;
  box-shadow: 0 4px 15px rgba(200, 106, 63, 0.4);
  transform: translateY(-2px);
}

.button.primary.btn-lien-he:hover::after {
  transform: translateX(4px);
}

.button.primary.btn-lien-he:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(200, 106, 63, 0.3);
}

@media (max-width: 768px) {
  .button.primary.btn-lien-he {
    width: 100%;
    max-width: 400px;
    padding: 14px 30px;
    font-size: 12px;
  }
}
/* quy trinh */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

.step-wrapper {
  position: relative;
}

.step-connector {
  display: none;
  position: absolute;
  top: 40px;
  left: 100%;
  width: 100%;
  height: 2px;
  background: #c80b08;
  z-index: 0;
}

.step-card {
  background: white;
  border: 1px solid rgb(0 0 0 / 47%);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  z-index: 10;
  height: 100%;
  transition: border-color 0.3s ease;
}

.step-card:hover {
  border-color: rgba(217, 119, 6, 0.5);
}

.step-number {
  font-size: 36px;
  font-weight: 700;
  color: #c80b08;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
}

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

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .step-connector {
    display: block;
  }

  .step-wrapper:last-child .step-connector {
    display: none;
  }
}
/* Form đặt lịch */
.wpcf7 {
		text-align: left
}
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
}

.form-container h1 + p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 6px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.required {
    color: red;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-container input:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-container textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-container button {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.form-container button:hover {
    background: #5568d3;
}

@media (max-width: 600px) {
    .form-container {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="date"],
.form-container input[type="time"],
.form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 14px;
    box-sizing: border-box;
    height: 45px;
}

.form-container textarea {
    height: auto;
    min-height: 100px;
}
/* span bọc input không phá layout */
.form-container .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* đảm bảo select và input CF7 full width */
.form-container select,
.form-container .wpcf7-form-control {
    width: 100%;
}

/* ===== STYLE NÚT SUBMIT CF7 ===== */
.form-container input[type="submit"].wpcf7-submit {
    width: 100%;
    padding: 14px;
    background: #C80B08;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
}

.form-container input[type="submit"].wpcf7-submit:hover {
    background: #5568d3;
}

/* ===== THÔNG BÁO CF7 ===== */
.wpcf7-response-output {
    margin: 15px 0 0;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wpcf7-validation-errors,
.wpcf7-aborted {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wpcf7-not-valid-tip {
    color: red;
    font-size: 12px;
    margin-top: 4px;
}


.button.primary.is-outline.is-small {
    /* Màu nền và viền */
    background-color: #cc0000;
    border: 2px solid #cc0000;
    border-radius: 8px;
    
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: none; /* Chữ bình thường, không in hoa */
    letter-spacing: 0.3px;
    /* Kích thước và khoảng cách */
    padding: 6px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    
    /* Hiệu ứng chuyển đổi */
    transition: all 0.3s ease;
    cursor: pointer;
}


/* Hiệu ứng hover */
.button.primary.is-outline.is-small:hover {
    background-color: #b30000;
    border-color: #b30000;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.4);
}

/* Hiệu ứng active/click */
.button.primary.is-outline.is-small:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(204, 0, 0, 0.3);
}

/* Class mb-0 */
.mb-0 {
    margin-bottom: 0 !important;
}


/*  Liên hệ*/
.contact-info-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

        .contact-info-card {
            background: white;
            border-radius: 16px;
            padding: 40px 24px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            flex: 0 1 calc(33.333% - 16px);
            min-width: 280px;
            max-width: 380px;
        }

        .contact-info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        }

        .contact-info-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: rgba(255, 193, 7, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-info-icon svg {
            width: 32px;
            height: 32px;
            stroke: #d97706;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .contact-info-card-title {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .contact-info-content {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .contact-phone {
            font-size: 24px;
            font-weight: 700;
            color: #dc2626;
            margin-bottom: 8px;
        }

        .contact-note {
            font-size: 13px;
            color: #999;
        }

        @media (max-width: 968px) {
            .contact-info-card {
                flex: 0 1 calc(50% - 16px);
            }
        }

        @media (max-width: 640px) {
            .contact-info-wrapper {
                flex-direction: column;
            }

            .contact-info-card {
                flex: 1 1 100%;
                max-width: 100%;
            }

            .contact-info-title {
                font-size: 24px;
            }
        }



/* Blog */
.bai-viet-lien-quan {
  margin: 24px 0;
}
.bai-viet-lien-quan h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.bai-viet-lien-quan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.bai-viet-lien-quan li {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bai-viet-lien-quan li:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.bai-viet-lien-quan li:hover .box-image img {
  transform: scale(1.05);
}

.tieu-de-bai-viet {
  padding: 13px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  transition: color 0.3s ease;
}

.bai-viet-lien-quan li a:hover .tieu-de-bai-viet {
  color: #0066cc;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
  .bai-viet-lien-quan ul {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .box-image {
    height: 180px;
  }

  .tieu-de-bai-viet {
    font-size: 15px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .bai-viet-lien-quan ul {
    grid-template-columns: 1fr;
  }

  .box-image {
    height: 220px;
  }
}
.entry-content .bai-viet-lien-quan ul,
.single-post .entry-content .bai-viet-lien-quan ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.entry-content .bai-viet-lien-quan li,
.single-post .entry-content .bai-viet-lien-quan li {
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
}
.entry-content .bai-viet-lien-quan li::before,
.single-post .entry-content .bai-viet-lien-quan li::before {
  content: none !important;
}

/* (Tùy chọn) Bật lưới cho đẹp */
.entry-content .bai-viet-lien-quan ul {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}
@media (max-width: 1024px) {
  .entry-content .bai-viet-lien-quan ul {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 600px) {
  .entry-content .bai-viet-lien-quan ul {
    grid-template-columns: 1fr !important;
  }
}

.entry-content .bai-viet-lien-quan > h2 {
  margin: 0 0 12px !important;
}
.bai-viet-lien-quan .box-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.bai-viet-lien-quan .box-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.bai-viet-lien-quan .box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Sidebarr */
/* Container sidebar */
.post-sidebar {
  position: relative;
}

.post-sidebar .widget-area {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}

/* Tiêu đề widget - style như header */
.widget-title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #640504;
  padding: 20px;
  text-align: center;
  margin: 0;
  border-radius: 0;
}

.widget-title span {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.is-divider.small {
  display: none !important;
}

/* Danh sách bài viết */
.flatsome_recent_posts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mỗi bài viết - style như menu item */
.recent-blog-posts-li {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.recent-blog-posts-li:last-child {
  border-bottom: none;
}

.recent-blog-posts-li:hover {
  background-color: #f9f9f9;
}

.recent-blog-posts {
  display: flex;
  align-items: flex-start;
  padding: 15px 20px;
}

/* Hình ảnh */
.badge.post-date {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.badge-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

/* Content bài viết */


/* Tiêu đề bài viết */
.recent-blog-posts a {
  color: #333;
  font-size: 14px !important;
  line-height: 1.6;
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease;
}

.recent-blog-posts a:hover {
  color: #B8A365;
}

/* Ẩn comments */
.post_comments {
  display: none;
}


/* Footer Scrip */
/*  */
/********** Footer Scrip *************/
/* Container fixed bên phải */
.social-icons-fixed {
  position: fixed;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  z-index: 9999;
}

.social-icons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Style cho từng icon */
.social-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d4b0;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

/* Viền cam khi hover */
.social-icon::before {
  content: "";
  position: absolute;

  border-radius: 50%;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-icon:hover::before {
  opacity: 1;
}

/* SVG icons */
.social-icon svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

/* Facebook - nền xanh dương */
.social-icon.facebook {
  background: #1877f2;
  box-shadow: 0 2px 10px rgba(24, 119, 242, 0.3);
}

.social-icon.facebook svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.social-icon.facebook:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.5);
}
/* Zalo - icon lớn hơn */
.social-icon.zalo svg {
  width: 38px;
  height: 38px;
}
/* Phone - nền xanh lá */
.social-icon.phone {
  background: #4caf50;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.social-icon.phone svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.social-icon.phone:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.5);
}
/* TikTok - nền đen */
.social-icon.tiktok {
  background: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.social-icon.tiktok svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.social-icon.tiktok:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Hover effect chung */
.social-icon:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .social-icons-fixed {
    right: 10px;
  }

  .social-icons-wrapper {
    padding: 12px 8px;
    gap: 12px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .social-icon.zalo svg {
    width: 34px;
    height: 34px;
  }
}

/* Nút đổi ngôn ngữ cố định góc trái dưới */
.lang-switch-fixed{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* Gọn gàng hơn 1 chút */
.lang-switch-fixed .gt_switcher_wrapper,
.lang-switch-fixed .gt_switcher{
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
  border-radius: 6px;
  overflow: hidden;
}

.lang-switch-fixed select{
  font-size: 14px;
}
/*  */
