:root {
  --ldp-ib-color-brand: #ff6d4d;
  --ldp-ib-color-primary: #0e48cc;
  --ldp-ib-color-primary-dark: #031b4b;
  --ldp-ib-color-secondary: #125ce0;
  --ldp-ib-color-text: #121826;
  --ldp-ib-color-text-light: #5b5b5b;
  --ldp-ib-color-text-muted: #767676;
  --ldp-ib-color-bg-light: #f7f7f7;
  --ldp-ib-color-white: #ffffff;
  --ldp-ib-color-border: #e5e7e8;
  --ldp-ib-color-border-light: #d5d5d5;
  --ldp-ib-font-primary: 'Be Vietnam Pro' , 'SF Pro Display' , sans-serif;
  --ldp-ib-shadow-box: 0 0 20px rgba(0, 0, 0, 0.1);
  --ldp-ib-shadow-light: 0 0 15px rgba(0, 0, 0, 0.1);
  --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-ib-page {
  font-family: var(--ldp-ib-font-primary);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ldp-ib-color-text);
  background: var(--ldp-ib-color-white); }

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

/*
   ========================================
   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;
  margin-bottom: 20px; }

.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: none;
  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-logo {
  width: auto;
  height: auto; }

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

.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; }

/*
   ========================================
   BREADCRUMB
   ========================================
*/
.ldp-ib-breadcrumb {
  padding: 20px 0;
  background: var(--ldp-ib-color-white); }

.ldp-ib-breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0; }

.ldp-ib-breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #002d18; }

.ldp-ib-breadcrumb-item a {
  color: #002d18;
  text-decoration: none; }

.ldp-ib-breadcrumb-item a:hover {
  color: var(--ldp-ib-color-primary); }

.ldp-ib-breadcrumb-item.active {
  color: var(--ldp-ib-color-brand);
  max-width: 274px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.ldp-ib-breadcrumb-separator {
  margin: 0 4px;
  color: #002d18; }

/*
   ========================================
   HERO SECTION
   ========================================
*/
.ldp-ib-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative; }

.ldp-ib-hero-image {
  max-width: 650px;
  width: 100%; }

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

/*
   ========================================
   INFO CARDS
   ========================================
*/
.ldp-ib-info-cards {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10; }

.ldp-ib-info-card {
  background: var(--ldp-ib-color-white);
  padding: 26px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 221px;
  height: 130px;
  border-right: 1px solid #e7e7e7;
  box-shadow: var(--ldp-ib-shadow-light); }

.ldp-ib-info-card:first-child {
  border-radius: 25px 0 0 25px; }

.ldp-ib-info-card:last-child {
  border-radius: 0 25px 25px 0;
  border-right: none; }

.ldp-ib-info-card-label {
  font-size: 16px;
  color: var(--ldp-ib-color-text-muted);
  margin-bottom: 5px; }

.ldp-ib-info-card-value {
  font-size: 32px;
  font-weight: 700;
  color: #4f4f4f; }

.ldp-ib-info-card-flags {
  display: flex;
  align-items: center;
  gap: 5px; }

.ldp-ib-info-card-flags img {
  width: 24px;
  height: 24px;
  border-radius: 50%; }

/*
   ========================================
   DESCRIPTION SECTION
   ========================================
*/
.ldp-ib-description {
  text-align: center;
  padding: 50px 20px;
  max-width: 993px;
  margin: 0 auto; }

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

.ldp-ib-description-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ldp-ib-color-text-light); }

/*
   ========================================
   GALLERY SECTION
   ========================================
*/
.ldp-ib-gallery {
  max-width: 997px;
  margin: 0 auto 40px;
  padding: 0 20px; }

.ldp-ib-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px; }

/*
   ========================================
   RESOURCES SECTION
   ========================================
*/
.ldp-ib-resources {
  max-width: 957px;
  margin: 0 auto 0px;
  padding: 30px 19px;
  background: var(--ldp-ib-color-white);
  border: 1px solid var(--ldp-ib-color-border-light);
  border-radius: 25px; }
  @media (max-width: 767px) {
    .ldp-ib-resources {
      margin: 0px 20px; } }

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

.ldp-ib-resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center; }

.ldp-ib-resource-item {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center; }
  .ldp-ib-resource-item a {
    display: flex;
    flex-direction: column;
    align-items: center; }

.ldp-ib-resource-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center; }

.ldp-ib-resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; }

.ldp-ib-resource-name {
  font-size: 14px;
  color: var(--ldp-ib-color-text); }

/*
   ========================================
   DOWNLOAD SECTION
   ========================================
*/
.ldp-ib-download {
  background: var(--ldp-ib-color-bg-light);
  padding: 82px 20px;
  text-align: center; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ldp-ib-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; }

/*
   ========================================
   FLOATING CONTACT BUTTONS
   ========================================
*/
.ldp-ib-floating-contact {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-end; }

.ldp-ib-floating-menu {
  background: var(--ldp-ib-color-white);
  border-radius: 8px;
  box-shadow: var(--ldp-ib-shadow-box);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s; }

.ldp-ib-floating-menu.show {
  opacity: 1;
  visibility: visible; }

.ldp-ib-floating-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
  color: var(--ldp-ib-color-text);
  text-decoration: none;
  transition: background 0.2s; }

.ldp-ib-floating-menu-item:last-child {
  border-bottom: none; }

.ldp-ib-floating-menu-item:hover {
  background: #f5f5f5; }

.ldp-ib-floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--ldp-ib-shadow-box);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s; }

.ldp-ib-floating-btn:hover {
  transform: scale(1.1); }

/*
   ========================================
   RESPONSIVE
   ========================================
*/
@media (max-width: 1024px) {
  .ldp-ib-info-cards {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: -40px; }
  .ldp-ib-info-card {
    flex: 1 1 45%;
    min-width: 180px;
    border-radius: 15px !important;
    border-right: none; }
  .ldp-ib-footer-inner {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center; }
  .ldp-ib-footer-divider {
    width: 100px;
    height: 1px; } }

@media (max-width: 768px) {
  .ldp-ib-header-top {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; }
  .ldp-ib-social-icons {
    order: 3;
    width: 100%;
    justify-content: center; }
  .ldp-ib-hero {
    min-height: 350px; }
  .ldp-ib-description-title,
  .ldp-ib-resources-title,
  .ldp-ib-download-title {
    font-size: 24px; }
  .ldp-ib-info-card {
    flex: 1 1 100%; }
  .ldp-ib-info-card-value {
    font-size: 24px; }
  .ldp-ib-resources-grid {
    gap: 20px; }
  .ldp-ib-resource-item {
    width: calc(50% - 10px); }
  .ldp-ib-floating-contact {
    right: 10px; } }
