:root {
  --ldp-color-brand: #ff6d4d;
  --ldp-color-primary: #0e48cc;
  --ldp-color-primary-dark: #031b4b;
  --ldp-color-secondary: #125ce0;
  --ldp-color-text: #121826;
  --ldp-color-text-light: #5b5b5b;
  --ldp-color-text-muted: #969696;
  --ldp-color-bg-light: #f7f7f7;
  --ldp-color-white: #ffffff;
  --ldp-color-border: #e5e7e8;
  --ldp-font-primary: 'Be Vietnam Pro' , 'SF Pro Display' , sans-serif;
  --ldp-shadow-box: 0 0 20px rgba(0, 0, 0, 0.1);
  --ldp-shadow-light: 0 0 15px rgba(0, 0, 0, 0.1); }

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

.ldp-etl-page {
  font-size: 16px;
  line-height: 1.4;
  color: var(--ldp-color-text);
  background: var(--ldp-color-white); }

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

.ldp-hero-section .ldp-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

/*
   ========================================
   HEADER
   ========================================
*/
.ldp-header {
  background: linear-gradient(to bottom, var(--ldp-color-primary-dark) 9.333%, var(--ldp-color-secondary) 129%);
  position: sticky;
  top: 0;
  z-index: 1000; }

.ldp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 20px 0; }

.ldp-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); }

.ldp-social-icons {
  display: flex;
  align-items: center;
  gap: 11px; }

.ldp-social-icons a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ldp-color-white);
  transition: opacity 0.2s;
  text-decoration: none; }

.ldp-social-icons a:hover {
  opacity: 0.8; }

.ldp-language {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  backdrop-filter: blur(5px);
  color: var(--ldp-color-white);
  font-weight: 500;
  cursor: pointer; }

/* Navigation */
.ldp-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 6px 0;
  overflow-x: auto; }

.ldp-nav::-webkit-scrollbar {
  display: none; }

.ldp-nav-item {
  padding: 10px;
  color: var(--ldp-color-white);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  position: relative; }
  .ldp-nav-item:hover, .ldp-nav-item:focus {
    color: var(--ldp-color-white); }

.ldp-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  background: linear-gradient(90deg, #ff6a00, #fbff00);
  opacity: 0;
  transition: opacity 0.2s; }

.ldp-nav-item:hover::after,
.ldp-nav-item.active::after {
  opacity: 1; }

/*
   ========================================
   HERO BANNER SECTION
   ========================================
*/
.ldp-hero-section {
  background: var(--ldp-color-bg-light);
  /*
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  position: relative;
  */ }

.ldp-hero-image {
  position: relative;
  flex: 1;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

.ldp-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block; }

.ldp-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 60px; }

.ldp-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #4f4f4f;
  margin-bottom: 20px; }

.ldp-hero-desc {
  font-size: 16px;
  color: var(--ldp-color-text-light);
  line-height: 1.4; }

/*
   ========================================
   PRODUCT SECTIONS
   ========================================
*/
.ldp-product-section {
  padding: 35px 0; }

.ldp-section-header {
  text-align: center;
  margin-bottom: 16px; }

.ldp-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--ldp-color-primary);
  margin-bottom: 16px; }

/* Tabs */
.ldp-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap; }

.ldp-tab {
  padding: 10px 32px;
  font-size: 16px;
  color: var(--ldp-color-text-muted);
  border-bottom: 1px solid #bfbfbf;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  outline: none !important; }

.ldp-tab.active {
  color: var(--ldp-color-text);
  border-bottom: 2px solid var(--ldp-color-primary); }

.ldp-tab:hover {
  color: var(--ldp-color-text); }

/* Product Slider */
.ldp-products-slider {
  position: relative;
  padding: 0 50px; }

.ldp-product-card {
  background: var(--ldp-color-white);
  border: 1px solid var(--ldp-color-border);
  overflow: hidden;
  width: 100%;
  flex-shrink: 0; }

.ldp-product-img {
  width: 100%;
  height: 227px;
  overflow: hidden; }

.ldp-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s; }

.ldp-product-card:hover .ldp-product-img img {
  transform: scale(1.05); }

.ldp-product-info {
  padding: 16px 14px;
  text-align: center; }

.ldp-product-name {
  font-size: 16px;
  color: #192c3e; }

/* Slider Navigation */
.ldp-slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none; }

.ldp-slider-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ldp-color-white);
  box-shadow: var(--ldp-shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  border: none;
  transition: all 0.2s; }

.ldp-slider-btn:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); }

.ldp-slider-btn.prev {
  transform: rotate(180deg); }

/*
   ========================================
   BROCHURE SECTION
   ========================================
*/
.ldp-brochure-section {
  background: var(--ldp-color-bg-light);
  padding: 80px 0; }
  @media (max-width: 767px) {
    .ldp-brochure-section {
      padding: 0 0 40px 0; } }

.ldp-brochure-inner {
  max-width: 998px;
  margin: 0 auto;
  text-align: center; }

.ldp-brochure-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--ldp-color-primary);
  margin-bottom: 8px; }

.ldp-brochure-desc {
  font-size: 16px;
  color: var(--ldp-color-text);
  line-height: 1.4;
  margin-bottom: 28px;
  max-width: 866px;
  margin-left: auto;
  margin-right: auto; }

.ldp-brochure-img {
  width: 100%;
  height: 286px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px; }

.ldp-brochure-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.ldp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--ldp-color-brand);
  color: var(--ldp-color-white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s; }

.ldp-btn-primary:hover {
  background: #e55a3a;
  transform: translateY(-2px);
  color: var(--ldp-color-white); }

/* ========================================
           CONTACT SECTION
           ======================================== */
.ldp-contact-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: stretch; }

.ldp-contact-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  overflow: hidden; }

.ldp-contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.ldp-contact-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(to right, transparent 0%, #ffffff 100%); }

.ldp-contact-form-wrapper {
  margin-left: auto;
  width: 50%;
  padding: 67px 120px 67px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1; }

.ldp-contact-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--ldp-color-primary);
  text-align: center;
  margin-bottom: 21px; }

.ldp-contact-form {
  width: 100%;
  max-width: 455px;
  display: flex;
  flex-direction: column;
  gap: 8px; }

.ldp-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cdcdcd;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--ldp-font-primary);
  color: var(--ldp-color-text);
  background: var(--ldp-color-white);
  outline: none;
  transition: border-color 0.2s; }

.ldp-form-input::placeholder {
  color: #6d6d6d; }

.ldp-form-input:focus {
  border-color: var(--ldp-color-primary); }

.ldp-form-textarea {
  min-height: 160px;
  resize: vertical; }

.ldp-contact-form .ldp-btn-primary {
  margin-top: 13px; }

.ldp-contact-form .ldp-btn-primary.submitting {
  opacity: 0.7;
  pointer-events: none; }

/* Success Message */
.ldp-form-success {
  text-align: center;
  padding: 40px 20px; }

.ldp-success-icon {
  font-size: 64px;
  color: #4CAF50;
  margin-bottom: 20px;
  animation: ldp-success-bounce 0.6s ease-out; }

@keyframes ldp-success-bounce {
  0% {
    transform: scale(0);
    opacity: 0; }
  50% {
    transform: scale(1.2); }
  100% {
    transform: scale(1);
    opacity: 1; } }

.ldp-success-text {
  font-size: 18px;
  color: var(--ldp-color-text);
  margin-bottom: 24px;
  line-height: 1.5; }

.ldp-btn-reset {
  background: var(--ldp-color-primary); }

.ldp-btn-reset:hover {
  background: var(--ldp-color-primary-dark); }

/*
   ========================================
   REVIEW SECTION
   ========================================
*/
.ldp-review-section {
  padding: 40px 0; }

.ldp-review-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--ldp-color-primary);
  text-align: center;
  margin-bottom: 28px; }

.ldp-review-slider {
  position: relative;
  padding: 0 50px; }

.ldp-review-card {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0; }

.ldp-review-card img {
  width: 100%;
  height: auto;
  object-fit: cover; }

/*
   ========================================
   FOOTER
   ========================================
*/
.ldp-footer {
  background: linear-gradient(to bottom, var(--ldp-color-primary-dark), var(--ldp-color-secondary));
  padding: 50px 0;
  color: var(--ldp-color-white);
  position: relative; }

.ldp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }

.ldp-footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.ldp-footer-logo {
  width: 222px;
  height: 78px; }

.ldp-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; }

.ldp-footer-company {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase; }

.ldp-footer-divider {
  width: 1px;
  height: 111px;
  background: var(--ldp-color-white);
  opacity: 0.3; }

.ldp-footer-right {
  display: flex;
  flex-direction: column;
  gap: 25px; }

.ldp-footer-social-title {
  font-size: 16px;
  font-weight: 500; }

.ldp-footer-social {
  display: flex;
  align-items: center;
  gap: 14px; }

.ldp-footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ldp-color-white);
  text-decoration: none; }

.ldp-footer-copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px; }

/*
   ========================================
   SWIPER CUSTOMIZATION
   ========================================
*/
.ldp-swiper {
  overflow: hidden; }

.ldp-swiper .swiper-slide {
  width: auto; }

/* Loading State */
.ldp-products-slider {
  position: relative;
  min-height: 300px; }

.ldp-products-slider.loading .swiper-wrapper {
  opacity: 0.4;
  pointer-events: none; }

.ldp-products-slider.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid var(--ldp-color-border);
  border-top-color: var(--ldp-color-primary);
  border-radius: 50%;
  animation: ldp-spin 0.8s linear infinite;
  z-index: 10; }

@keyframes ldp-spin {
  to {
    transform: rotate(360deg); } }

.ldp-tab {
  position: relative; }

.ldp-tab.loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border: 2px solid var(--ldp-color-border);
  border-top-color: var(--ldp-color-primary);
  border-radius: 50%;
  animation: ldp-spin 0.8s linear infinite;
  vertical-align: middle; }

/* No Products Message */
.ldp-no-products {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 300px;
  height: 200px;
  border-radius: 8px;
  color: var(--ldp-color-text-muted);
  font-size: 14px; }

/*
   ========================================
   RESPONSIVE
   ========================================
*/
@media (max-width: 1024px) {
  .ldp-hero-section {
    grid-template-columns: 1fr; }
  .ldp-hero-content {
    padding: 30px 20px; }
  .ldp-contact-bg {
    width: 100%;
    height: 300px;
    position: relative; }
  .ldp-contact-bg::after {
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0; }
  .ldp-contact-section {
    flex-direction: column; }
  .ldp-contact-form-wrapper {
    width: 100%;
    padding: 40px 20px; }
  .ldp-footer-inner {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center; }
  .ldp-footer-divider {
    width: 100px;
    height: 1px; } }

@media (max-width: 768px) {
  .ldp-header-top {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; }
  .ldp-social-icons {
    order: 3;
    width: 100%;
    justify-content: center; }
  .ldp-hero-title,
  .ldp-section-title,
  .ldp-brochure-title,
  .ldp-contact-title,
  .ldp-review-title {
    font-size: 24px; }
  .ldp-tab {
    padding: 8px 16px;
    font-size: 14px; }
  .ldp-products-slider,
  .ldp-review-slider {
    padding: 0 20px; }
  .ldp-floating-contact {
    right: 10px; } }

.footer-container {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  align-items: center;
  padding: 98px 80px 16px; }
  @media (min-width: 992px) {
    .footer-container {
      padding: 40px 20px; } }
  @media (max-width: 991px) {
    .footer-container {
      max-width: 100%;
      padding: 40px 20px; } }
  .footer-container .background-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center; }
  .footer-container .footer-content {
    position: relative;
    display: flex;
    width: 716px;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch; }
    .footer-container .footer-content .footer-main {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: space-between; }
      @media (max-width: 991px) {
        .footer-container .footer-content .footer-main {
          max-width: 100%;
          justify-content: center; } }
      .footer-container .footer-content .footer-main .company-info {
        color: #fff;
        text-transform: uppercase;
        font: 700 18px/1.6 SF Pro Display, -apple-system, Roboto, Helvetica, sans-serif; }
        .footer-container .footer-content .footer-main .company-info .company-logo {
          aspect-ratio: 2.85;
          object-fit: contain;
          object-position: center;
          width: 100%;
          max-width: 250px; }
        .footer-container .footer-content .footer-main .company-info .company-name {
          margin: 16px 0 0 0;
          font-size: inherit;
          font-weight: inherit;
          line-height: inherit;
          color: inherit;
          text-transform: inherit; }
      .footer-container .footer-content .footer-main .divider-line {
        aspect-ratio: 0.01;
        object-fit: contain;
        object-position: center;
        width: 1px;
        stroke-width: 1px;
        stroke: #fff;
        margin-top: 15px;
        flex-shrink: 0;
        background-color: #fff;
        height: auto; }
        @media (max-width: 991px) {
          .footer-container .footer-content .footer-main .divider-line {
            display: none; } }
      .footer-container .footer-content .footer-main .social-media-section {
        align-self: stretch;
        margin: auto 0; }
        .footer-container .footer-content .footer-main .social-media-section .follow-text {
          color: #fff;
          font: 500 16px SF Pro Display, -apple-system, Roboto, Helvetica, sans-serif;
          margin: 0; }
          @media (max-width: 991px) {
            .footer-container .footer-content .footer-main .social-media-section .follow-text {
              text-align: center; } }
        .footer-container .footer-content .footer-main .social-media-section .social-icons {
          display: flex;
          margin-top: 25px;
          width: 100%;
          align-items: center;
          gap: 15px;
          justify-content: start; }
          .footer-container .footer-content .footer-main .social-media-section .social-icons .social-icon {
            aspect-ratio: 1;
            object-fit: contain;
            object-position: center;
            width: 32px;
            align-self: stretch;
            flex-shrink: 0;
            margin: auto 0; }
            .footer-container .footer-content .footer-main .social-media-section .social-icons .social-icon:nth-child(3) {
              aspect-ratio: 31.72/31.72;
              width: 31px;
              fill: #fff; }
          .footer-container .footer-content .footer-main .social-media-section .social-icons .social-icon-placeholder {
            align-self: stretch;
            display: flex;
            width: 32px;
            flex-shrink: 0;
            height: 32px;
            margin: auto 0; }
    .footer-container .footer-content .copyright-text {
      color: #fff;
      align-self: center;
      margin: 62px 0 0 33px;
      font: 400 14px/1.4 SF Pro Display, -apple-system, Roboto, Helvetica, sans-serif; }
      @media (max-width: 991px) {
        .footer-container .footer-content .copyright-text {
          max-width: 100%;
          margin-top: 40px; } }
