/*import font from SVN-Apparat-Bold.ttf, SVN-Apparat-Medium.ttf, SVN-Apparat-Regular.ttf  font*/

/*Video container scroll animation*/
.video-container-gp {
  transform: translateY(100px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 100%;
  transform-origin: center center;
  will-change: transform, width;
}

.video-container-gp.scale-up {
  transform: translateY(0px);
}

/* Video Container Styles */
.video-container-gp {
  position: relative;
  width: 100%;
  padding: 30px;
}

.video-container-gp .slider {
  display: flex;
  height: 100%;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container-gp .v-slide {
  box-sizing: border-box;
  padding: 16px;
  border-radius: 24px;
  width: 100%;
  flex-shrink: 0;
}

.video-container-gp .video-wrapper {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.video-container-gp video {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

/*.video-container-gp .video-info {*/
/*    position: absolute;*/
/*    bottom: 40px;*/
/*    left: 40px;*/
/*    right: 40px;*/
/*    color: white;*/
/*    z-index: 10;*/
/*}*/

.video-container-gp .video-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-container-gp .video-subtitle {
  font-size: 20px;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-container-gp .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.video-container-gp .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #86868b;
  cursor: pointer;
  transition: all 0.3s;
}

.video-container-gp .dot.active {
  width: 40px;
  border-radius: 4px;
  background: #1d1d1f;
}

.video-container-gp .play-pause {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1d1d1f;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s;
}

.mute-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1d1d1f;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.mute-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-container-gp .play-pause:hover {
  transform: scale(1.04);
}

.video-container-gp .play-pause:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  .video-container-gp .video-title {
    font-size: 24px;
  }

  .video-container-gp .video-subtitle {
    font-size: 16px;
  }

  .video-container-gp .video-info {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}

:root {
  /* primary */
  --primary-main: #f66f1a;
  --primary-light: #ffd9c2;
  --primary-hover: #dd5f16;
  --primary-active: #993f0f;
  --primary-dark: #331405;

  /* secondary */
  --secondary-main: #20409a;
  --secondary-light: #b2c1e9;
  --secondary-hover: #1c3785;
  --secondary-active: #0f1b3d;
  --secondary-dark: #060b14;

  /* shades */
  --white: #ffffff;
  --shade-light: #f7f7f7;
  --shade-sliver: #e6e6e6;
  --shade-disable: #b0b0b0;
  --shade-darkgray: #464646;
  --shade-mute: #2b2b2b;
  --shade-outline: #121212;
  --black: #0a0a0a;

  /* shaders (opacity) */
  --shader-5: rgba(10, 10, 10, 0.05);
  --shader-10: rgba(10, 10, 10, 0.1);
  --shader-20: rgba(10, 10, 10, 0.2);
  --shader-30: rgba(10, 10, 10, 0.3);
  --shader-40: rgba(10, 10, 10, 0.4);
  --shader-50: rgba(10, 10, 10, 0.5);
  --shader-60: rgba(10, 10, 10, 0.6);
  --shader-70: rgba(10, 10, 10, 0.7);
  --shader-80: rgba(10, 10, 10, 0.8);
  --shader-90: rgba(10, 10, 10, 0.9);
  --shader-95: rgba(10, 10, 10, 0.95);

  /* spacing */
  --size-x: 0;
  --size-xs: 4px;
  --size-s: 8px;
  --size-m: 16px;
  --size-l: 24px;
  --size-xl: 32px;
  --size-xxl: 48px;

  /* containers */
  --container-xxl: 1440px;
  --container-xl: 1280px;
  --container-l: 1080px;
  --container-m: 920px;
  --container-s: 720px;
  --container-xs: 420px;

  /* breakpoints */
  --breakpoint-xxl: 1600px;
  --breakpoint-xl: 1400px;
  --breakpoint-l: 1200px;
  --breakpoint-m: 1000px;
  --breakpoint-s: 980px;
  --breakpoint-xs: 500px;
}

@font-face {
  font-family: "SVN-Apparat";
  src: url("../font/SVN-Apparat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Apparat";
  src: url("../font/SVN-Apparat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Apparat";
  src: url("../font/SVN-Apparat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Reset some default styles */
/*all head text to use SVN-Apparat font*!*/
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-family: "SVN-Apparat", sans-serif;
  box-sizing: border-box;
  line-height: 130%;
}

p,
a,
li,
ul {
  font-family: "SVN-Apparat", sans-serif;
  font-weight: normal;
  box-sizing: border-box;
  color: #2b2b2b;
  line-height: 130%;
}

@font-face {
  font-family: "Duck";
  src: url("../font/Duck.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  font-family: "Duck", serif;
  display: inline-block;
  padding-right: 0.5rem;

  padding-left: 0.5rem;
  color: #737373;
  content: "F";
}

a.list-link {
  overflow: hidden;
  color: var(--Orange-vivid, #fb7a39);
  text-overflow: ellipsis;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.pagination {
  display: flex;
  justify-content: center !important;
  list-style: none; /* remove list bullets */
  align-content: center;
  padding: 0px;
}

ul li::marker {
  content: "" !important;
}

.pagination li a {
  display: block; /* let links fill the list item */
  padding: 8px 12px;
  text-decoration: none !important;
  color: black;
  margin: 0 4px;
  border-radius: 5px; /* add rounded borders */
}

.pagination li.active a {
  display: block; /* let links fill the list item */
  padding: 8px 12px;
  text-decoration: none !important;
  border: 1px solid gray;
  color: black;
  margin: 0 4px;
  border-radius: 5px; /* add rounded borders */
}

.title-xs,
.title-s,
.title-m,
.title-l,
.title-xl,
.title-xxl {
  font-weight: 500 !important;
}

.hi-5xl {
  font-size: clamp(6.25rem, 3.1977rem + 11.6279vw, 12.5rem);
  line-height: 135%;
}

.hi-4xl,
.hi-5xl {
  line-height: 135%;
}

.hi-4xl {
  font-size: calc(35.36842px + 4.21053vw);
  line-height: 135%;
}

.hi-3xl {
  font-size: calc(19.36842px + 4.21053vw);
  line-height: 135%;
}

.hi-3xl,
.hi-xxl {
  line-height: 135%;
}

.hi-xxl {
  font-size: calc(21.68421px + 2.10526vw);
  line-height: 135%;
}

.hi-xl {
  font-size: clamp(1.5rem, 0.672rem + 2.586vw, 3rem);
  line-height: 135%;
}

.hi-l,
.hi-xl {
  line-height: 135%;
}

.hi-l {
  font-size: clamp(1rem, 0.672rem + 2.586vw, 3rem);
  line-height: 135%;
}
.hi-m {
  font-size: clamp(24px, calc(-6.857px + 2.142857vw), 48px);

  line-height: 135%;
}
.border-t {
  border-top: 1px solid #e6e6e6;
}

.slider-wrapper {
  width: 100%; /* chỉnh tuỳ ý */
  margin: auto;
  position: relative;
}

/* container */
.slider-wrapper {
  width: 100%;
  margin: 0px auto;
  font-family: sans-serif;
}

.slider-viewport {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

/* track & slides (4 ảnh xếp ngang) */
.slider-track {
  display: flex;
  width: 400%; /* 4 slides x 100% each */
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.slider-track .slide {
  flex: 0 0 25% !important; /* Each slide takes 25% of the track (100% / 4 slides) */
  width: 25% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  overflow: hidden !important;
  transition: transform 0.6s ease !important;
  position: relative !important; /* Override absolute positioning */
  padding: 0 !important; /* Remove padding */
  background: transparent !important; /* Remove background */
  left: auto !important; /* Reset positioning */
  top: auto !important; /* Reset positioning */
  opacity: 1 !important; /* Ensure visibility */
}

.slider-track .slide.current {
  transform: scale(1);
}

/* Ensure images inside slides display properly */
.slider-track .slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* thumbnails row */
.thumbnails {
  position: absolute;
  bottom: 24px;
  left: 24px;
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.thumb {
  width: 84px;
  height: 84px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  transition: transform 0.18s ease, border 0.18s ease;
}

.thumb:hover img {
  transform: scale(1.04);
}

/* selected thumb highlight + corners */
.thumb.selected img {
  overflow: hidden;
  border: 2px solid #ff6a00;
}

.thumb.selected .corner {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #ff6a00;
  pointer-events: none;
}

.thumb.selected .corner.tl {
  top: -4px;
  left: -4px;
  border-right: none;
  border-bottom: none;
}

.thumb.selected .corner.br {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
}

/* Zoom View Styles */
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.zoom-overlay.active {
  display: flex;
}

.zoom-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.zoom-overlay.active .zoom-image {
  transform: scale(1);
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.zoom-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.slider-viewport {
  cursor: zoom-in;
}

.slider-viewport:hover .slide.current {
  transform: scale(1.05);
}

/* responsive tweak */
@media (max-width: 760px) {
  .slider-wrapper {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .slider-viewport {
    aspect-ratio: 4/3; /* Better aspect ratio for mobile */
  }

  .thumbnails {
    bottom: 16px;
    left: 16px;
    gap: 8px;
  }

  .thumbnails .thumb {
    width: 64px;
    height: 64px;
  }

  .zoom-overlay .zoom-image {
    max-width: 95vw;
    max-height: 95vh;
  }

  .zoom-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

.uav-category:before {
  content: "[";
}

.uav-category:after {
  content: "]";
}

.expand-content {
  max-height: 6000px;
  overflow: hidden;
  transition: max-height 4.5s ease-in;
}

.box:not(.is-open) .expand-content {
  max-height: 0;
}

.bg-special {
  gap: 0;
  background-color: #f4f4f4;
}

.filters {
  padding: 16px 12px;
  border: 1px solid #e6e6e6;
  width: 100%;
  background: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #666;
  position: relative;
}

@media screen and (max-width: 768px) {
  .filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .filter {
    width: 100%;
  }
}

.filter {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}

.filter.active {
  background: #000;
  color: #fff;
}

.filter.active .option {
  color: #000;
}

.arrow {
  font-size: 10px;
}

/* dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0; /* vuông */
  min-width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.filter.open > div {
  display: block !important;
}

.option {
  padding: 10px;
  cursor: pointer;
}

.option:hover {
  background: #f0f0f0;
}

.timeline {
  width: 150px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.timeline-container {
  width: 100%;
}

.timeline-horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.year {
  margin: 10px 0;
  cursor: pointer;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.year.active {
  background: #ffdcd0;
  color: #000;
}

/* Responsive cho timeline trên mobile */
@media screen and (max-width: 768px) {
  .timeline-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling trên iOS */
    scrollbar-width: thin; /* Firefox */
  }

  .timeline-container::-webkit-scrollbar {
    height: 4px;
  }

  .timeline-container::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .timeline-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
  }

  .timeline-horizontal {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 20px 16px;
    width: max-content;
    min-width: 100%;
  }

  .year {
    margin: 0;
    flex-shrink: 0;
  }
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.slide {
  /*position: absolute;*/
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: start;
  justify-content: center;
  box-sizing: border-box;
  background: #fff;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
  opacity: 1;
  left: 0;
  top: 0;
}

.slide:not(.active) {
  z-index: 1;
}

.slide.active {
  z-index: 2;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(130, 130, 130, 0) 0%,
    rgb(0 0 0 / 26%) 100%
  );
}

.btn-gradient {
  position: absolute;
  top: 0;
  z-index: 0;
  border-radius: 31px;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(222, 222, 222, 0.32);
  backdrop-filter: blur(2px);
  width: 36px;
  height: 36px;
}

.solution-image {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0 !important;
  transform: translateY(0);
}

.solution-content {
  opacity: 0;
  height: 80vh;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.solution-content:not(.active) {
  pointer-events: none;
  user-select: none;
}
.solution-image.active,
.solution-content.active {
  opacity: 1 !important;
}

.solution-control {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 48px;
  display: flex;
  justify-content: space-between;
}

.solution-hero {
  height: 90vh;
  overflow: hidden;
}

.drone-image {
  transition: opacity 0.5s, transform 0.5s;
  opacity: 1;
  transform: translateY(0);
}

/* mobile drone image */

.drone-image svg {
  position: relative;
  width: 100% !important;
  height: auto !important;
  min-height: 255px !important;
  will-change: transform;
}
.solution-content.active .drone-image {
  animation: droneFloat 6s ease-in-out infinite;
}

@keyframes droneFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  15% {
    transform: translate(8px, -12px) rotate(2deg);
  }
  30% {
    transform: translate(15px, -5px) rotate(-1deg);
  }
  50% {
    transform: translate(5px, 5px) rotate(-3deg);
  }
  70% {
    transform: translate(-10px, -8px) rotate(3deg);
  }
  85% {
    transform: translate(-5px, 10px) rotate(-2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.solution-content.active .drone-image svg .rotating-gradient {
  transform-origin: 50% 50%;
  border-radius: 100%;
  animation: spinGradient 1.2s linear infinite;
  filter: blur(10px);
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(217, 217, 217, 0) 31.65300875902176deg,
    rgba(115, 115, 115, 0.71) 71.60766899585724deg,
    rgba(217, 217, 217, 0) 110.7966685295105deg,
    rgba(217, 217, 217, 0) 213.50971698760986deg,
    rgba(115, 115, 115, 0.71) 253.2220959663391deg,
    rgba(217, 217, 217, 0) 294.27369117736816deg
  );
  height: 100%;
  width: 100%;
  opacity: 1;
}

@keyframes spinGradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideUpUp {
  from {
    translate: 0 0;
    opacity: 1;
  }
  to {
    translate: 0 -100%;
    opacity: 0;
  }
}

@keyframes slideDown-1 {
  from {
    translate: 0 0;
    opacity: 1;
  }
  to {
    translate: 0 100%;
    opacity: 0;
  }
}

@keyframes slideInFromBottom {
  from {
    translate: 0 100%;
    opacity: 0;
  }
  to {
    translate: 0 0;
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  from {
    translate: 0 -100%;
    opacity: 0;
  }
  to {
    translate: 0 0;
    opacity: 1;
  }
}

.slide-up {
  animation: slideUpUp 0.5s forwards;
}

.slide-down {
  animation: slideDown-1 0.5s forwards;
}

.slide-in-from-bottom {
  animation: slideInFromBottom 0.5s forwards;
}

.slide-in-from-top {
  animation: slideInFromTop 0.5s forwards;
}

/* Reveal animation for cards */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.6s ease forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-item {
  padding: 16px;
}

.navbar {
  grid-template-areas: "left right" !important;
  height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap !important;
}

.navbar-item {
  display: flex;
  font-size: 15px;
  font-weight: 600;
}

.language-selector {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  min-width: 140px;
}

.dropdown-item {
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-item.active {
  background: #f0f0f0;
  font-weight: bold;
}

.dropdown-item:hover {
  background: #e6e6e6;
}

/* navbar visibility controls */
.navbar .mobile-trigger {
  display: none;
}

.solutions-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  box-shadow: 0 120px 120px rgba(0, 0, 0, 0.2);
  z-index: 150;
  padding: 40px 0;
}

.solutions-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 24px;
}

.solution-category {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-item {
  padding: 12px;
  border: 1px solid rgba(255, 0, 0, 0);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.solution-item:hover {
  border-radius: 12px;
  border: 1px solid #fa7e2f;
}

.solution-title {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.solution-subtitle {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* responsive: show hamburger, hide desktop nav on small screens */
@media (max-width: 980px) {
  .navbar-menu {
    justify-content: end;
  }

  .navbar .mobile-trigger {
    display: inline-flex;
  }

  .navbar .navbar-menu > .is-flex.gap-s:first-child {
    display: none;
  }
}

/* ensure mobile menu stays hidden on desktop */
@media (min-width: 981px) {
  .navbar-menu {
    height: 100%;
    justify-content: space-between;
  }

  .mobile-menu {
    display: none !important;
  }
}

.navbar-brand {
  max-width: 100px;
}

.navbar {
  display: flex !important;
}

/* Footer */
.footer-wrap {
  background: #f7f7f7;
}

.footer-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  margin: 32px 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.footer-top {
  display: flex;
  gap: 48px;
  padding: 32px;
  align-items: flex-start;
}

.footer-brand {
  width: 320px;
}

.footer-brand .muted {
  color: #666;
  margin: 8px 0 16px;
  font-size: 14px;
}

.footer-brand .contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col {
  min-width: 160px;
}

.footer-col h5 {
  margin: 0 0 12px;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: #2b2b2b;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-top: 1px solid #eee;
  color: #777;
  font-size: 13px;
}

.footer-bottom .policy {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-bottom .policy a {
  color: #777;
  text-decoration: none;
}

.footer-bottom .policy a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-brand {
    width: 100%;
  }
}

/* =====================
   Scroll reveal effects
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.reveal-x {
  transform: translateX(32px);
}

.reveal.reveal-x-left {
  transform: translateX(-32px);
}

.is-revealed {
  opacity: 1;
  transform: none;
}

/* =====================
   Flip-words effect
   ===================== */
.flip-words {
  display: inline-block;
  color: var(--primary-main);
}

.flip-words .char {
  display: inline-block;
  transform: rotateX(90deg);
  opacity: 0;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}

.flip-words .char.animate {
  animation: flipCharIn 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes flipCharIn {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

/* =====================
   Focus About (orbit)
   ===================== */
.focus-about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.focus-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.focus-item {
  cursor: pointer;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0);
  color: #0a0a0a;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.focus-item .focus-title {
  color: #1d1d1d;
  font-weight: 600;
  margin-bottom: 6px;
}

.focus-item .focus-desc {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
}

.focus-item:hover {
  background: #e4e4e4;
}

.focus-item.active {
  border-color: var(--shade-sliver);
  background: #fcfcfc;
}

.focus-item.active .focus-title {
  color: var(--primary-main);
}

.focus-visual {
  position: relative;
  height: 420px;
}

.orbit svg {
  transform: rotate(var(--marker-rotation, 0deg));
  transition: transform 0.72s ease-in-out;
}

.orbit {
  position: absolute;
  scale: 1.8;
  left: 50%;
  margin: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  transform: rotate(var(--angle, 0deg));
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(176, 176, 176, 0.6);
}

.ring-outer {
  inset: 0;
}

.ring-inner {
  inset: 60px; /* cách mép ngoài 60px */
  border-radius: 50%;
  padding: 4px; /* độ dày viền */
  background: conic-gradient(
    red,
    orange,
    yellow,
    green,
    cyan,
    blue,
    violet,
    red
  );
  animation: spin 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--primary-main);
  box-shadow: 0 0 0 4px rgba(246, 111, 26, 0.15);
}

.satellite {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #c5c5c5;
  background: #f4f4f4;
  color: #c5c5c5;
  font-weight: 100;
  transform: translate(-50%, -50%)
    rotate(calc(var(--base) + var(--angle, 0deg))) translateX(var(--r))
    scale(-1, -1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.3s ease;
  cursor: pointer;
}

.satellite.active {
  /*inner shadown*/
  border-color: #c5c5c5;
  color: var(--primary-main);
  font-weight: 200 !important;
}

.satellite.active::before {
  content: "";
  position: absolute;

  padding: 1px; /* độ dày border */
  background: conic-gradient(
    from var(--angle),
    transparent 25%,
    #f66f1a,
    transparent 50%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  inset: 0;
  border-radius: inherit;
  animation: spin-sat 1.5s linear infinite;
}

@keyframes spin-sat {
  to {
    --angle: 360deg;
  }
}

.focus-number {
  font-size: 6px;
  font-weight: 400;
  position: absolute;
  left: 50%;
  top: 50%;
  color: #2b2b2b;
  opacity: 0.3;

  transform: translate(-50%, -50%)
    rotate(calc(var(--base) + var(--angle, 0deg) + 90deg)) translateX(var(--r))
    scale(-1, -1);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 980px) {
  .focus-about {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .focus-left {
    order: 1 !important;
  }

  .focus-visual {
    order: 0;
    height: 360px;
    overflow: hidden;
  }

  .orbit {
    transform: rotate(var(--angle, 90deg));
    width: 360px;
    height: 360px;
  }

  .sp-cards {
    width: 100% !important;
  }

  #iasdasdasd {
    justify-content: end;
  }

  .section {
    padding: 0px 16px;
  }

  .sp-section {
    height: 100vh;
  }
}

/* Special Product scoped styles */
.sp-section {
  overflow: hidden;
}

.sp-hero {
  position: relative;
  height: calc(100vh);
  overflow: hidden;
  background: #0b0b0b;
}

.sp-bg,
.sp-bg-next {
  aspect-ratio: 16/9;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity, clip-path;
}

.sp-bg-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 38.13%, #000 100%), url(<path-to-image>) lightgray -86px -43.81px / 110.714% 110.26% no-repeat;*/
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.13%, #000 100%);
}

.sp-content {
  width: 600px !important;
  position: relative;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.sp-title {
  width: 600px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 8px;
}

.sp-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.sp-tag {
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  opacity: 0.9;
}

.sp-specs {
  display: flex;
  gap: 20px;
  margin: 18px 0 24px;
}

.sp-spec {
  display: grid;
  gap: 4px;
  color: #ededed;
}

.sp-spec .label {
  font-size: 12px;
  opacity: 0.8;
}

.sp-spec .value {
  font-size: 18px;
  font-weight: 700;
}

.sp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
}

/* Cards */
.sp-cards-wrap {
  position: relative;
}

.sp-cards {
  width: calc(100% - 600px);
  display: flex;
  gap: 12px;
  overflow: auto;
  scroll-behavior: smooth;
}

.sp-card {
  flex: 0 0 160px;
  /*background: #1b1b1b;*/
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-thumb {
  width: 100%;
  height: 120px !important;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 12px;

  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(222, 222, 222, 0.32);
  backdrop-filter: blur(2px);
}

.sp-card-title {
  font-size: 14px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  padding: 10px 6px;
  margin-top: 4px;
  opacity: 0.95;
}

.sp-card.active {
  outline-offset: 0;
}

.sp-card.active .sp-card-title {
  background-color: #fff;
  color: #000;
}

/* Arrows */
.sp-arrow {
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(250, 126, 47, 0.36) !important;
  backdrop-filter: blur(2px);
  color: #fff;
  border: 1px solid rgba(246, 111, 26, 0) !important;
  cursor: pointer;
  user-select: none;
}

.sp-arrow:hover {
  background: rgb(250, 97, 0) !important;
  backdrop-filter: blur(2px);
  color: #ffffff;
}

.sp-arrow.prev {
  left: 4px;
}

z .sp-arrow.next {
  right: 4px;
}

/* Background transition: split-out then slide-in */
.sp-bg.split-out {
  animation: spSplitOut 0.7s ease forwards;
}

.sp-bg-next.slide-in {
  animation: spSlideIn 0.7s ease forwards;
}

@keyframes spSplitOut {
  0% {
    transform: translateX(0);
    clip-path: inset(0% 0% 0% 0%);
    opacity: 1;
  }
  40% {
    clip-path: inset(0% 50% 0% 0%);
  }
  100% {
    transform: translateX(-8%);
    clip-path: inset(0% 50% 0% 0%);
    opacity: 0.2;
  }
}

@keyframes spSlideIn {
  0% {
    transform: translateX(12%);
    opacity: 0;
  }
  40% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .sp-hero {
    height: 100vh;
  }

  .sp-title {
    font-size: 30px;
  }

  .sp-cards {
    padding: 10px 40px;
  }

  .sp-card {
    flex-basis: 220px;
  }
}

.bg-pattern {
  background-image: url("../img/pattern.png");
  background-repeat: repeat;
  background-position: center;
}

/* Video Gallery - Wrap all video card styles in parent class */
.video-gallery .video-card {
  overflow: hidden;
  min-width: 256px;
  background-color: #fff;
}

/* Video card hover effect - ẩn/hiện title desc từ dưới lên */
.video-gallery .video-card-info {
  opacity: 0;
  transform: translateY(calc(100% - 1px));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-gallery .video-card:hover .video-card-info {
  opacity: 1;
  transform: translateY(0);
}

.logo-marquee {
  position: relative;
  min-width: calc(100% - 200px);
  overflow: hidden;
  z-index: 1;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes shimmer-spin {
  to {
    --angle: 360deg;
  }
}

.shimmer-wrapper {
  position: relative;
  display: inline-block;
  padding: 2px; /* độ dày viền shimmer */
  border-radius: 16px; /* bo góc ngoài */
  overflow: hidden;
}

.shimmer-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle),
    transparent 25%,
    #f66f1a,
    transparent 50%
  );
  animation: shimmer-spin 2.5s linear infinite;
}

.shimmer-wrapper > .bg-white {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 6px; /* bo góc trong khớp với wrapper */
}

.y-10 {
  height: 100px;
}

.y-90 {
  height: 90vh;
}

.ar-btn {
  cursor: pointer;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(149, 149, 149, 0.3);
  color: #515151;
  backdrop-filter: blur(2px);
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.ar-btn.active {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(149, 149, 149, 0.3);
  color: #f66f1a;
  backdrop-filter: blur(2px);
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.asia-dot {
  fill: #c5c5c5;
  opacity: 1;
  transition: fill 1.2s ease-in, opacity 1.2s ease-in, filter 1.2s ease-in;
}

.asia-dot.blink {
  fill: #fb7a39;
  opacity: 1;
  filter: drop-shadow(0 0 12px #fb7a39)
    drop-shadow(0 0 12px rgba(251, 122, 57, 0.44));
}

.bg-pt {
  background-color: rgb(0, 0, 0);
  opacity: 1;
  background-image: url("../img/bg-event.png");
  background-size: cover;
  background-position: center;
}

.x131231,
.x131232,
.x131233 {
  stroke-dasharray: 150;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px #fb7a39);
  animation: dashmove 4.5s linear infinite;
}

/* Lệch pha nhau */
.x131231 {
  animation-delay: 0s;
}

.x131233 {
  animation-delay: 0s;
}

.x131232 {
  animation-delay: 0s;
}

@keyframes dashmove {
  0% {
    stroke-dashoffset: 150;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -150;
    opacity: 0;
  }
}

.x131234 {
  stroke-dasharray: 150;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px #fb7a39);
  animation: dashmove1 4.5s linear infinite;
}

.x131235 {
  stroke-dasharray: 150;
  stroke-linecap: round;
  animation-delay: 1.5;
  filter: drop-shadow(0 0 4px #fb7a39);
  animation: dashmove1 2.5s linear infinite;
}

@keyframes dashmove1 {
  0% {
    stroke-dashoffset: -150;
  }
  100% {
    stroke-dashoffset: 150;
  }
}

/* CSS */
.editable {
  min-width: 200px;
  outline: none;
  cursor: text;
  position: relative;
  /* optional để text không wrap:
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    */
}

@media screen and (max-width: 768px) {
  .editable {
    min-width: 200px;
    height: 40px;
    outline: none;
    cursor: text;
    position: relative;

    /* optional để text không wrap:
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        */
  }
}

/* placeholder giả khi rỗng */
.editable.is-empty::before {
  content: attr(data-placeholder);
  color: #9e9e9e;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  transition: opacity 0.12s;
}

@media screen and (max-width: 768px) {
  .editable.is-empty::before {
    text-align: center;
    /* center text */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* khi focus mà vẫn rỗng, ta hide placeholder mượt */
.editable.is-empty:focus::before {
  opacity: 0;
}

.angular-rotate {
  animation: spin-xs 4s linear infinite;
  transform-origin: 26.2163px 24.9426px; /* đúng tâm cái SVG */
}

@keyframes spin-xs {
  100% {
    transform: rotate(360deg);
  }
}

/* phần kéo dài để cuộn */
#set-height {
  height: 200vh;
}

html,
body {
  scroll-behavior: smooth;
  overscroll-behavior: none;
  scroll-padding: 0;
  scroll-snap-type: none;
}

/* video cố định giữa màn hình */
/* Cái này để giữ video sticky trong vùng cuộn */
.video-wrapper {
  position: sticky;
  top: 20%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center; /* căn giữa ngang */
}

/* Video */
.video-wrapper video {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* debug text */
#time {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 18px;
  color: #fff;
  opacity: 0.6;
}

body {
  background: #fff !important;
  color: #000 !important;
}

.image img {
  animation: unset !important; /* sẽ = animation: none */
}

.bg-rainbow {
  background: linear-gradient(
    to bottom,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
}

.hi-intro-text {
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.12);
  color: transparent;
  font-weight: 900;
}

.text-cam {
  color: #fb7a39 !important;
}

.bg-cam {
  background-color: #fb7a39 !important;
}

.nutbam {
  cursor: pointer;
  font-size: 16px;

  font-family: SVN-Apparat, sans-serif;
}

.svg-text-cam {
  font-weight: 600;
  fill: #fb7a39;
}

.svg-text-disable {
  font-weight: 400;
  fill: #999;
}

.nutbam:hover {
  fill: #000;
}

.content-section-1 {
  cursor: pointer;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.content-section-1 .title-focus {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  margin: 0;
  transition: font-size 0.4s ease;
}

.content-section-1:not(.active):hover .title-focus {
  color: #f66f1a !important;
}

.content-section-1 .text-disable {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}

.content-section-1.active {
  padding: 12px 0px;
  opacity: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-section-1.active .title-focus {
  color: #0a0a0a;
  font-size: 20px;
  margin-bottom: 12px;
}

.content-section-1.active .text-disable {
  display: block;
  opacity: 1;
  max-height: 500px;
  flex: 1;
}

.content-section-1.slide-up .text-disable {
  animation: slideUp 0.4s ease forwards;
}

.content-section-1.slide-down .text-disable {
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideUp-2 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes slideDown-2 {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.y-overflow {
  overflow-y: hidden;
}

.columns.wrapper {
  gap: 0 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.columns.wrapper .col,
.columns.wrapper .col-2,
.columns.wrapper .col-3 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.hide-on-mobile {
  display: none;
}

/* Ghost view styles - chuyển từ inline sang CSS classes */
#ghost-bg {
  top: 0;
  width: 100vw;
  height: calc(100vw / 18 * 9);
}

#ghost-bg img {
  width: 100vw;
  height: auto;
  bottom: 0;
  z-index: 0;
}

#ghost-bg .content-wrapper {
  z-index: 3;
  left: 50%;
  top: 20vh;
  transform: translate(-50%, 0);
}

#ghost-bg .shimmer-wrapper {
  margin-left: auto;
  margin-right: auto;
}

#ghost-bg .editable {
  padding-left: 8px;
}

#ghost-bg .btn {
  text-decoration: none;
  margin-left: auto;
}

#ghost-image .spacer {
  height: calc(100vw / 18 * 9 * 0.525);
}

#ghost-image .text-overlay {
  position: absolute;
  left: 50%;
  top: 90%;
  transform: translateX(-50%);
}

#ghost-image .sticky-text {
  position: sticky;
  top: 20%;
}

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

/* Responsive cho ghost view classes */
@media (max-width: 768px) {
  #ghost-bg {
    height: calc(100vh) !important;
    min-height: 600px;
  }

  #ghost-bg img {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover;
    object-position: center;
  }

  #ghost-bg .content-wrapper {
    top: 15vh !important;
    width: 90vw;
    max-width: 400px;
    padding: 0 16px;
  }

  #ghost-bg .shimmer-wrapper {
    width: 100% !important;
    margin: 0 !important;
  }

  #ghost-bg .shimmer-wrapper .bg-white {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  #ghost-bg .editable {
    min-width: auto !important;
    width: 100% !important;
    height: 48px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    text-align: center !important;
  }

  #ghost-bg .btn {
    width: 100% !important;
    height: 48px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    justify-content: center !important;
  }

  #ghost-image .spacer {
    height: calc(100vw / 18 * 9 * 0.525);
    min-height: 200px;
    max-height: 50vh;
  }

  #ghost-image .image {
    position: relative;
    height: calc(100vw / 18 * 9 * 0.525);
    min-height: 200px;
    max-height: 50vh;
  }

  #ghost-image .image img {
    width: 100% !important;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 980px) {
  #ghost-bg {
    height: calc(100vh) !important;
    min-height: 700px;
  }

  #ghost-bg .content-wrapper {
    top: 100vh !important;
    width: 80vw;
    max-width: 500px;
  }

  #ghost-bg .shimmer-wrapper .bg-white {
    gap: 16px !important;
  }

  #ghost-bg .editable {
    flex: 1 !important;
    min-width: 200px !important;
  }

  #ghost-bg .btn {
    width: 100% !important;
    min-width: 140px !important;
  }

  #ghost-image .spacer {
    height: calc(100vw / 18 * 9 * 0.525);
    min-height: 250px;
    max-height: 60vh;
  }
}

@media (max-width: 480px) {
  #ghost-bg .content-wrapper {
    top: 40vh !important;
    width: 95vw;
    padding: 0 8px;
  }

  #ghost-bg .shimmer-wrapper .bg-white {
    padding: 12px !important;
    gap: 8px !important;
  }

  #ghost-bg .editable {
    height: 44px !important;
    padding: 10px 12px !important;
  }

  #ghost-bg .btn {
    height: 44px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
  }

  #ghost-image .spacer {
    height: calc(100vw / 18 * 9 * 0.525);
    min-height: 150px;
    max-height: 40vh;
  }
}

.bg-abcbc {
  background: linear-gradient(
    180deg,
    rgba(244, 244, 244, 0) 33.87%,
    #f4f4f4 125.91%
  );
}

.global-asia {
  top: 0;
  right: 0;
  height: 40%;
  width: 40%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .global-asia {
    height: 100%;
    width: 100%;
    z-index: 1;
  }
  .section {
    padding: 0px 0px !important;
  }
  .container-l {
    padding: 0px 16px !important;
  }
  .video-container-gp .slider {
    gap: 8px;
  }
}
.btn-cam {
  background-color: #fb7a39 !important;
  border: 1px solid #fb7a39 !important;
}
.breadcrumb {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb .breadcrumb-item {
  scroll-snap-align: start;
}
.news-carousel {
  position: relative;
}
.news-carousel .carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.news-carousel .carousel-track {
  display: flex;
  gap: 16px;
}
.news-carousel .carousel-item {
  flex: 0 0 calc(25% - 12px);
  scroll-snap-align: start;
}
@media (max-width: 1200px) {
  .news-carousel .carousel-item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .news-carousel .carousel-item {
    flex: 0 0 100%;
  }
}
.news-carousel .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  pointer-events: none;
}
.news-carousel .carousel-nav .btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(222, 222, 222, 0.32);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.news-carousel .carousel-nav .btn[disabled] {
  opacity: 0.4;
}
/* ========================
   KEYFRAMES
   ======================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInSimple {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================
   ANIMATION CLASSES
   ======================== */

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-simple {
  opacity: 0;
  animation: fadeInSimple 0.8s ease-out forwards;
}

.fade-in-scale {
  opacity: 0;
  animation: fadeInScale 0.8s ease-out forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-bottom {
  opacity: 0;
  animation: fadeInBottom 0.8s ease-out forwards;
}

/* ========================
   DELAY CLASSES
   ======================== */

.delay-1 {
  animation-delay: 0.6s;
}
.delay-2 {
  animation-delay: 0.7s;
}
.delay-3 {
  animation-delay: 0.8s;
}
.delay-4 {
  animation-delay: 0.9s;
}
.delay-5 {
  animation-delay: 1s;
}
.delay-6 {
  animation-delay: 1.1s;
}
.delay-7 {
  animation-delay: 1.2s;
}
.delay-8 {
  animation-delay: 1.3s;
}
.delay-9 {
  animation-delay: 1.4s;
}
.delay-10 {
  animation-delay: 1.5s;
}

/* ========================
   DURATION CLASSES
   ======================== */

.duration-fast {
  animation-duration: 0.4s !important;
}

.duration-normal {
  animation-duration: 0.8s !important;
}

.duration-slow {
  animation-duration: 1.2s !important;
}

/* ========================
   RESPONSIVE - Mobile
   ======================== */

@media (max-width: 768px) {
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInLeft,
@keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in,
  .fade-in-simple,
  .fade-in-scale,
  .fade-in-left,
  .fade-in-right,
  .fade-in-bottom {
    animation-duration: 0.6s !important;
  }
}

/* ========================
   UTILITY CLASSES
   ======================== */

.no-animate {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-simple,
  .fade-in-scale,
  .fade-in-left,
  .fade-in-right,
  .fade-in-bottom {
    animation: fadeInSimple 0.3s ease-out forwards !important;
  }
}
img {
  display: block !important;
}
