.nav-menu {
  background-color: rgba(255, 248, 246, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
}
.nav-menu__logo {
  display: inline-flex;
  text-decoration: none;
}
.nav-menu__logo-img {
  width: 34.28px;
  height: 40px;
  aspect-ratio: 34.28/40;
  object-fit: contain;
  border-radius: 0;
  display: block;
}
.nav-menu__brand {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -1px;
  color: #B70100;
  text-decoration: none;
  white-space: nowrap;
}
.nav-menu__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu__link {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #5E5E5E !important;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #B70100;
  transition: width 0.3s ease;
}
.nav-menu__link:hover {
  color: #B70100 !important;
}
.nav-menu__link:hover::after {
  width: 100%;
}
.nav-menu__link.is-active {
  color: #B70100 !important;
  font-weight: 500;
}
.nav-menu__link.is-active::after {
  width: 100%;
}
.nav-menu__lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-menu__lang-link {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #5E5E5E !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-menu__lang-link.is-active, .nav-menu__lang-link:hover {
  color: #B70100 !important;
}
.nav-menu__lang-sep {
  color: #5E5E5E !important;
  font-size: 14px;
}
.nav-menu .navbar-toggler {
  box-shadow: none;
  outline: none;
}
.nav-menu .navbar-toggler:focus {
  box-shadow: none;
}
.nav-menu .collapse {
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}
.nav-menu .collapse .nav-menu__link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}
.nav-menu .collapse .nav-menu__link:last-child {
  border-bottom: none;
}
.nav-menu .collapse .nav-menu__link::after {
  display: none;
}
@media (max-width: 767.98px) {
  .nav-menu .nav-menu__lang {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .nav-menu .container-fluid {
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .nav-menu .container-fluid {
    gap: 0;
  }
}

.hero-banner {
  min-height: 680px;
  background-color: #FFF8F6;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(183, 1, 0, 0.03) 0%, rgba(183, 1, 0, 0) 70%);
  pointer-events: none;
}
.hero-banner .container {
  position: relative;
  z-index: 1;
}
.hero-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFF0EE;
  border: 1px solid #E9BCB5;
  border-radius: 12px;
  padding: 4px 12px;
  color: #B70100 !important;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 32px;
}
.hero-banner__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #B70100;
  flex-shrink: 0;
}
.hero-banner__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.28px;
  color: #2A1613 !important;
  margin-bottom: 32px;
}
.hero-banner__title em {
  font-style: italic;
  font-weight: 700;
  color: #B70100 !important;
}
.hero-banner__desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #5E5E5E !important;
  max-width: 576px;
  margin-bottom: 32px;
}
.hero-banner__actions {
  padding-top: 16px;
}
.hero-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}
.hero-banner__btn--primary {
  background-color: #B70100;
  color: #FFFFFF !important;
  padding-top: 17px;
  padding-bottom: 17px;
}
.hero-banner__btn--primary:hover {
  background-color: rgba(150, 0, 0, 0.9);
  color: #FFFFFF !important;
}
.hero-banner__btn--primary:hover .hero-banner__btn-icon {
  transform: translateX(4px);
}
.hero-banner__btn--outline {
  background-color: #FFFFFF;
  color: #333333 !important;
  border: 1px solid #333333;
}
.hero-banner__btn--outline:hover {
  background-color: #B70100;
  border-color: #B70100;
  color: #FFFFFF !important;
}
.hero-banner__btn--outline:hover .hero-banner__btn-icon {
  transform: translateX(4px);
}
.hero-banner__btn-icon {
  transition: transform 0.3s ease;
}
.hero-banner__media {
  position: relative;
  padding-bottom: 24px;
  padding-left: 24px;
}
.hero-banner__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero-banner__stats {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 200px;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.hero-banner__stats-number {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: #B70100 !important;
  margin-bottom: 4px;
}
.hero-banner__stats-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5E5E5E !important;
}
@media (max-width: 991.98px) {
  .hero-banner {
    min-height: auto;
  }
  .hero-banner__title {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (max-width: 767.98px) {
  .hero-banner__title {
    font-size: 36px;
    line-height: 44px;
  }
  .hero-banner__badge {
    font-size: 13px;
  }
  .hero-banner__media {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.company-history {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FFFFFF;
  position: relative;
}
.company-history__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.company-history__eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #B70100;
  margin-bottom: 24px;
}
.company-history__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.96px;
  color: #2A1613;
  margin-bottom: 24px;
}
.company-history__divider {
  display: block;
  width: 80px;
  height: 4px;
  background-color: #B70100;
  margin-bottom: 24px;
}
.company-history__desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #5E5E5E;
  margin-bottom: 24px;
}
.company-history__offices {
  padding-top: 32px;
}
.company-history__office {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background-color: #F9FAFB;
  border: 1px solid #E2E8F0;
  border-radius: 2px;
  padding: 24px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.company-history__office:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
}
.company-history__office-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #B70100;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.company-history__office-icon svg {
  width: 23px;
  height: 23px;
}
.company-history__office-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.company-history__office-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #2A1613;
  margin: 0;
}
.company-history__office-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #5E5E5E;
  margin: 0;
}
.company-history__blur {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background-color: rgba(183, 1, 0, 0.05);
  border-radius: 12px;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
}
.company-history__timeline {
  position: relative;
  z-index: 1;
  border-left: 4px solid #B70100;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.company-history__milestone {
  position: relative;
}
.company-history__milestone:hover .company-history__year {
  opacity: 0.35;
}
.company-history__milestone:hover .company-history__milestone-title {
  color: #B70100;
}
.company-history__year {
  position: absolute;
  left: -40px;
  top: -20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 100px;
  line-height: 100px;
  color: #B70100;
  opacity: 0.2;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
  white-space: nowrap;
}
.company-history__milestone-body {
  position: relative;
  z-index: 1;
}
.company-history__milestone-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2A1613;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.company-history__milestone-desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5E5E5E;
  margin: 0;
  max-width: 540px;
}
@media (max-width: 767.98px) {
  .company-history {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .company-history__title {
    font-size: 36px;
    line-height: 44px;
  }
  .company-history__offices {
    padding-top: 24px;
  }
  .company-history__year {
    font-size: 72px;
    line-height: 72px;
    left: -30px;
  }
  .company-history__blur {
    width: 300px;
    height: 300px;
  }
}

/* Section - Asia-Europe Trade Highlights */
.trade-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0px;
  gap: 64px;
  width: 100%;
  background: #000000;
  /* Container */
}
.trade-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 24px;
  gap: 16px;
  max-width: 1280px;
  width: 100%;
}
.trade-section {
  /* Header */
}
.trade-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 16px;
  width: 100%;
  margin-bottom: 64px;
}
.trade-section__heading {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  text-align: center;
  letter-spacing: -0.96px;
  color: #FFFFFF;
  margin-bottom: 0;
}
.trade-section__subheading {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #E3E2E2;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.trade-section {
  /* Grid Cards */
}
.trade-section .row {
  width: 100%;
}
.trade-section__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  gap: 14.8px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.trade-section__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.trade-section__card-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.trade-section__icon {
  width: 30px;
  height: 24px;
  background: #FFFFFF;
  color: #FFFFFF;
  flex-shrink: 0;
}
.trade-section__number {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.2);
}
.trade-section__card-title {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  width: 100%;
  margin-bottom: 0;
}
.trade-section__card-desc {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  text-align: center;
  color: #E3E2E2;
  width: 100%;
  margin-bottom: 0;
}

.entry-point {
  background-color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 80px;
}
.entry-point__card {
  position: relative;
  height: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.entry-point__card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
}
.entry-point__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.entry-point__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  display: block;
}
.entry-point__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}
.entry-point__content {
  position: relative;
  z-index: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}
.entry-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #B70100;
  border-radius: 2px;
  color: #FFFFFF;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.entry-point__icon svg {
  width: 20px;
  height: 20px;
}
.entry-point__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  color: #2A1613;
  margin-bottom: 16px;
}
.entry-point__desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5E5E5E;
  max-width: 384px;
  margin-bottom: 16px;
}
.entry-point__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 7.5px;
}
.entry-point__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #5F3F3A;
}
.entry-point__check {
  color: #B70100;
  flex-shrink: 0;
}
.entry-point__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #B70100;
  text-decoration: none;
  margin-top: auto;
  padding-top: 16px;
  transition: color 0.3s ease;
}
.entry-point__link:hover {
  color: #B70100;
}
.entry-point__link:hover .entry-point__link-icon {
  transform: translateX(4px);
}
.entry-point__link-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .entry-point {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .entry-point__content {
    padding: 24px;
    min-height: auto;
  }
  .entry-point__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.cta-section {
  background-color: #FFF0EE;
  padding-top: 80px;
  padding-bottom: 80px;
}
.cta-section__card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta-section__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.96px;
  color: #2A1613;
  margin: 0;
}
.cta-section__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #5E5E5E;
  max-width: 672px;
  margin: 0;
}
.cta-section__actions {
  display: flex;
  gap: 24px;
  padding-top: 16px;
}
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  padding: 22px 40px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.cta-section__btn--primary {
  background-color: #B70100;
  color: #FFFFFF;
  box-shadow: 0 4px 6px -4px rgba(183, 1, 0, 0.2), 0 10px 15px -3px rgba(183, 1, 0, 0.2);
}
.cta-section__btn--primary:hover, .cta-section__btn--primary:focus {
  background-color: #990100;
  color: #FFFFFF;
  box-shadow: 0 2px 4px -2px rgba(183, 1, 0, 0.2), 0 5px 10px -2px rgba(183, 1, 0, 0.2);
  transform: translateY(1px);
}
.cta-section__btn--secondary {
  background-color: transparent;
  border: 2px solid #B70100;
  color: #B70100;
}
.cta-section__btn--secondary:hover, .cta-section__btn--secondary:focus {
  background-color: #B70100;
  color: #FFFFFF;
  border-color: #B70100;
}
@media (max-width: 991.98px) {
  .cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .cta-section__card {
    padding: 48px;
  }
  .cta-section__title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767.98px) {
  .cta-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .cta-section__card {
    padding: 24px;
  }
  .cta-section__title {
    font-size: 32px;
    line-height: 40px;
  }
  .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-section__btn {
    width: 100%;
  }
}

.footer {
  background-color: #FFFFFF;
  border-top: 1px solid #E2E8F0;
}
.footer__top {
  padding: 60px 0;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.footer__logo {
  width: 27.42px;
  height: 32px;
  object-fit: cover;
}
.footer__brand-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #B70100;
}
.footer__description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 22.75px;
  color: #5F3F3A;
  margin-bottom: 32px;
}
.footer__contact {
  margin-top: 8px;
}
.footer__contact-item {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #5F3F3A;
  margin-bottom: 0;
}
.footer__heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #2A1613;
  margin-bottom: 24px;
}
.footer__heading--red {
  color: #B70100;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.footer__item {
  margin-bottom: 16px;
}
.footer__item:last-child {
  margin-bottom: 0;
}
.footer__link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #5F3F3A;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #B70100;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #B70100;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.footer__social-link:hover {
  transform: scale(1.05);
}
.footer__social-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
}
.footer__newsletter-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 24px;
}
.footer__newsletter-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #5F3F3A;
  margin-bottom: 16px;
}
.footer__newsletter {
  background-color: #F9FAFB;
  border: 1px solid #E2E8F0;
  padding: 24px;
}
.footer__newsletter-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #B70100;
  margin-bottom: 8px;
}
.footer__form {
  display: flex;
  align-items: stretch;
}
.footer__input {
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #5F3F3A;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
}
.footer__input::placeholder {
  color: #6B7280;
}
.footer__input:focus {
  border-color: #B70100;
}
.footer__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 38px;
  padding: 0;
  background-color: #B70100;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.footer__submit:hover {
  background-color: #950100;
}
.footer__bottom {
  border-top: 1px solid #E2E8F0;
  padding: 16px 0;
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.footer__copyright {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #5F3F3A;
  margin-bottom: 0;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__legal-link {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #5F3F3A;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #B70100;
}

.consultation-modal__popup {
  --bs-modal-backdrop-opacity: 0.6;
}
.consultation-modal__popup.modal.fade .modal-backdrop {
  background-color: #2A1613;
}
.consultation-modal__popup ~ .modal-backdrop {
  background-color: #2A1613 !important;
  opacity: 0.6 !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.consultation-modal__dialog {
  max-width: 672px;
}
@media (max-width: 767.98px) {
  .consultation-modal__dialog {
    margin: 0 16px;
  }
}
.consultation-modal__content {
  border: 1px solid #E9BCB5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.consultation-modal__branding {
  background-color: #B70100;
  padding: 32px;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .consultation-modal__branding {
    display: none !important;
  }
}
.consultation-modal__company-name {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.8;
  letter-spacing: 0;
}
.consultation-modal__heading {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 37.5px;
  margin: 0;
  color: #ffffff;
}
.consultation-modal__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.consultation-modal__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
}
.consultation-modal__feature:nth-child(2) {
  opacity: 0.9;
}
.consultation-modal__feature-icon {
  flex-shrink: 0;
}
.consultation-modal__form-col {
  background-color: #ffffff;
  padding: 40px;
  position: relative;
}
@media (max-width: 767.98px) {
  .consultation-modal__form-col {
    padding: 24px;
  }
}
.consultation-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  padding: 6px;
  color: #5F3F3A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}
.consultation-modal__close svg {
  display: block;
}
.consultation-modal__close:hover {
  transform: rotate(90deg);
  color: #B70100;
}
.consultation-modal__form-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.consultation-modal__title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #2A1613;
  margin: 0;
}
.consultation-modal__description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5E5E5E;
  margin: 0;
}
.consultation-modal__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.consultation-modal__field-row {
  row-gap: 24px;
}
.consultation-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.consultation-modal__field .col-md-6 + .col-md-6 {
  margin-bottom: 0;
}
.consultation-modal__label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #5F3F3A;
  margin: 0;
}
.consultation-modal__input, .consultation-modal__textarea {
  background-color: #F9FAFB;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  padding: 14px 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #2A1613;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.consultation-modal__input::placeholder, .consultation-modal__textarea::placeholder {
  color: #C7C6C6;
}
.consultation-modal__input:focus, .consultation-modal__textarea:focus {
  border-color: #B70100;
  box-shadow: 0 0 0 3px rgba(183, 1, 0, 0.15);
  outline: none;
  background-color: #ffffff;
}
.consultation-modal__textarea {
  resize: vertical;
  min-height: 98px;
  padding-bottom: 60px;
}
.consultation-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #B70100;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.consultation-modal__submit:hover {
  background-color: #920000;
}
.consultation-modal__submit:hover .consultation-modal__submit-icon {
  transform: translateX(4px);
}
.consultation-modal__submit-icon {
  transition: transform 0.3s ease;
}
.consultation-modal__privacy {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  text-align: center;
  color: #5E5E5E;
  opacity: 0.6;
  margin: 0;
}
