.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: #fcab19;
}

.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: #fcab19;
  color: #2c1810;
  font-weight: 500 !important;
  border: none;
  border-radius: 12px;
  padding: 18px 40px;
  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, 204, 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: #fcab19;
  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: #fcab19;
  border: 2px solid #f9cc4b;
  border-radius: 12px;
  padding: 16px 40px;
  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: #fcab19;
  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: #ffd966;
  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: #fcab19;
  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: #af7e39d4;
  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: linear-gradient(135deg, #e8b737 0%, #d4a843 100%);
  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 */
.img-border {
  position: relative;
  padding: 20px 0 0 20px;
}

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

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

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

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

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

/* btn lien hệ */
.button.primary.btn-lien-he {
  background: #c86a3f;
  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;
  }
}

/* Section5 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #c97b63 0%, #b8695a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-description {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}

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

  .feature-card {
    padding: 24px;
  }
}
/* Lien-he */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
}

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

.contact-card.phone-card:hover {
  border-color: rgba(185, 28, 28, 0.3);
}

.contact-card.location-card:hover {
  border-color: rgba(217, 119, 6, 0.3);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.phone-card .icon-circle {
  background: rgb(254 243 199 / 80%);
}

.phone-card:hover .icon-circle {
  background: #d97706;
  transform: scale(1.1);
}

.location-card .icon-circle {
  background: rgba(254, 243, 199, 0.8);
}

.location-card:hover .icon-circle {
  background: #d97706;
  transform: scale(1.1);
}

.hours-card .icon-circle {
  background: rgba(254, 249, 195, 0.8);
}

.icon-circle svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.phone-card .icon-circle svg {
  stroke: #d97706;
}

.phone-card:hover .icon-circle svg {
  stroke: white;
}

.location-card .icon-circle svg {
  stroke: #d97706;
}

.location-card:hover .icon-circle svg {
  stroke: white;
}

.hours-card .icon-circle svg {
  stroke: #ca8a04;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

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

.card-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
}

.address-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.hours-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

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

.banner-border {
  border-radius: 16px;
}
