.container-home {
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(68, 157, 240, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 50px 0;
}

.hero-left {
  padding-right: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: white;
  border: 1.5px solid #f8f8f8;
  color: #188ffe;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  gap: 8px;
}

.hero-tag .icon-start {
  display: inline-block;
  animation: spin 6s linear infinite;
  font-size: 10px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-tag .icon-bolt {
  display: inline-block;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 15px;
  color: #5a5a5a;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero p a {
  color: #188ffe;
  text-decoration: none;
  border-bottom: 2px solid #188ffe;
  transition: opacity 0.3s;
}

.hero p a:hover {
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-home {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  color: #fff;
  background-color: #188ffe;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulse-glow-blue 2s ease-out infinite;
}

@keyframes pulse-glow-blue {
  0% {
    box-shadow: 0 0 0 0 #188ffe;
  }
  70% {
    box-shadow: 0 0 30px 20px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

/* hiệu ứng hover */
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* icon mũi tên di chuyển khi hover */
.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-outline {
  background: white;
  color: #188ffe;
  border: 2px solid #e5e7eb;
  justify-content: center;
}

.btn-outline:hover {
  border-color: #188ffe52;
  background: #f3f8fe;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5a5a5a;
  font-size: 14px;
}

.hero-stat i {
  border-radius: 50%;
  color: #00c950;
  font-size: 18px;
  animation: pulse-glow-green 3s ease-in-out infinite;
}

@keyframes pulse-glow-green {
  0% {
    box-shadow: 0 0 0 0 #00c950;
  }
  70% {
    box-shadow: 0 0 10px 6px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.hero-right {
  position: relative;
}

.hero-card {
  position: relative;
  /* border-radius: 24px; */
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
  /* background: white; */
  /* background: radial-gradient(
    circle at top right,
    #e8f2ff,
    #ffffff 100%
  ); */
  max-width: 620;
  margin-left: auto;
  justify-content: center;
  display: flex;
}

.hero-card-img {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 24px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 50%;
  transform: translateX(50%);
  background: white;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #188ffe61;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-badge.live {
  font-weight: 500;
}

.hero-badge.live i {
  color: #00c950;
  font-size: 12px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-icon-item {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.hero-icon-item:hover {
  transform: translateY(-5px);
}

.hero-icon-item i {
  font-size: 24px;
  color: #188ffe;
}

.hero-stats-bottom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  width: calc(100% - 40px);
  max-width: 630px;
}

.stat-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.571);
  /* background: #f1f5ff; */
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stat-box .stat-label {
  display: block;
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-box .stat-value-home {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0084ff;
}

/* Responsive cho hero card */
@media (max-width: 768px) {
  .hero-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-icons {
    padding: 0 20px;
  }

  .hero-icon-item {
    width: 50px;
    height: 50px;
  }

  .hero-icon-item i {
    font-size: 20px;
  }

  .hero-stats-bottom {
    gap: 12px;
    width: calc(100% - 30px);
  }

  .stat-box {
    padding: 10px 12px;
  }

  .stat-box .stat-value {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 10px;
    padding: 6px 12px;
  }

  .hero-icon-item {
    width: 45px;
    height: 45px;
  }

  .hero-icon-item i {
    font-size: 18px;
  }

  .stat-box .stat-label {
    font-size: 9px;
  }

  .stat-box .stat-value {
    font-size: 14px;
  }
}

/* =====================================================
   BEST PROXY PROVIDERS - IMPROVED RESPONSIVE
   ===================================================== */

.best-proxy {
  overflow: visible;
  margin: 50px 0;
}

.proxy-slider-container {
  position: relative;
  padding: 0 70px;
  margin: 0 auto;
  max-width: 1440px;
}

/* ===== PROXY LIST - DESKTOP ===== */
/* =====================================================
   BEST PROXY PROVIDERS - IMPROVED RESPONSIVE
   ===================================================== */

.best-proxy {
  overflow: visible;
  margin: 50px 0;
}

.proxy-slider-container {
  position: relative;
  padding: 0 70px;
  margin: 0 auto;
  max-width: 1440px;
}

/* ===== PROXY LIST - DESKTOP ===== */
.proxy-list {
  padding: 20px 0;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.proxy-list::-webkit-scrollbar {
  display: none;
}

.proxy-list.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* ===== PROXY ITEM - BASE DESIGN ===== */
.proxy-item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 340px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    to bottom right,
    rgba(77, 154, 255, 0.05),
    rgba(120, 178, 252, 0.05)
  );
  border: 2px solid rgba(77, 154, 255, 0.15);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(77, 154, 255, 0.05);
  transition: all 0.5s ease;
  position: relative;
  height: 100%;
}

.proxy-item:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    to bottom right,
    rgba(77, 154, 255, 0.08),
    rgba(120, 178, 252, 0.08)
  );
  border-color: rgba(77, 154, 255, 0.35);
  box-shadow: 0 12px 32px rgba(77, 154, 255, 0.25);
}

.proxy-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #188ffe38, #78b2fc7d);
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.5s ease;
  z-index: 0;
}

.proxy-item:hover::before {
  opacity: 0.4;
}

.proxy-item > * {
  position: relative;
  z-index: 1;
}

/* ===== HEADER SECTION ===== */
.proxy-header {
  position: relative;
  padding: 5px;
  background: linear-gradient(
    to bottom right,
    rgba(77, 154, 255, 0.08),
    rgb(255 255 255 / 8%)
  );
  text-align: center;
  border-radius: 15px 15px 0 0;
}

.proxy-rank-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 12px;
  padding: 15px 0 20px;
  position: absolute;
  left: 28px;
}

.proxy-rank {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  border-radius: 14px;
  background: linear-gradient(135deg, #8b5cf6, #188ffe);
  box-shadow: 0 8px 20px rgba(77, 154, 255, 0.4);
  transition: transform 0.6s ease;
}

.proxy-item:hover .proxy-rank {
  transform: rotate(8deg) scale(1.1);
}

.proxy-rank-star {
  color: #fbbf24;
  font-size: 24px;
  opacity: 0;
  transition: all 0.7s ease;
  position: absolute;
  right: 20px;
  top: 20px;
}

.proxy-item:hover .proxy-rank-star {
  opacity: 1;
  transform: rotate(180deg);
}

.proxy-logo-center {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.proxy-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}

/* .proxy-item:hover .proxy-logo {
  transform: rotate(8deg) scale(1.05);
} */

.proxy-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== BODY SECTION ===== */
.proxy-body {
  padding: 0 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.proxy-title h3 {
  font-size: 22px;
  color: #0a0a0a;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.proxy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.badge {
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-best {
  background: #188ffe;
  color: white;
}

.badge-flexible {
  background: #8b5cf6;
  color: white;
}

.proxy-rating-box {
  border-radius: 12px;
  padding: 5px 12px;
}

.proxy-rating-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-score {
  font-size: 22px;
  font-weight: 700;
  color: #0a0a0a;
}

.rating-text {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

.proxy-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: auto;
  padding: 0 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #4a4a4a;
  background-color: #fcfdfe;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border: 1px solid #188ffea3;
  background-color: #f0f8ff;
}

.feature-item i {
  color: #188ffe;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== FOOTER SECTION ===== */
.proxy-footer {
  padding: 0 24px 24px;
  margin-top: auto;
}

.proxy-price-box {
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(
    to bottom right,
    rgba(77, 154, 255, 0.08),
    rgba(168, 85, 247, 0.08)
  );
  border: 2px solid rgba(77, 154, 255, 0.2);
  box-shadow: 0 4px 12px rgba(77, 154, 255, 0.08);
  margin-bottom: 16px;
}

.price-label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-value {
  font-size: 22px;
  font-weight: 700;
  color: #d40924;
}

.price-period {
  font-size: 12px;
  color: #9ca3af;
}

.btn-visit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(to right, #188ffe, #78b2fc);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(77, 154, 255, 0.3);
  outline: none;
  text-decoration: none;
}

.btn-visit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 154, 255, 0.4);
}

.btn-visit i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-visit:hover i {
  transform: translateX(4px);
}

.verified-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #00c950;
  font-weight: 500;
  margin-top: 12px;
}

.verified-badge i {
  font-size: 15px;
}

/* ===== NAVIGATION BUTTONS ===== */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover:not(:disabled) {
  background: #0e88f9;
  color: white;
  border-color: #188ffe;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(77, 154, 255, 0.3);
}

.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

/* ===== SLIDER DOTS ===== */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  width: 32px;
  border-radius: 6px;
  background: #188ffe;
}

.slider-dot:hover:not(.active) {
  background: #9ca3af;
}

/* ===== RANK COLORS ===== */
.proxy-item[data-index="1"] .proxy-rank {
  background: linear-gradient(135deg, #ff9b00, #ffc900);
  box-shadow: 0 5px 10px rgba(255, 201, 0, 0.6);
}

.proxy-item[data-index="2"] .proxy-rank {
  background: linear-gradient(135deg, #96a78d, #d9e9cf);
  box-shadow: 0 5px 10px rgba(182, 206, 180, 0.6);
}

.proxy-item[data-index="3"] .proxy-rank {
  background: linear-gradient(135deg, #ff7d29, #ffbf78);
  box-shadow: 0 5px 10px rgba(255, 125, 41, 0.6);
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* ===== TABLET LARGE (1024px - 1199px) ===== */
@media (max-width: 1024px) {
  .proxy-slider-container {
    padding: 0 60px;
  }

  .proxy-item {
    flex: 0 0 calc(50% - 12px);
    min-width: 420px;
  }

  .proxy-list {
    gap: 20px;
  }
}

/* ===== TABLET (481px - 1024px) - 2 boxes ===== */
@media (max-width: 1024px) and (min-width: 481px) {
  .proxy-slider-container {
    padding: 0 55px;
  }

  .proxy-list {
    gap: 20px;
  }

  .proxy-item {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .slider-nav {
    width: 46px;
    height: 46px;
  }

  .proxy-title h3 {
    font-size: 20px;
  }

  .rating-score {
    font-size: 28px;
  }

  .feature-item {
    font-size: 13px;
    padding: 8px 14px;
  }

  .price-value {
    font-size: 24px;
  }

  .btn-visit {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ===== MOBILE (max 480px) - 1 box ===== */
@media (max-width: 480px) {
  .proxy-slider-container {
    padding: 0 45px;
  }

  .proxy-list {
    gap: 0;
    padding: 20px 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .proxy-list::-webkit-scrollbar {
    display: none;
  }

  .proxy-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    margin: 0 10px;
    scroll-snap-align: center;
  }

  .slider-nav {
    width: 44px;
    height: 44px;
  }

  .slider-nav i {
    font-size: 16px;
  }

  .proxy-title h3 {
    font-size: 20px;
  }

  .rating-score {
    font-size: 28px;
  }

  .feature-item {
    font-size: 13px;
    padding: 8px 14px;
  }

  .price-value {
    font-size: 24px;
  }

  .btn-visit {
    padding: 12px 24px;
    font-size: 14px;
  }

  .proxy-rank {
    width: 50px;
    height: 50px;
  }
}

/* ===== MOBILE SMALL (max 380px) ===== */
@media (max-width: 380px) {
  .proxy-slider-container {
    padding: 0 42px;
  }

  .proxy-list {
    padding: 20px 5px;
  }

  .proxy-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }

  .slider-nav.prev {
    left: 5px;
  }

  .slider-nav.next {
    right: 5px;
  }

  .slider-nav i {
    font-size: 14px;
  }

  .slider-dots {
    gap: 6px;
    margin-top: 20px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .slider-dot.active {
    width: 24px;
  }

  .proxy-title h3 {
    font-size: 18px;
  }

  .badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .rating-score {
    font-size: 24px;
  }

  .feature-item {
    font-size: 12px;
    padding: 8px 12px;
  }

  .price-value {
    font-size: 22px;
  }

  .btn-visit {
    padding: 11px 20px;
    font-size: 13px;
  }
}

/* ===== EXTRA SMALL (max 360px) ===== */
@media (max-width: 360px) {
  .proxy-slider-container {
    padding: 0 40px;
  }

  .proxy-list {
    padding: 20px 5px;
  }

  .proxy-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
  }

  .slider-nav.prev {
    left: 5px;
  }

  .slider-nav.next {
    right: 5px;
  }

  .proxy-title h3 {
    font-size: 16px;
  }

  .price-value {
    font-size: 20px;
  }
}

/* DIRECTORY SECTION */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.directory-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.directory-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #188ffe, #3285d1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.directory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(68, 157, 240, 0.15);
  border-color: #188ffe68;
}

.directory-card:hover::before {
  transform: scaleX(1);
}

.directory-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ebf5ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #188ffe;
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform 0.8s ease;
}

.directory-card:hover .directory-icon {
  transform: rotate(8deg) scale(1.05);
  transition: all 1s ease;
}

.directory-card h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 700;
}

.directory-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.directory-list {
  list-style: none;
  margin-bottom: 20px;
  margin-left: 0;
}

.directory-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 8px;
}

.directory-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #188ffe;
  border-radius: 50%;
}

.directory-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tag {
  background: #f3f4f6;
  color: #188ffe;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.btn-load {
  width: 100%;
  background: #188ffe;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load i {
  margin-left: 3px;
}

.btn-load:hover {
  background: #0e88f9;
  transform: translateY(-2px);
}

/* PARTNERS SECTION */
.partners {
  padding-bottom: 50px;
  background: white;
}

.testimonials-slider {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 23px;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 28px;
  will-change: transform;
}

/* Desktop: mỗi slide chiếm 50% - gap/2 */
.slide {
  min-width: calc(50% - 14px);
  width: calc(50% - 14px);
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.testimonial-card:hover {
  border-color: #188ffe62;
  box-shadow: 0 8px 24px rgba(68, 157, 240, 0.12);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #188ffe, #3285d1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 13px;
  color: #9ca3af;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #e5e7eb;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: #0e88f9;
  border-color: #188ffe;
  color: white;
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #188ffe;
  width: 28px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  /* ... các style khác (ví dụ: hero, v.v.) ... */

  /* Thêm hoặc Sửa: Đảm bảo mỗi slide chiếm 100% khi cuộn */
  .slider-track {
    display: flex; /* Đã có, chỉ kiểm tra */
    /* width: auto; => không nên set cứng */
    gap: 0;
  }

  .slide {
    min-width: 100%; /* Rất quan trọng: Mỗi slide chiếm 100% */
  }

  /* Đảm bảo container của slider không bị tràn */
  .slider-wrapper {
    overflow: hidden;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding-right: 0;
    text-align: center;
    order: 1;
  }

  .hero-right {
    order: 2;
    margin-bottom: 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proxy-info {
    justify-content: center;
  }

  .proxy-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 10px;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
    margin-bottom: 30px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-card {
    padding: 24px;
  }

  .card-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 12px 8px;
  }

  .stat-value {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .proxy-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-tag {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-stat {
    font-size: 12px;
  }

  .card-stats {
    gap: 8px;
  }

  .stat-value {
    font-size: 18px;
  }

  .feature-badge {
    font-size: 11px;
    padding: 4px 8px;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   GUIDES SECTION - SLIDER VERSION (FIXED)
   ===================================================== */

.guides {
  padding-bottom: 50px;
  overflow: visible;
}

/* Guides Slider Container */
.guides-slider-container {
  position: relative;
  padding: 0 70px;
  margin-bottom: 20px;
  overflow: visible;
}

.guides-slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0; /* Extra padding for hover effect */
}

.guides-slider-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Desktop: 3 slides visible */
.guides-slide {
  flex: 0 0 calc((100% - 56px) / 3); /* (100% - total gap) / slides */
  min-width: 0;
  box-sizing: border-box;
}

/* Guide Card */
.guide-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
}

.guide-card:hover {
  transform: translateY(-8px);
  border: 2px solid #188ffe6d;
  box-shadow: 0 12px 32px rgba(68, 157, 240, 0.15);
}

/* Featured Badge */
.guide-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  animation: pulse-glow-gold 2s ease-in-out infinite;
}

@keyframes pulse-glow-gold {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.6);
  }
}

.guide-featured-badge i {
  font-size: 10px;
}

/* Guide Image */
.guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Guide Content */
.guide-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.guide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}

.guide-tag {
  background: #ebf5ff;
  color: #188ffe;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.guide-time {
  color: #9ca3af;
  font-size: 13px;
  white-space: nowrap;
}

.guide-card h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
  min-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Guide Footer */
.guide-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.guide-link {
  color: #188ffe;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
  pointer-events: none;
}

.guide-card:hover .guide-link {
  gap: 10px;
}

.guide-link i {
  transition: transform 0.3s ease;
}

.guide-card:hover .guide-link i {
  transform: translateX(3px);
}

.guide-views {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 500;
}

.guide-views i {
  font-size: 14px;
}

/* Navigation Buttons */
.guides-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.guides-slider-nav:hover:not(:disabled) {
  background: #0e88f9;
  color: white;
  border-color: #188ffe;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(68, 157, 240, 0.3);
}

.guides-slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.guides-slider-nav.prev {
  left: 0;
}

.guides-slider-nav.next {
  right: 0;
}

/* Slider Dots */
.guides-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px;
}

.guides-slider-dots .slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.guides-slider-dots .slider-dot.active {
  width: 32px;
  border-radius: 6px;
  background: #188ffe;
}

.guides-slider-dots .slider-dot:hover:not(.active) {
  background: #9ca3af;
}

/* ===================================================== 
   RESPONSIVE - GUIDES SLIDER
   ===================================================== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .guides-slide {
    flex: 0 0 calc((100% - 56px) / 3);
  }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
  .guides-slider-container {
    padding: 0 65px;
  }

  .guides-slider-track {
    gap: 24px;
  }

  .guides-slide {
    flex: 0 0 calc((100% - 48px) / 3);
  }
}

/* Tablet Large (768px - 1023px) - 2 slides */
@media (max-width: 1023px) {
  .guides-slider-container {
    padding: 0 60px;
  }

  .guides-slider-track {
    gap: 20px;
  }

  .guides-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .guides-slider-nav {
    width: 48px;
    height: 48px;
  }

  .guide-image {
    height: 180px;
  }

  .guide-card h3 {
    font-size: 17px;
    min-height: 45px;
  }

  .guide-card p {
    font-size: 13px;
  }
}

/* Tablet Medium (640px - 767px) - 2 slides */
@media (max-width: 767px) {
  .guides-slider-container {
    padding: 0 55px;
  }

  .guides-slider-track {
    gap: 16px;
  }

  .guides-slide {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .guides-slider-nav {
    width: 44px;
    height: 44px;
  }

  .guide-image {
    height: 170px;
  }

  .guide-content {
    padding: 20px;
  }

  .guide-card h3 {
    font-size: 16px;
    min-height: 42px;
  }

  .guide-card p {
    font-size: 13px;
  }

  .guide-footer {
    padding-top: 10px;
  }
}

/* Mobile Large (481px - 639px) - 1 slide */
@media (max-width: 639px) {
  .guides-slider-container {
    padding: 0 50px;
  }

  .guides-slider-track {
    gap: 0;
  }

  .guides-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .guide-image {
    height: 200px;
  }

  .guide-card h3 {
    font-size: 18px;
    min-height: auto;
  }

  .guide-card p {
    font-size: 14px;
  }
}

/* Mobile (max 480px) - 1 slide */
@media (max-width: 480px) {
  .guides-slider-container {
    padding: 0 45px;
  }

  .guides-slider-wrapper {
    padding: 15px 0;
  }

  .guides-slide {
    flex: 0 0 100%;
  }

  .guide-image {
    height: 180px;
  }

  .guide-content {
    padding: 18px;
  }

  .guide-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .guide-card p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .guide-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .guide-views {
    font-size: 12px;
  }

  .guides-slider-nav {
    width: 42px;
    height: 42px;
  }

  .guides-slider-nav.prev {
    left: 2px;
  }

  .guides-slider-nav.next {
    right: 2px;
  }

  .guides-slider-nav i {
    font-size: 14px;
  }

  .guides-slider-dots .slider-dot {
    width: 8px;
    height: 8px;
  }

  .guides-slider-dots .slider-dot.active {
    width: 24px;
  }

  .guide-featured-badge {
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    font-size: 10px;
  }
}

/* Mobile Small (max 380px) */
@media (max-width: 380px) {
  .guides-slider-container {
    padding: 0 42px;
  }

  .guide-image {
    height: 160px;
  }

  .guide-content {
    padding: 16px;
  }

  .guide-card h3 {
    font-size: 16px;
  }

  .guide-card p {
    font-size: 13px;
  }

  .guides-slider-nav {
    width: 38px;
    height: 38px;
  }

  .guides-slider-nav i {
    font-size: 13px;
  }
}

/* Mobile Extra Small (max 360px) */
@media (max-width: 360px) {
  .guides-slider-container {
    padding: 0 40px;
  }

  .guide-image {
    height: 150px;
  }

  .guide-content {
    padding: 14px;
  }

  .guide-card h3 {
    font-size: 15px;
  }

  .guide-card p {
    font-size: 12px;
  }

  .guides-slider-nav {
    width: 36px;
    height: 36px;
  }

  .guides-slider-nav.prev {
    left: 0;
  }

  .guides-slider-nav.next {
    right: 0;
  }
}

/* ============================================
   FAQ SECTION - HOME PAGE (4/6 LAYOUT)
   ============================================ */

.faqs-section {
  padding-bottom: 50px;
  background: #ffffff;
}

.faq-section-wrapper {
  display: grid;
  grid-template-columns: 3fr 7fr; /* Thay vì 30% 70% */
  gap: 40px; /* Thêm gap thoải mái */
  align-items: start;
}

/* Left Section - Header */
.faq-section-left {
  position: sticky;
  top: 100px;
}

.faq-section-left .section-tag {
  display: inline-block;
  background: #ebf5ff;
  color: #188ffe;
  padding: 4px 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid #188ffe7b;
}

.faq-section-left .section-tag i {
  margin-right: 6px;
}

.faq-section-left h2 {
  font-size: 40px;
  color: #0a0a0a;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.faq-section-left h2 span {
  color: #188ffe;
}

.faq-section-left p {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Right Section - FAQ List */
.faq-section-right {
  width: 100%;
}

/* FAQ List */
.oxyl-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ Item */
.oxyl-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.oxyl-faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* FAQ Question (Header) */
.oxyl-faq-question {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s;
  position: relative;
  margin: 0;
}

.oxyl-faq-question:hover {
  background: #f8fafc;
}

.oxyl-faq-item.active_faq .oxyl-faq-question {
  color: #188ffe;
  background: #f0f9ff;
}

/* Toggle Icon */
.toggle-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 6px;
  transition: all 0.3s;
}

.toggle-icon i {
  font-size: 14px;
  color: #64748b;
  transition: transform 0.3s;
}

.oxyl-faq-item.active_faq .toggle-icon {
  background: linear-gradient(145deg, #188ffe, #68b5f5);
}

.oxyl-faq-item.active_faq .toggle-icon i {
  color: white;
  transform: rotate(180deg);
}

/* FAQ Answer Container */
.oxyl-faq-answer-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.oxyl-faq-item.active_faq .oxyl-faq-answer-container {
  max-height: 2000px;
}

/* FAQ Answer Content */
.oxyl-faq-answer-content {
  padding: 0 24px 20px;
}

.oxyl-faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
  white-space: pre-line; /* Giữ nguyên xuống dòng */
}

.oxyl-faq-answer {
  line-height: 15px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .faq-section-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-section-left {
    position: static;
    text-align: center;
  }

  .faq-section-left h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .faqs-section {
    padding: 60px 0;
  }

  .faq-section-wrapper {
    gap: 30px;
  }

  .faq-section-left h2 {
    font-size: 32px;
  }

  .faq-section-left p {
    font-size: 15px;
  }

  .oxyl-faq-question {
    font-size: 16px;
    padding: 16px 20px;
  }

  .oxyl-faq-answer-content {
    padding: 0 20px 16px;
  }

  .oxyl-faq-answer {
    font-size: 14px;
  }

  .toggle-icon {
    width: 24px;
    height: 24px;
  }

  .toggle-icon i {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .faqs-section {
    padding: 50px 0;
  }

  .faq-section-left h2 {
    font-size: 28px;
  }

  .faq-section-left p {
    font-size: 14px;
  }

  .oxyl-faq-question {
    font-size: 15px;
    padding: 14px 16px;
    gap: 12px;
  }

  .oxyl-faq-answer-content {
    padding: 0 16px 14px;
  }

  .oxyl-faq-answer {
    font-size: 13px;
  }
}

section.directory {
  margin: 50px 0;
}

/* Thêm vào phần style trong file about-section.php */
.btn-view-all-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: white;
  color: #188ffe;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-view-all-about:hover {
  transform: translateY(-2px);
  animation: pulseShadow 1.5s ease-in-out infinite;
}

/* Animation nháy nháy cho box shadow */
@keyframes pulseShadow {
  0% {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 8px 35px rgba(255, 255, 255, 0.8),
      0 0 25px rgba(240, 255, 25, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  }
}

/* Nếu muốn hiệu ứng nháy nhanh hơn, đổi 1.5s thành 1s */
/* Nếu muốn hiệu ứng chậm hơn, đổi 1.5s thành 2s */

.view-all-about {
  margin-bottom: 20px;
}

i.fa-solid.fa-arrow-up-right-from-square {
  margin-left: 10px;
}
