/* ============================================================
   NhimColdlyMedia — CSS thuần, dễ sửa
   Đổi màu nhanh: sửa các biến trong :root bên dưới
   ============================================================ */

:root {
  --nen: #24103a;          /* màu nền chính (tím đậm) */
  --nen-2: #3b1c61;        /* màu nền phụ / khối */
  --chinh: #fc6110;        /* màu nhấn chính (cam) */
  --kem: #fab76b;          /* màu kem (hover nút, số nhỏ) */
  --chu: #f2eff9;          /* màu chữ chính */
  --chu-mo: #b0aabf;       /* màu chữ mờ */
  --vien: rgba(242, 239, 249, 0.12); /* màu đường viền */
  --font-tieu-de: "Space Grotesk", sans-serif;
  --font-chu: "DM Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--nen);
  color: var(--chu);
  font-family: var(--font-chu);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-tieu-de); letter-spacing: -0.02em; }

/* ---------- Hiệu ứng nền ---------- */
.hieu-ung-nen { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.vet-sang { position: absolute; border-radius: 50%; }
.vet-sang-1 { width: 520px; height: 520px; top: -160px; right: -130px; background: rgba(252, 97, 16, 0.25); filter: blur(120px); }
.vet-sang-2 { width: 420px; height: 420px; bottom: 0; left: -160px; background: var(--nen-2); filter: blur(100px); }

/* ---------- Nút & link dùng chung ---------- */
.nut {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--chinh); color: #1c0b2e; font-weight: 700;
  border-radius: 999px; transition: background 0.25s;
}
.nut:hover { background: var(--kem); }
.nut-nho { padding: 10px 20px; font-size: 14px; }
.nut-to { padding: 14px 28px; font-family: var(--font-tieu-de); font-weight: 500; }
.nut-to b { transition: transform 0.25s; font-weight: 600; }
.nut-to:hover b { transform: translateX(4px); }

.lien-ket { font-size: 14px; font-weight: 500; color: var(--chu-mo); transition: color 0.25s; }
.lien-ket:hover { color: var(--chinh); }

.nhan {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--chinh) !important;
}

.tieu-de {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px;
}
.tieu-de h2 { font-size: 32px; font-weight: 700; margin-top: 8px; color: var(--chu)}

/* ---------- Header ---------- */
.header { position: relative; z-index: 20; border-bottom: 1px solid var(--vien); }
.header-trong { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; }

.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-tieu-de); font-size: 18px; font-weight: 600; }
.logo em { font-style: normal; color: var(--chinh); }

.menu { display: flex; align-items: center; gap: 32px; font-size: 14px; color: rgba(242, 239, 249, 0.7); }
.menu a { transition: color 0.25s; }
.menu a:hover { color: var(--chinh); }

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center;
  padding-top: 80px;
}

.huy-hieu {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(252, 97, 16, 0.4); background: rgba(252, 97, 16, 0.1);
  color: var(--kem); font-size: 12px; font-weight: 500;
  border-radius: 999px; padding: 6px 16px; margin-bottom: 24px;
}
.huy-hieu i { width: 6px; height: 6px; border-radius: 50%; background: var(--chinh); }

.hero h1 {     font-size: 50px;
    font-weight: 700;
    line-height: 1.25; }
.hero h1 span { color: var(--chinh); }

.hero .mo-ta { margin-top: 24px; max-width: 500px; font-size: 18px; color: rgba(242, 239, 249, 0.7); }

.hero-nut { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

/* Thẻ bảng điều khiển */
.hero-the { position: relative; }
.hero-the::before {
  content: ""; position: absolute; inset: -24px; z-index: -1;
  transform: rotate(-6deg); border-radius: 24px;
  background: linear-gradient(135deg, rgba(252, 97, 16, 0.4), transparent);
  filter: blur(40px);
}

/* --- Vệt sáng nền --- */
.nhim-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.nhim-glow i {
  position: absolute;
  border-radius: 999px;
  display: block;
}
.nhim-glow i:first-child {
  right: -130px;
  top: -160px;
  width: 520px;
  height: 520px;
  background: rgba(255, 107, 26, 0.25);
  filter: blur(120px);
  animation: nhim-glow 7s ease-in-out infinite;
}
.nhim-glow i:last-child {
  left: -160px;
  bottom: 0;
  width: 420px;
  height: 420px;
  background: var(--nhim-bg2);
  filter: blur(100px);
}
@keyframes nhim-glow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.8;
  }
}

.the {
  position: relative; transform: rotate(-5deg) !important;
  border: 1px solid rgba(242, 239, 249, 0.15);
  background: rgba(242, 239, 249, 0.06);
  border-radius: 24px; padding: 28px;
}

.the-dau {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--vien); padding-bottom: 16px;
  font-family: var(--font-tieu-de); font-size: 14px; font-weight: 600;
color: var(--chu);
}
.cham { display: flex; gap: 6px; }
.cham i { width: 8px; height: 8px; border-radius: 50%; background: rgba(242, 239, 249, 0.3); }
.cham i:first-child { background: var(--chinh); }

.the-so { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.the-so strong { display: block; font-family: var(--font-tieu-de); font-size: 24px; font-weight: 700; color: var(--chinh); }
.the-so small { font-size: 12px; color: rgba(242, 239, 249, 0.5); }

.the-dong {
  display: flex; align-items: center; gap: 12px;
  background: rgba(59, 28, 97, 0.6); border-radius: 12px;
  padding: 12px 16px; margin-top: 12px; font-size: 14px;
}
.the-dong span:first-child { color: rgba(242, 239, 249, 0.8); white-space: nowrap; }
.the-dong em { font-style: normal; font-size: 12px; font-weight: 600; color: var(--kem); white-space: nowrap; }
.thanh { flex: 1; height: 6px; border-radius: 999px; background: rgba(242, 239, 249, 0.1); }
.thanh i { display: block; height: 100%; border-radius: 999px; background: var(--chinh); }

/* ---------- Cam kết ---------- */
.cam-ket { position: relative; z-index: 1; border-top: 1px solid var(--vien); border-bottom: 1px solid var(--vien); background: rgba(59, 28, 97, 0.4); }
.cam-ket-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.cam-ket-item { display: flex; align-items: center; gap: 16px; padding: 24px; }
.cam-ket-item + .cam-ket-item { border-left: 1px solid var(--vien); }
.cam-ket-item b { font-family: var(--font-tieu-de); font-size: 24px; font-weight: 700; color: var(--chinh); }
.cam-ket-item strong { display: block; font-family: var(--font-tieu-de); font-size: 16px; color: var(--chu) }
.cam-ket-item p { font-size: 14px; color: rgba(242, 239, 249, 0.6); }

/* ---------- Lưới dùng chung ---------- */
.luoi-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }

/* ---------- Dịch vụ ---------- */
.dich-vu { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }

.the-dv {
  border: 1px solid var(--vien); background: rgba(242, 239, 249, 0.04);
  border-radius: 16px; padding: 16px;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.the-dv:hover {
  transform: translateY(-15px);
  border-color: rgba(252, 97, 16, 0.6);
  background: rgba(242, 239, 249, 0.07);
}
.the-dv img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; background: var(--nen-2); }
.the-dv-body { padding: 16px 4px 4px; }
.the-dv-body h3 a { font-size: 18px; font-weight: 600; line-height: 1.35; color: var(--chu)}
.the-dv-body h3 a:hover {     color: var(--chinh);}

.the-dv-body p { margin-top: 6px; font-size: 14px; color: rgba(242, 239, 249, 0.6); }
.the-dv-body a { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--chinh); opacity: 0.85; transition: opacity 0.25s; }
.the-dv:hover .the-dv-body a { opacity: 1; }

/* ---------- Lý do ---------- */
.ly-do { position: relative; z-index: 1; border-top: 1px solid var(--vien); background: rgba(59, 28, 97, 0.25); padding: 80px 0; }

.ly-do-item { border: 1px solid var(--vien); border-radius: 16px; padding: 24px; background: rgba(242, 239, 249, 0.03); }
.ly-do-item b { font-family: var(--font-tieu-de); font-size: 24px; font-weight: 700; color: var(--chinh); }
.ly-do-item h3 { font-size: 18px; font-weight: 600; margin: 12px 0 6px; }
.ly-do-item p { font-size: 14px; color: rgba(242, 239, 249, 0.6); }

/* ---------- Số liệu ---------- */
.so-lieu { position: relative; z-index: 1; border-top: 1px solid var(--vien); }
.so-lieu-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; background: #3b1c6180;
    border: 1px solid  rgba(244, 240, 251, 0.12);
    border-radius: 26px;
    padding: 40px;


}
.so-lieu-item b span { display: block; font-family: var(--font-tieu-de); font-size: 48px; font-weight: 700; color: var(--chinh); }
.so-lieu-item span { font-size: 14px; color: rgba(242, 239, 249, 0.6); }

/* ---------- Giới thiệu ---------- */
.gioi-thieu {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding-top: 80px; padding-bottom: 80px;
}

.gioi-thieu-anh { position: relative; }
.gioi-thieu-anh img { border-radius: 24px; aspect-ratio: unset; object-fit: cover; width: 100%; }

.the-noi {
  position: absolute; left: 24px; bottom: -24px;
  display: flex; align-items: center; gap: 12px;
  background: var(--nen-2); border: 1px solid var(--vien);
  border-radius: 16px; padding: 12px 20px;
}
.the-noi img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; aspect-ratio: unset; }
.the-noi strong { display: block; font-family: var(--font-tieu-de); font-size: 14px; }
.the-noi small { font-size: 12px; color: rgba(242, 239, 249, 0.6); }

.gioi-thieu-chu h2 { font-size: 36px; font-weight: 700; margin: 8px 0 16px; }
.gioi-thieu-chu p { color: rgba(242, 239, 249, 0.7); margin-bottom: 16px; }

/* ---------- CTA ---------- */
.cta { position: relative; z-index: 1; padding-bottom: 80px; }
.cta-hop {
  text-align: center; border: 1px solid rgba(252, 97, 16, 0.35);
  background: linear-gradient(135deg, rgba(252, 97, 16, 0.12), rgba(59, 28, 97, 0.4));
  border-radius: 32px; padding: 64px 32px;
}
.cta-hop h2 { font-size: 36px; font-weight: 700; }
.cta-hop p { color: rgba(242, 239, 249, 0.7); margin: 12px 0 28px; }

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--vien); background: rgba(59, 28, 97, 0.3); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 56px 24px 40px; }
.footer-mo-ta { margin-top: 16px; font-size: 14px; color: rgba(242, 239, 249, 0.6); max-width: 320px; }
.footer h4 { font-size: 15px; margin-bottom: 16px; }
.footer a, .footer span { display: block; font-size: 14px; color: rgba(242, 239, 249, 0.6); margin-bottom: 10px; }
.footer a:hover { color: var(--chinh); }
.footer-cuoi { border-top: 1px solid var(--vien); padding: 20px 24px; font-size: 13px; color: rgba(242, 239, 249, 0.5); }

/* ---------- Hiệu ứng xuất hiện khi cuộn ---------- */
.rise-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rise-in.is-visible { opacity: 1; transform: none; }

/* ---------- Mobile ---------- */
.an-mobile { display: none; }

@media (min-width: 768px) {
  .an-mobile { display: block; }
}

@media (max-width: 1024px) {
  .menu { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 64px; }
  .hero h1 { font-size: 44px; }
  .luoi-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .luoi-3 { grid-template-columns: 1fr; }
  .cam-ket-grid { grid-template-columns: 1fr; }
  .cam-ket-item + .cam-ket-item { border-left: none; border-top: 1px solid var(--vien); }
  .so-lieu-grid { grid-template-columns: 1fr; gap: 32px; }
  .gioi-thieu { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tieu-de h2 { font-size: 26px; }
}

.the-dv {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nhan-noi-bat {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    
    /* Màu sắc Gradient cao cấp */
    background: linear-gradient(135deg, #fc6110 0%, #3b1c61 100%);
    color: #ffffff;

    /* Typography */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    
    /* Padding & Bo góc dạng Pill */
    padding: 6px 14px;
    border-radius: 50px;
    
    /* Viền kính mờ (Glassmorphism border) */
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    /* Bóng đổ phát sáng (Glow Shadow) */
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    
    /* Transition mượt mà */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Căn giữa icon/chữ */
    display: inline-flex;
    align-items: center;
    gap: 4px;
    
    /* Ngăn bôi đen văn bản */
    user-select: none;
}

/* Thêm hiệu ứng chấm tròn phát sáng phía trước chữ */
.nhan-noi-bat::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px #ffffff;
    animation: pulse-dot 1.5s infinite;
}

/* Hiệu ứng Hover khi di chuột vào thẻ bài viết */
.the-dv:hover .nhan-noi-bat {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 65, 108, 0.6);
}

/* Animation nhịp đập cho chấm tròn */
@keyframes pulse-dot {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bd {
	    border: 1px solid #f2eff91f;
    border-radius: 25px;
    background: #3b1c6180;
}
.so-lieu {
	padding: 60px 0 0 !important;
}

@media (min-width: 640px) {
    .so-lieu-grid .so-lieu-item + .so-lieu-item {
        border-left: 1px solid rgba(244, 240, 251, 0.12);
    }
}

.clblack {
	color: #000000;
	border-top: 1px solid var(--vien);
	padding-bottom: 80px !important;
}

.clblack h2 ,.clblack h4{
	color:#3b1c61;
}


/* ==========================================
   BIẾN MÀU SẮC CHỦ ĐẠO
   ========================================== */
:root {
    --nen-2: #23123b;
    --chinh: #fc6110;
    --chinh-glow: rgba(252, 97, 16, 0.35);
    --card-bg: rgba(22, 10, 38, 0.85);
    --border-color: rgba(252, 97, 16, 0.4);
}

/* ==========================================
   1. NÚT CỐ ĐỊNH CHÂN TRANG GÓC TRÁI (CÓ ANIMATION)
   ========================================== */
.lux-fixed-holder {
    position: fixed;
    bottom: 50%;
	transform: translatey(-50%);
    left: 20px;
    right: auto;
    z-index: 99998;
}

.btn-lux-aio {
    position: relative;
    background: linear-gradient(135deg, var(--chinh) 0%, #ff8c42 100%);
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px var(--chinh-glow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    /* Animation nhún lắc + nhịp thở */
    animation: luxPulseShake 4s infinite ease-in-out;
	line-height: 1;
}

.btn-lux-aio:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 28px rgba(252, 97, 16, 0.8);
    border-color: #ffffff;
    animation-play-state: paused; /* Tạm dừng lắc khi di chuột */
}

.lux-btn-icon svg {
    width: 16px;
    height: 16px;
}

.lux-btn-text {
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Hiệu ứng Vệt sáng lướt qua mặt nút (Shine Effect) */
.btn-lux-aio::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: luxShine 3.5s infinite;
}

/* ==========================================
   KEYFRAMES ANIMATED (CÁC ĐOẠN HOẠT HỌA)
   ========================================== */

/* 1. Animation vệt sáng */
@keyframes luxShine {
    0% { left: -60%; }
    20% { left: 140%; }
    100% { left: 140%; }
}

/* 2. Animation Lắc nhẹ gây chú ý */
@keyframes luxPulseShake {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 6px 20px var(--chinh-glow);
    }
    50% {
        transform: scale(1.03) rotate(0deg);
        box-shadow: 0 8px 25px rgba(252, 97, 16, 0.6);
    }
    54% { transform: scale(1.03) rotate(-3deg); }
    58% { transform: scale(1.03) rotate(3deg); }
    62% { transform: scale(1.03) rotate(-2deg); }
    66% { transform: scale(1.03) rotate(2deg); }
    70% { transform: scale(1) rotate(0deg); }
}

/* ==========================================
   2. MODAL POPUP DISPLAY (BẢNG MENU)
   ========================================== */
.lux-modal-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(10, 4, 18, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    opacity: 0; visibility: hidden;
    transition: all 0.35s ease;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}

.lux-modal-wrapper.active {
    opacity: 1; visibility: visible;
}

.lux-modal-card {
    background: linear-gradient(145deg, #180a2b 0%, var(--nen-2) 100%);
    width: 100%;
    max-width: 1200px;
    max-height: 88vh;
    border-radius: 20px;
    border: 2px solid var(--chinh);
    box-shadow: 0 0 40px var(--chinh-glow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: all 0.35s ease;
}

.lux-modal-wrapper.active .lux-modal-card {
    transform: scale(1);
}

.lux-modal-header {
    padding: 20px 30px;
    background: rgba(15, 6, 28, 0.7);
    border-bottom: 1px solid rgba(252, 97, 16, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lux-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lux-flash-icon { color: var(--chinh); font-size: 18px; }

.lux-header-title h3 {
    margin: 0; color: #ffffff;
    font-size: 18px; font-weight: 800;
    letter-spacing: 0.5px; text-transform: uppercase;
}

.lux-close-btn {
    background: rgba(252, 97, 16, 0.2);
    border: 1px solid var(--chinh);
    color: var(--chinh);
    font-size: 16px;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
	margin: 0;
}
.header-main .nav > li > a {
	text-transform: capitalize;
}

.lux-close-btn:hover { background: var(--chinh); color: #fff; }

.lux-modal-body { padding: 25px 30px; overflow-y: auto; }

.lux-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 3. THẺ KHUNG DỊCH VỤ */
.lux-cat-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.25s ease;
}

.lux-cat-card:hover {
    border-color: var(--chinh);
    box-shadow: 0 8px 25px rgba(252, 97, 16, 0.25);
    transform: translateY(-2px);
}

.lux-cat-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.lux-cat-card .icon-box {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 20px; flex-shrink: 0;
}

.lux-cat-card .icon-box svg { width: 24px; height: 24px; fill: #fff; }

.ig-box { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fb-box { background: #1877f2; }
.tt-box { background: #000000; border: 1px solid #333; }
.yt-box { background: #ff0000; }
.web-box { background: #0088cc; color: #fff; }
.gg-box { background: #ea4335; color: #fff; font-size: 22px; }
.default-box { background: var(--chinh); color: #fff; }

.lux-title-text { display: flex; flex-direction: column; }
.sub-label { font-size: 11px; font-weight: 700; color: #c4b5fd; text-transform: uppercase; }
.lux-title-text h4 { margin: 0; font-size: 17px; font-weight: 900; text-transform: uppercase; }
.lux-title-text h4 a { color: var(--chinh) !important; text-decoration: none !important; }

.lux-service-list { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.lux-service-list li { margin-bottom: 8px; }
.lux-service-list li a {
    color: #e2e8f0 !important;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
    transition: all 0.2s ease;
    padding: 3px 0;
}

.arrow-orange { color: var(--chinh); font-size: 12px; margin-top: 1px; flex-shrink: 0; }
.lux-service-list li a:hover { color: #ffffff !important; padding-left: 4px; }

/* ==========================================
   4. RESPONSIVE MOBILE - ẨN TEXT, HIỆN NÚT TRÒN
   ========================================== */
@media (max-width: 991px) {
    .lux-grid-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .lux-grid-container { grid-template-columns: 1fr; }
    .lux-fixed-holder { bottom: 15px; left: 15px; }

    .btn-lux-aio {
        padding: 0;
        width: 44px; height: 44px;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
			        left: 8px;
                bottom: 90px;
        margin: 0;
    }

    .lux-btn-text { display: none !important; }
    .lux-btn-icon svg { width: 20px; height: 20px; }
}

.header-main .header-search .header-button > .button:not(.is-outline) {
    background-color: transparent !important;
	box-shadow: none !important
	
}

.header-main .header-search .header-button > .button:hover {
    border-color: transparent !important;
}
