:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

:root { 
  --background-color: #F5FCFA; /* Nền xanh bạc siêu nhẹ – gần như trắng nhưng ấm mắt */
  --default-color: #1B2E35; /* Xám xanh tự nhiên, dễ đọc */
  --heading-color: #0A4E47; /* Xanh ngọc đậm nhẹ – sang, không gắt */
  --accent-color: #4FD1B3; /* Xanh ngọc pastel – nhẹ mà vẫn có sức sống */
  --surface-color: #FFFFFF; /* Nền card hoặc box trắng tinh khiết */
  --contrast-color: #FFFFFF; /* Chữ trắng cho vùng đậm */
}

/* Nav Menu Colors */
:root {
  --nav-color: #1B2E35;
  --nav-hover-color: #4FD1B3;
  --nav-mobile-background-color: #FFFFFF;
  --nav-dropdown-background-color: #FFFFFF;
  --nav-dropdown-color: #1B2E35;
  --nav-dropdown-hover-color: #4FD1B3;
}

/* Màu cho các section */
.light-background {
  --background-color: #EBF9F6; /* Xanh bạc sáng nhẹ – dịu hơn nền chính */
  --surface-color: #FFFFFF;
}

.dark-background {
  --background-color: #4FD1B3; /* Xanh ngọc nhạt làm nền đậm */
  --default-color: #FFFFFF;
  --heading-color: #FFFFFF;
  --surface-color: #39B89A;
  --contrast-color: #FFFFFF;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
.header-offset{
  padding-top: 120px;
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  top: 25px;
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  width: 65px;
  height: 65px;
  object-fit: cover;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .5rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
:root{
  --footer-grad: linear-gradient(135deg, rgba(13,131,253,0.08), rgba(126,63,242,0.08));
  --footer-border: rgba(0,0,0,0.06);
  --footer-surface: var(--surface-color, #fff);
  --footer-text: var(--default-color, #212529);
  --footer-accent: var(--accent-color, #0d83fd);
}

/* Container spacing */
.site-footer {
  color: var(--footer-text);
  background: var(--footer-grad);
  position: relative;
  overflow: clip;
}

/* Glass card feel */
.footer-top {
  padding: 48px 0 32px;
  backdrop-filter: saturate(1.2);
}
.footer-brand .text-accent { color: var(--footer-accent); }
.footer-title {
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 12px;
  color: var(--heading-color, #2d465e);
}

/* Links */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 6px 0; }
.footer-links a {
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}
.footer-links a:hover { opacity: 1; transform: translateX(2px); }

/* Contact list */
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: baseline; margin: 6px 0; }
.footer-contact i { width: 18px; text-align: center; color: var(--footer-accent); }

/* Social icons */
.btn.btn-icon {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--footer-surface); border: 1px solid var(--footer-border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn.btn-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.footer-mini li {
  list-style: none;
  display: inline-block;
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid rgba(0,0,0,0.15);
}

.footer-mini li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}


/* Newsletter */
.newsletter-wrap {
  display: flex; align-items: center; gap: 8px;
  background: var(--footer-surface);
  border: 1px solid var(--footer-border);
  border-radius: 14px; padding: 8px 8px 8px 12px;
}
.newsletter-input {
  flex: 1; border: 0; outline: 0; background: transparent; padding: 8px 6px;
}
.newsletter-btn {
  display: inline-flex; align-items: center; border: 0; outline: 0; cursor: pointer;
  background: var(--footer-accent); color: #fff; border-radius: 10px; padding: 8px 12px;
  font-weight: 600; transition: transform .15s ease, filter .15s ease;
}
.newsletter-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.xsmall { font-size: 12px; }

/* Divider glass */
.footer-divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--footer-border), transparent);
}

/* Bottom bar */
.footer-bottom { padding: 14px 0; backdrop-filter: blur(2px); }

/* Dark background section compatibility */
.dark-background .site-footer { background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04)); }

/*--------------------------------------------------------------
# Global About
--------------------------------------------------------------*/
/* =========================================
   About Uniq – Polished Spacing & Type
   (paste after your current CSS)
========================================= */

/* Design tokens cho nhịp dọc & bo góc */
:root{
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 24px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --elev-1: 0 6px 16px rgba(0,0,0,.06);
  --elev-2: 0 12px 28px rgba(0,0,0,.10);
  --elev-3: 0 18px 50px rgba(0,0,0,.16);
  --text-soft: color-mix(in srgb, var(--default-color), transparent 20%);
  --text-muted: color-mix(in srgb, var(--default-color), transparent 14%);
  --accent-stroke: color-mix(in srgb, var(--accent-color), #000 18%);
}

/* Tối ưu “shape chữ” (nhịp chữ, độ nét, chữ số) */
.about-uniq{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga","kern","ss01","tnum"; /* chữ số đồng bộ chiều rộng */
  letter-spacing: .1px; /* nhẹ để chữ thoáng hơn */
}

/* Heading: nhịp dọc rõ, clamp mềm hơn */
.about-uniq .heading{
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 var(--space-3);
  word-spacing: .4px; /* shape chữ “đằm” hơn */
}

/* Lead: dễ đọc hơn (line-height & max-width) */
.about-uniq .lead{
  font-size: 1.06rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin: 0 0 var(--space-4);
  max-width: 66ch;
}

/* Ribbon: độ bo & padding cân đối, clip-path mềm */
.about-uniq .about-ribbon{
  display:inline-flex; align-items:center; gap:.55rem;
  font-weight: 800; letter-spacing:.18px; color:#fff;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-stroke));
  padding: 10px 16px 10px 18px;
  margin-bottom: var(--space-4);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.about-uniq .about-ribbon i{ transform: rotate(-6deg); opacity:.95; }

/* Marquee: nhịp gọn, pause on hover để dễ đọc */
.about-uniq .marquee{
  --gap: 12px;
  margin: var(--space-3) 0 var(--space-4);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-md);
  background: var(--surface-color);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.about-uniq .marquee-track{
  display:flex; gap: var(--gap);
  padding: 10px;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.about-uniq .marquee:hover .marquee-track{ animation-play-state: paused; }
.about-uniq .marquee-track li{
  display:inline-flex; align-items:center; gap:.5rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px dashed color-mix(in srgb, var(--accent-color), transparent 72%);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: .94rem;
  line-height: 1;
  white-space: nowrap;
}
.about-uniq .marquee-track i{ color: var(--accent-color); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Media side: bo góc & shadow đồng bộ, chip nghiêng cân chỉnh */
.about-uniq .media-wrap{ position: relative; }
.about-uniq .media-grid{
  inset: -10% -8% auto auto; width: 72%; height: 72%;
  filter: blur(26px);
}
/* Ảnh fill khung, không méo, không tràn */
.about-uniq .conic-frame picture,
.about-uniq .conic-frame img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;                  /* fill trong khung */
  object-position: center;            /* căn giữa nội dung ảnh */
  border-radius: calc(var(--radius-lg) - 2px);
  box-shadow: var(--elev-3);
}

.about-uniq .conic-frame img{
  border-radius: calc(var(--radius-lg) - 2px);
  box-shadow: var(--elev-3);
}

/* CTA buttons: dáng chữ & đổ bóng tinh tế */
.about-uniq .cta{ display:flex; gap: var(--space-2); margin-top: var(--space-4); }
.about-uniq .btn{
  padding: .72rem 1.1rem;
  border-radius: 12px;
  font-weight: 760;
  letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.about-uniq .btn-primary{
  background: var(--accent-color); color: #fff; border: none;
  box-shadow: var(--elev-1);
}
.about-uniq .btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: var(--elev-2);
}
.about-uniq .btn-ghost{
  border: 1px solid rgba(0,0,0,.12);
  background: transparent;
  color: var(--default-color);
}
.about-uniq .btn-ghost:hover{
  border-color: var(--accent-color);
  color: var(--accent-color);
  box-shadow: var(--elev-1);
}

/* Stroke text nhẹ & mượt hơn */
.about-uniq .stroke{
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-stroke);
  text-stroke: 1px var(--accent-stroke);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), white 82%), var(--accent-color));
  -webkit-background-clip: text; background-clip: text;
}

/* Responsive tinh chỉnh khoảng cách */
@media (max-width: 992px){
  .about-uniq .rail-line{ left: 14px; }
  .about-uniq .rail-step{ padding-left: 34px; }
  .about-uniq .heading{ margin-bottom: var(--space-3); }
  .about-uniq .marquee{ margin: var(--space-2) 0 var(--space-3); }
}
@media (max-width: 576px){
  .about-uniq .heading{ font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .about-uniq .lead{ font-size: 1rem; }
  .about-uniq .cta{ flex-wrap: wrap; }
  .about-uniq .conic-frame{ aspect-ratio: 16 / 10; }

}

/* A11y: focus rõ ràng */
.about-uniq a:focus-visible,
.about-uniq button:focus-visible{
  outline: 3px solid color-mix(in srgb, var(--accent-color), white 28%);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Tôn trọng người dùng giảm chuyển động */
@media (prefers-reduced-motion: reduce){
  .about-uniq .marquee-track,
  .about-uniq .about-ribbon{
    animation: none !important;
    transition: none !important;
  }
}


/*--------------------------------------------------------------
# Global Services
--------------------------------------------------------------*/
/* Section nền nhẹ để tách với background trắng */
.services-clean {
  position: relative;
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--accent-color), transparent 97%));
  padding: 80px 0;
}

/* Tiêu đề */
.services-clean .s-head {
  max-width: 720px;
  margin: 0 auto 50px;
}
.services-clean .s-head .heading {
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  margin-bottom: 12px;
  color: var(--heading-color);
}
.services-clean .s-head .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.04rem;
}

/* Grid layout */
.services-clean .s-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 1200px) {
  .services-clean .s-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-clean .s-grid { grid-template-columns: 1fr; }
}

/* Card cơ bản */
.services-clean .card {
  position: relative;
  background: var(--surface-color);
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  padding: 30px 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-clean .card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

/* Icon */
.services-clean .icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 1.6rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all .25s ease;
}
.services-clean .card:hover .icon {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

/* Title + Description */
.services-clean .title {
  font-size: 1.18rem;
  font-weight: 750;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.services-clean .desc {
  font-size: .96rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Bullet list */
.services-clean .bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.services-clean .bullets li {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .93rem;
  color: var(--text-muted);
  margin: 6px 0;
  position: relative;
  padding-left: 1rem;
}
.services-clean .bullets li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: .85rem;
}

/* Price + CTA */
.services-clean .foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services-clean .price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.05rem;
}
.services-clean .cta {
  display: flex;
  gap: 8px;
}
.services-clean .btn {
  padding: .65rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .93rem;
  transition: all .2s ease;
}
.services-clean .btn-primary {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.services-clean .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.services-clean .btn-ghost {
  border: 1px solid rgba(0,0,0,.1);
  color: var(--default-color);
  background: transparent;
}
.services-clean .btn-ghost:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Ribbon */
.services-clean .ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .75rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 10%));
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: .2px;
  box-shadow: 0 8px 16px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* Section subtle glow backdrop */
.services-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 20%, color-mix(in srgb, var(--accent-color), white 92%) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}
.services-clean .container {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Global Pricing
--------------------------------------------------------------*/
.pricing-neo {
  position: relative;
  background: linear-gradient(
    180deg,
    #fff,
    color-mix(in srgb, var(--accent-color), transparent 97%)
  );
  padding: 80px 0;
}

/* Heading */
.pricing-neo .p-head {
  max-width: 720px;
  margin: 0 auto 50px;
}
.pricing-neo .p-head .heading {
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  margin-bottom: 12px;
  color: var(--heading-color);
}
.pricing-neo .p-head .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.05rem;
}

/* Grid layout */
.pricing-neo .p-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 992px) {
  .pricing-neo .p-grid { grid-template-columns: 1fr; }
}

/* Card */
.pricing-neo .price-card {
  position: relative;
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 38px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.pricing-neo .price-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

/* Featured card */
.pricing-neo .price-card.featured {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-color), #fff 10%),
    color-mix(in srgb, var(--accent-color), #000 10%)
  );
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--accent-color), transparent 60%);
}
.pricing-neo .price-card.featured:hover {
  transform: scale(1.05);
}

/* Ribbon */
.pricing-neo .price-card.featured .ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
}

/* Title + Subtitle */
.pricing-neo .p-title {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.pricing-neo .p-sub {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.pricing-neo .price-card.featured .p-sub {
  color: rgba(255, 255, 255, 0.85);
}

/* Price */
.pricing-neo .p-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 24px;
}
.pricing-neo .p-price .unit {
  font-size: 1rem;
  vertical-align: middle;
  margin-left: 3px;
  opacity: 0.8;
}
.pricing-neo .price-card.featured .p-price {
  color: #fff;
}

/* Features list */
.pricing-neo .p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.pricing-neo .p-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.94rem;
  color: var(--text-soft);
}
.pricing-neo .p-features li i {
  color: var(--accent-color);
  font-size: 0.9rem;
}
.pricing-neo .price-card.featured .p-features li {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-neo .price-card.featured .p-features li i {
  color: #fff;
}

/* CTA */
.pricing-neo .cta .btn {
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.pricing-neo .btn-primary {
  background: var(--accent-color);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.pricing-neo .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.pricing-neo .btn-ghost {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  color: var(--default-color);
}
.pricing-neo .btn-ghost:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Section subtle glow backdrop */
.pricing-neo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 60% 30%,
    color-mix(in srgb, var(--accent-color), white 90%) 0%,
    transparent 70%
  );
  opacity: 0.25;
  z-index: 0;
}
.pricing-neo .container {
  position: relative;
  z-index: 1;
}

/* BONUS BADGE */
.bonus {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), white 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s ease;
  animation: pulseGlow 3s infinite;
}
.price-card.featured .bonus {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 10px color-mix(in srgb, var(--accent-color), transparent 60%);
  }
}

/* Hover */
.price-card:hover .bonus {
  transform: scale(1.05);
  background: color-mix(in srgb, var(--accent-color), white 80%);
  border-color: var(--accent-color);
}
.price-card.featured:hover .bonus {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}


/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  background: color-mix(in srgb, var(--accent-color), white 85%);
  color: var(--default-color);
  font-size: .9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,.05);
  position: relative;
  z-index: 99;
}

.topbar .container {
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  text-decoration: none;
  transition: color .2s ease;
}

.topbar-item i {
  margin-right: 6px;
  color: var(--accent-color);
  font-size: .95rem;
}

.topbar-item:hover {
  color: var(--accent-color);
}

/* Social Links */
.topbar .social-link {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-size: .85rem;
  transition: transform .2s ease, background .2s ease;
}
.topbar .social-link:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 768px) {
  .topbar {
    font-size: .85rem;
  }
  .topbar .topbar-left {
    flex-wrap: wrap;
    gap: 6px;
  }
  .topbar .topbar-item span {
    display: none;
  }
  .topbar .social-links {
    gap: 6px;
  }
}





.feedback-premium {
  position: relative;
  background: linear-gradient(180deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding-top: 70px;
  padding-bottom: 90px;
}

.feedback-premium .f-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feedback-premium .f-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  padding: 28px 26px 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feedback-premium .f-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent-color), transparent 90%), transparent 70%);
  transform: rotate(10deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feedback-premium .f-card:hover::before { opacity: 1; }

.feedback-premium .f-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.feedback-premium .f-card.featured {
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--accent-color), transparent 93%));
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.feedback-premium .f-stars {
  color: var(--accent-color);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.feedback-premium .f-text {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.65;
  font-size: 1rem;
  margin-bottom: 20px;
}

.feedback-premium .f-user {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 12px;
}

.feedback-premium .f-user .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.feedback-premium .f-user h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.feedback-premium .f-user p {
  margin: 2px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .feedback-premium .f-grid { grid-template-columns: 1fr; }
  .feedback-premium .f-card { padding: 24px; }
}

/*******************
    why choose
********************/
.why-choose {
  position: relative;
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--accent-color), transparent 97%));
  padding: 80px 0;
}

/* Heading */
.why-choose .heading {
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  margin-bottom: 12px;
  color: var(--heading-color);
}
.why-choose .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.04rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Grid layout */
.why-choose .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .why-choose .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-choose .why-grid { grid-template-columns: 1fr; }
}

/* Item */
.why-choose .why-item {
  background: var(--surface-color);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.why-choose .why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--accent-color), white 90%) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}
.why-choose .why-item:hover::before {
  opacity: .25;
}
.why-choose .why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* Icon */
.why-choose .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 16px;
  transition: all .3s ease;
}
.why-choose .why-item:hover .icon {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* Title + Text */
.why-choose .why-item h3 {
  font-weight: 750;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}
.why-choose .why-item p {
  font-size: .95rem;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  line-height: 1.55;
  margin: 0;
}

/* Glow background effect for section */
.why-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, color-mix(in srgb, var(--accent-color), white 90%) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}
.why-choose .container {
  position: relative;
  z-index: 1;
}

/**********************
    NEWS section
***********************/  
.news-neo .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.news-neo .news-card {
  background: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-neo .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}
.news-neo .thumb img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.news-neo .news-body {
  padding: 18px 20px 24px;
}
.news-neo .cat {
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.news-neo h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  color: var(--heading-color);
  line-height: 1.4;
}
.news-neo .news-body p {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: .96rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.news-neo .news-body .news-desc p{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-neo .readmore {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
}
.news-neo .readmore i {
  margin-left: 6px;
  transition: transform .2s ease;
}
.news-neo .readmore:hover i {
  transform: translateX(4px);
}
/* =========================================================
   NEWS MODULE – SINGLE + RELATED + SIDEBAR (SCOPED)
   Áp dụng cho:
   - .banner-page, .single-post-area (single)
   - .related-articles (owl carousel)
   - .blog_right_sidebar (featured list)
   Dùng chung token với module .news
========================================================= */
:where(.news, .single-post-area, .related-articles, .blog_right_sidebar){
  --news-text:#1B2E35;       /* body text */
  --news-heading:#0A4E47;    /* titles */
  --news-accent:#4FD1B3;     /* brand accent */
  --news-surface:#ffffff;    /* cards bg */
  --news-muted:#6b7280;      /* text-muted */
  --news-border:1px solid rgba(10,78,71,.10);
  --news-shadow:0 6px 18px rgba(27,46,53,.12);
  --news-ring:0 0 0 3px rgba(79,209,179,.25);
}

/* =======================
   Banner page (cover)
======================= */
.banner-page{
  position:relative; overflow:hidden; border-radius:16px; margin-bottom:18px;
}
.banner-page .bg-cover img{ width:100%; height:360px; object-fit:cover; display:block; }
@media (max-width: 768px){
  .banner-page .bg-cover img{ height:240px; }
}

/* =======================
   Single Post Card
======================= */
.single-post-area .single-post{
  background: var(--news-surface);
  border: var(--news-border);
  border-radius:16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.single-post-area .blog_single_details h2{
  color: var(--news-heading);
  font-weight: 800;
  line-height: 1.25;
}
.single-post-area .blog_single_details .small,
.single-post-area .blog_single_details .text-muted{ color: var(--news-muted)!important; }

.single-post-area .news-image{ background:#f4f7f6; border-radius:12px; overflow:hidden; }
.single-post-area .news-image img{ object-fit:cover; transition: transform .35s ease; }
.single-post-area .news-image:hover img{ transform: scale(1.03); }

/* Tags */
.single-post-area .badge{ 
  border:1px solid rgba(79,209,179,.45);
  background: rgba(79,209,179,.12);
  color:#065f55;
  font-weight:600;
  border-radius:999px;
}

/* Content body */
.single-post-area .excerpt{
  color: var(--news-text);
  font-size: 1.02rem;
  line-height: 1.75;
}
.single-post-area .excerpt img{
  max-width:100%; height:auto; border-radius:12px; margin:14px 0;
}
.single-post-area .excerpt h1,
.single-post-area .excerpt h2,
.single-post-area .excerpt h3{ color: var(--news-heading); font-weight:800; margin-top:1.25rem; }

/* Share buttons */
.single-post-area .btn.btn-outline-secondary{
  border-color: rgba(10,78,71,.25);
  color: var(--news-heading);
}
.single-post-area .btn.btn-outline-secondary:hover{
  background: var(--news-accent);
  border-color: var(--news-accent);
  color:#0b2f2a;
  box-shadow: var(--news-ring);
}

/* =======================
   Related Articles (Owl)
======================= */
.related-articles{
  margin-top: 8px;
  padding: 8px 36px; /* chừa khoảng cho nút prev/next */
}
.related-articles .section-title h3{ 
  color: var(--news-heading);
  font-weight: 800;
}

/* Item card */
.related-articles__item.card{
  border: var(--news-border);
  border-radius:14px;
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.related-articles__item.card:hover{
  transform: translateY(-6px);
  box-shadow: var(--news-shadow);
  border-color: rgba(79,209,179,.55);
}
.related-articles__item .card-img-top{
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Date badge trên ảnh */
.related-articles__date{
  position:absolute; top:10px; left:10px; z-index:2;
  padding:6px 10px; border-radius:999px;
  background: rgba(0,0,0,.55); color:#fff; font-size:.8rem; font-weight:600;
  backdrop-filter: blur(2px);
}

/* Title */
.related-articles__title{
  display:block;
  color: var(--news-heading);
  font-weight: 700;
  line-height: 1.35;
  text-decoration:none;
  transition: color .2s ease;
}
.related-articles__title:hover{ color: var(--news-accent); }

/* Nav buttons (custom outside Owl) */
.related-articles__nav{
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(10,78,71,.12);
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  z-index:3;
}
.related-articles__nav i{ font-size:.9rem; }
.related-articles__nav:hover{
  background: var(--news-accent); border-color: var(--news-accent); color:#0b2f2a;
}
.related-articles__nav--prev{ left: 0; }
.related-articles__nav--next{ right: 0; }

/* Owl dots/arrows (nếu bật) */
.related-articles .owl-dots .owl-dot span{
  background:#cfd8dc; width:8px; height:8px;
}
.related-articles .owl-dots .owl-dot.active span{ background: var(--news-accent); transform: scale(1.08); }

/* =======================
   Sidebar Featured List
======================= */
.blog_right_sidebar .single_sidebar_widget{
  background: var(--news-surface);
  border: var(--news-border);
  border-radius:16px;
  padding:18px;
}
.blog_right_sidebar h3{
  color: var(--news-heading);
  font-weight:800;
  margin-bottom:14px;
}

/* Item */
.blog_right_sidebar .newslist_page{
  display:grid; grid-template-columns: 110px 1fr; gap:12px;
  padding:10px; border-radius:12px;
  transition: background .2s ease;
}
.blog_right_sidebar .newslist_page:hover{
  background: rgba(79,209,179,.06);
}
.blog_right_sidebar .newslist_img .ratio{ background:#f4f7f6; }
.blog_right_sidebar .newslist_img img{ object-fit:cover; }

/* Title */
.blog_right_sidebar .newslist_title a{
  color: var(--news-heading);
  font-weight:700; line-height:1.35; text-decoration:none;
  display:-webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow:hidden;
}
.blog_right_sidebar .newslist_title a:hover{ color: var(--news-accent); }

/* Optional desc nếu bật lại */
.blog_right_sidebar .newslist_desc{
  color: var(--news-muted); font-size:.92rem;
  display:-webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow:hidden;
}

/* =======================
   Utilities & responsive
======================= */
.single-post-area .stretched-link::after{ position:static; } /* tránh tràn */
@media (max-width: 992px){
  .related-articles{ padding: 8px 28px; }
  .related-articles__nav{ width:36px; height:36px; }
  .blog_right_sidebar .newslist_page{ grid-template-columns: 100px 1fr; }
}
@media (max-width: 576px){
  .related-articles{ padding: 8px 20px; }
  .blog_right_sidebar .newslist_page{ grid-template-columns: 90px 1fr; gap:10px; }
}
