/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #117EC1;
  --secondary-color: #004A99;
  --dark-bg: rgba(27, 39, 54, 1);
  --dark-blue: #1A2F4D;
  --text-dark: rgba(26, 26, 26, 1);
  --text-white: #FFFFFF;
  --border-color: #E0E0E0;
  --bg-light: #F5F7FA;
  --success-color: #28A745;
  --warning-color: #FFC107;
  --brand-pressed: rgba(10, 76, 116, 1);
  --text-light: rgba(102, 102, 102, 1);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  overflow-x: hidden;
}

.container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-black);
  border: 1px solid #D9D9D9;
}

.btn-secondary--black {
  color: rgba(26, 26, 26, 1);
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 24px;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.btn-text {
  background: transparent;
  color: var(--primary-color);
  padding: 12px 24px;
}

.btn-text:hover {
  text-decoration: underline;
}

.btn-block {
  width: 100%;
  padding: 16px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

.header.hidden {
  transform: translateY(-100%);
}


.header-top {
  background: var(--brand-pressed);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.header.scrolled .header-top {
  background: var(--dark-bg);
}

.header-top-content {
  display: flex;
  justify-content: flex-end;
}

.header-top-nav {
  display: flex;
  gap: 32px;
}

.header-top-nav a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.header-top-nav a:hover {
  opacity: 0.8;
}

.header-hero .main-header {
  background: transparent;
  box-shadow: none !important;
}

.main-header {
  padding: 20px 0;
  transition: all 0.3s ease;
}

.header.scrolled .main-header,
.header:not(.header-hero) .main-header {
  background: var(--text-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header .logo .logo-blue,
.header:not(.header-hero) .logo .logo-blue {
  display: none;
}
.header.scrolled .logo .logo-blue,
.header:not(.header-hero) .logo .logo-blue {
  display: block;
}
.header.scrolled .logo .logo-white,
.header:not(.header-hero) .logo .logo-white {
  display: none;
}

/* Header text color changes */
.main-header .main-nav a {
  color: var(--text-white);
  transition: color 0.3s;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  position: relative;
}

.main-nav .nav-item {
  position: relative;
}

.main-nav .nav-item.has-submenu {
  position: static;
}

.main-nav .nav-link,
.main-nav > a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.main-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: min(1180px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  background: var(--text-white);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.submenu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.nav-item.has-submenu::after {
  content: none;
}

.nav-item.has-submenu:hover .submenu,
.nav-item.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}

.submenu-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  gap: 0 32px;
  padding: 20px;
}

.submenu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-dark);
  /* background: #f7f9fc; */
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu-item:hover,
.submenu-item:focus {
  background: #ffffff;
  color: #117EC1 !important;
}

.submenu-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.submenu-icon img,
.submenu-icon svg {
  width: 40px;
  height: 40px;
}

.submenu-text {
  font-size: 16px;
  font-weight: 400;
}

.submenu-preview {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  height: auto;
  width: 440px;
  height: 442px;
}

.submenu-preview img {
  width: 100%;
  height: 442px;
  object-fit: cover;
  display: block;
}

.header.scrolled .main-header .main-nav a,
.header:not(.header-hero) .main-header .main-nav a {
  color: var(--text-dark);
}

.header.scrolled .main-header .main-nav a:hover,
.header:not(.header-hero) .main-header .main-nav a:hover {
  color: var(--primary-color);
}

.main-header .dropdown-menu.open .language-selector span {
  color: var(--text-white);
  transition: color 0.3s;
}

.main-header .language-selector svg {
  color: var(--text-white);
  transition: color 0.3s;
}

.header.scrolled .main-header .language-selector span,
.header:not(.header-hero) .main-header .language-selector span {
  color: var(--text-dark);
}

.header.scrolled .main-header .language-selector svg,
.header:not(.header-hero) .main-header .language-selector svg {
  color: var(--text-dark);
}

.main-header .mobile-menu-toggle span {
  background: var(--text-black);
  transition: background 0.3s;
}

.header.scrolled .main-header .mobile-menu-toggle span,
.header:not(.header-hero) .main-header .mobile-menu-toggle span {
  background: var(--text-dark);
}

.main-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 36px;
  transition: filter 0.3s;
}


.main-nav {
  display: flex;
  column-gap: 32px;
  flex-wrap: wrap;
  row-gap: 0;
}

.main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-menu {
  display: flex;
  gap: 48px;
  align-items: center;
}

.flag-icon {
  width: 24px;
  height: 18px;
}


   .language-selector {
    position: relative;
    width: 200px;
  }

  .selector-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    /* color: #ffffff; */
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
 
  }

  .flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
  }

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


  .language-name {
    flex: 1;
    text-align: left;
  }

  .arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #000;
    transition: transform 0.3s ease;
  }

  .arrow.open {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #333;
    font-size: 14px;
  }

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

  .dropdown-item.active {
    background: #e6f0ff;
    color: #1e3a5f;
    font-weight: 400;
  }

  .dropdown-item .language-name {
    color: inherit;
  }

  .header.scrolled .main-header .language-selector span.arrow,
  .header:not(.header-hero) .main-header .language-selector span.arrow {
    border-top: 5px solid #000;
  }




/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: rgba(10, 76, 116, 1);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  padding: 80px 30px 30px;
}

.mobile-menu.active {
  right: 0;
}


/* Mobile Menu Navigation */
.mobile-menu .main-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
}

.mobile-menu .main-nav a {
  padding: 18px 0;
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.3s ease;
}

.mobile-menu .main-nav a:hover {
  color: #0BA5EC;
}

/* Mobile Menu Actions */
.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.mobile-menu .language-selector {
  width: 100%;
}

.mobile-menu .language-selector .selector-button {
  width: 100%;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #f8f9fa;
  border: 1px solid #e5e5e5;
}

.mobile-menu .btn-primary {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
}

/* Mobile Menu Top Links */
.mobile-menu .mobile-top-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-menu .mobile-top-nav a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu .mobile-top-nav a:hover {
  color: #0BA5EC;
}

section {
  position: relative;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

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

/* Hero Section */
.hero {
  padding: 120px 0;
  min-height: 100vh;
  padding-top: 180px;
  color: var(--text-white);
  padding-bottom: 84px;
  display: flex;
  background: rgba(0, 0, 0, 0.15);
  position: relative;
}

.hero .container {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 856px;
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Partners Carousel */
.partners {
  padding: 48px 0;
  border-bottom: 1px solid rgba(238, 238, 238, 1);
}


.partners-label span {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: #fff;
  position: relative;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  text-align: center;
  font-size: 24px;
  color: #1A1A1A;
  font-weight: 600;
  height: 100%;
  white-space: nowrap;
}


.partners-carousel {
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 60px;
  animation: scroll 60s linear infinite;
}

.partners-track img {
  height: 40px;
  /* filter: grayscale(100%); */
  transition: all 0.3s;
}

.partners-track img:hover {
  filter: grayscale(100%);
}

@keyframes scroll {
  0% {
  transform: translateX(0);
  }
  100% {
  transform: translateX(-50%);
  }
}

/* Section Titles */
.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* Platform Section */
.platform {
  padding: 80px 0;
}

.section-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 32px;
  background: rgba(229, 229, 229, 1);
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: rgba(102, 102, 102, 1);
}

.tab-btn.active {
  background: rgba(17, 126, 193, 1);
  color: #fff;
}

.platform-tab-panel[hidden] {
  display: none !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--text-white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card.highlighted {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.service-icon img {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
}

/* Operator Section */
.operator {
  padding: 80px 0;
}

.operator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.operator-image img {
  width: 100%;
}

.operator-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

@media (min-width:768px){
   .operator-text {
  padding-left: 64px;
  } 
}

.operator-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}

.operator-buttons {
  display: flex;
  gap: 16px;
}

/* Info Cards Section */
.info-cards {
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-block .info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  transition: all 0.3s;
}

.info-card--mini {
  max-width: 630px;
  width: 100%;
}

.info-card img:not(:last-child) {
  margin-bottom: 32px;
}

.info-card img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card .section-title {
  text-align: left;
}

.info-card .text--24 {
  font-weight: 700;
}

.info-card-name {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.0;
}

.section--bg {
  background: rgba(0, 52, 107, 1);
  padding: 120px 0;
  color: var(--text-white);
}

/* Calculator Section */
.calculator {
}


.form-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Transport Types Section */
.transport-types {
  padding: 80px 0;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.transport-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.transport-card:hover {
  transform: scale(1.05);
}

.transport-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.transport-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
}

/* Advantages Section */
.advantages {
  padding: 120px 0 70px 0;
  background: var(--dark-bg);
  color: var(--text-white);
}

.advantages-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.advantage-item {
  display: flex;
  flex-direction: column;
}

.advantage-item p {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 300;
}

.advantages .advantages-swiper {
  width: 100%;
  overflow: hidden;
}

.advantages .advantages-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.advantages .advantages-swiper .swiper-slide {
  height: auto;
}

.advantages .advantages-swiper .swiper-pagination {
  position: static;
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

.advantages .advantages-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.advantages .advantages-swiper .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1);
}

/* Statistics Section */
.statistics {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.stats-grid:not(:first-child) {
  margin-top: 56px;
}

.stat-card {
  text-align: center;
  border: 2px solid var(--Light-Border-Primary, rgba(229, 229, 229, 1));
  padding: 50px;
  border-radius: 32px;
}

.stat-number,
.stat-block {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);

}
.stat-block {
  display: flex;
  justify-content: center;
  gap: 2px;
  align-items: center;
}

.stat-label {
  font-size: 18px;
  margin-bottom: 8px;
}

/* Blog Section */
.blog {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.blog-grid:not(:first-child) {
  margin-top: 48px;
}

.blog-card {
  overflow: hidden;
  background: var(--text-white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s;
  cursor: pointer;
  padding: 6px;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}


.blog-hash {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hashtag {
  background: rgba(242, 242, 242, 1);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(102, 102, 102, 1);
}

.blog-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  display: -webkit-box;     /* Створює "гнучкий контейнер" */
  -webkit-box-orient: vertical;   /* Орієнтація вертикальна */
  -webkit-line-clamp: 2;    /* Кількість рядків для відображення */
  overflow: hidden;     /* Приховує все, що виходить за межі */
  text-overflow: ellipsis;  /* Додає ... */
  line-height: 1.4;     /* Можна підлаштувати відстань між рядками */
  max-height: calc(1.4em * 2);
}

.blog-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.blog-link:hover {
  text-decoration: underline;
}

/* About Section */
.seo-section {
  padding: 80px 0 160px;
}

.seo-title {
  font-size: 32px;
  font-weight: 700;
}

.seo-title:not(:last-child) {
  margin-bottom: 32px;
}

.seo-subtitle:not(:last-child) {
  margin-bottom: 16px;
}

.seo-subtitle {
  font-size: 20px;
}

.seo-text {
  font-size: 16px;
  line-height: 1.2;
  color: rgba(102, 102, 102, 1);
}

.seo-text-wrapper {
  position: relative;
  max-height: 140px;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.seo-text-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  transition: opacity 0.3s ease;
}

/* коли активний (розгорнутий) */
.seo-text-wrapper.active {
  max-height: 1000px; /* або auto з JS */
}

.seo-text-wrapper.active::after {
  opacity: 0;
  pointer-events: none;
}
.seo-link {
  background: none;
  border: none;
  cursor: pointer;
}
/* стилізація кнопки */
.seo-link:not(:first-child) {
  margin-top: 32px;
}


/* CTA Section */
.cta {
  padding: 100px 0;
  background: rgba(0, 52, 107, 1);
  text-align: center;
}

.cta .container {
  max-width: 876px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
}

.cta-content .btn:not(:first-child) {
  margin-top: 48px;
}

/* Footer */
.footer {
  background: rgba(0, 37, 75, 1);
  color: var(--text-white);
  padding: 80px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-column-name {
  font-size: 16px;
  font-weight: 600;
}

.footer-column-name:not(:last-child) {
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--text-white);
}

.footer-contacts {
  margin-top: 16px;
}

.footer-contacts p {
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a img {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.social-links a:hover img {
  opacity: 1;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-container {
  position: relative;
  width: 90%;
  max-width: 1760px;
  max-height: 90vh;
  margin: 5vh auto;
  background: var(--text-white);
  border-radius: 16px;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--text-white);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--bg-light);
  transform: rotate(90deg);
}

.modal-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  max-height: 90vh;
  height: max-content;

}

.modal-left {
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
  max-height: 90vh;
  height: 100%;
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-logo {
  position: absolute;
  bottom: 32px;
  left: 32px;
}
.modal-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 48px;

  
}

#calculatorSuccessModal .modal-container {
  max-width: 720px;
}

#calculatorSuccessModal .modal-content {
  grid-template-columns: 1fr;
}

#calculatorSuccessModal .modal-right {
  grid-template-columns: 1fr;
  padding: 48px;
}

.input-wrapper.is-invalid input,
.input-wrapper.is-invalid textarea {
  border-color: #d9534f;
}

.custom-select.is-invalid .select-selected {
  border: 1px solid #d9534f;
}

.delivery-types.is-invalid {
  box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.4);
  border-radius: 12px;
}



.modal-form-container h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.request-form {
  margin-bottom: 48px;
}

.request-form .form-group input,
.request-form .form-group select {
  border: 1px solid var(--Light-Border-Primary, rgba(229, 229, 229, 1));
  border-radius: 12px;
  padding: 12px 16px;
  color: #000000;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.required {
  color: #DC3545;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: none;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.phone-input {
  display: flex;
  gap: 12px;
}

.phone-code {
  width: 100px;
  flex-shrink: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 16px center;
  background-size: 12px;
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.form-checkbox input {
  width: auto;
  margin-right: 8px;
}

.form-checkbox label {
  font-size: 13px;
  color: var(--text-light);

}

.form-checkbox a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

/* Modal Info Section */
.modal-info {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--border-color);
  padding-left: 32px;
  max-height: calc(90vh - 84px);
  height: max-content;
}

.modal-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.contact-block {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}


.contact-item a {
  font-size: 16px;
  color: rgba(51, 51, 51, 1);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-time {
  font-size: 13px;
  color: var(--text-light);
  margin-left: 8px;
}

.contact-note {
  font-size: 13px;
  color: var(--text-light);
  margin: 24px 0;
}

/* FAQ Section */
.faq-section {
  padding-right: 6px;
  overflow-y: auto;
  overflow-x: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--Light-Border-Primary, rgba(229, 229, 229, 1));
}

.faq-question {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
  background-image: url('/images/plus.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.2s ease;
}

.faq-item.active .faq-icon {
  background-image: url('/images/close.svg');
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
  padding-top: 8px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}


 .cards-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  }

  .cards-grid-row-2 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
   
  }

  .country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgba(226, 226, 226, 1);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    gap: 16px;
  }

  .country-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .country-card-link .country-card {
    height: 100%;
  }

  .content-wrapper.country-card {
    text-align: left;
  }

  .country-card:not(.content-wrapper):hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: #117EC1;
    border-color: #117EC1;
  }

  .country-card:not(.content-wrapper):hover img {
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease-in-out;
  }

  .country-card:not(.content-wrapper):hover .country-name {
    color: #ffffff;
    transition: color 0.2s ease-in-out;
  }
  

  .country-card.active {
    background: #1890d5;
    border-color: #1890d5;
  }

  .country-card.active .country-name {
    color: white;
  }

  .card-icon {
    width: 52px;
    height: 52px;
  }

  .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .country-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    color: rgba(29, 38, 48, 1);
  }

  .country-card.all-directions .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #1890d5;
  }

  .header:not(.header-hero) + main {
    padding-top: 100px;
  }

  main > section:first-of-type {
    margin-top: 40px;
  }

  
  .cases-section {
    background: rgba(0, 37, 75, 1);
    padding: 120px 0;
    position: relative;
  }

  

  .cases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .cases-title-wrapper {
    flex: 1;
  }

  .cases-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .cases-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
    margin-bottom: 64px;
    color: #fff;
  }

  .stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    margin-bottom: 60px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
  }

  .swiper-slide .stat-label {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .stat-value {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }

  .swiper {
    width: 100%;
    height: auto;
    position: relative;
  }

  .swiper-navigation {
    display: flex;
    gap: 15px;
     
    z-index: 10;
  }

  .swiper-button-prev,
  .swiper-button-next {
    position: static;
    width: 56px;
    height: 56px;
    border: 1px solid var(--Light-Border-Brand, rgba(17, 126, 193, 1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .slide-image {
    width: 100%;
    height: auto;
  
    overflow: hidden;
  }

  .slide-subtitle {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
  }

  .slide-subtitle:not(:last-child) {
    margin-bottom: 16px;
  }

  .slide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .slide-text {
    padding: 20px 0;
  }

  .slide-section {
    margin-bottom: 40px;
  }

  .slide-section:last-child {
    margin-bottom: 0;
  }


  .section-text {
    font-size: 16px;

    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
  }



  .description-title {
    font-size: 20px;
    line-height: 1.4;
  }

  .text--14 {
    font-size: 14px;
  }

  .text--16 {
    font-size: 16px;
  }

  .text--18 {
    font-size: 18px;
  }

  .text--24 {
    font-size: 24px;
  }

  .text--light {
    color: var(--text-light);
  }

  .learn-more {
    color: rgba(17, 126, 193, 1);
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
  }

  .mt-16 {
    margin-top: 16px;
    display: block;
  }
  .mb-48 {
    margin-bottom: 48px;
    display: block;
  }

  .step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.3;
  }

  .step-title.active {
    opacity: 1;
  }

  .calculator-form [hidden] {
    display: none !important;
  }

  /* Delivery Type Buttons */
  .delivery-types {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
  }

  .delivery-btn {
    background: transparent;
    border: 1px solid var(--Light-Border-Brand, rgba(17, 126, 193, 1));
    border-radius: 999px;
    padding: 24px 30px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
  }

  .delivery-btn.active {
    background: #fff;
    color: #003D7A;
    border-color: #fff;
  }

  .delivery-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .delivery-btn.active:hover {
    background: #fff;
  }

  .delivery-btn .icon {
    width: 24px;
    height: 24px;
    background: url('/images/icon-plane.svg') no-repeat center;
    background-size: contain;
  }

  .delivery-btn.rail .icon {
    background-image: url('/images/icon-train.svg');
  }

  .delivery-btn.sea .icon {
    background-image: url('/images/icon-ship.svg');
  }

  .delivery-btn.multi .icon {
    background-image: url('/images/icon-multi.svg');
  }

  /* Form Fields */
 .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  width: 100%; /* або max-width: 100%; */
    margin-bottom: 40px;
  }

  .form-group {
    position: relative;
  }


  @media (min-width:1400px){
        .form-group.full-width {
    grid-column: 3 /6;
  }

  .form-group.full-width.additional-info-group {
    grid-column: 1 /3;
  }
  }



  .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--Light-Border-Brand, rgba(17, 126, 193, 1));
    border-radius: 999px;
    padding: 12px;
    gap: 16px;
    transition: all 0.3s ease;
  }

  .input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
  }

  input,
  select,
  textarea {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    width: 100%;
  }

  input::placeholder,
  textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .calculator-form .input-wrapper input,
  .calculator-form .input-wrapper select,
  .calculator-form .input-wrapper textarea {
    padding: 0;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
  }

  .calculator-form .input-wrapper textarea {
    min-height: 20px;
    max-height: 20px;
    line-height: 20px;
    resize: none;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }

  .calculator-form .input-wrapper.additional-info-wrapper {
    min-height: 72px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  /* Custom Select */
  .custom-select {
    position: relative;
    flex: 1;
  }

  .select-selected {
    background: transparent;
    color: #fff;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
  }

  .select-selected.placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .select-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    margin-left: 10px;
    transition: transform 0.3s ease;
  }

  .select-selected.active .select-arrow {
    transform: rotate(180deg);
  }

  .select-items {
    position: absolute;
    background: #003D7A;
    top: calc(100% + 10px);
    left: -20px;
    right: -20px;
    z-index: 99;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    max-height: 200px;
    overflow-y: auto;
    display: none;
  }

  .select-items.active {
    display: block;
  }

  .select-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #fff;
    font-size: 14px;
  }

  .select-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Submit Button */
  .submit-btn {
     
  }

  .submit-btn:hover {
    
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  /* Hidden steps */
  .step-content {
    display: none;
  }

  .step-content.active {
    display: block;
  }



  .calculator .text--14 {
    max-width: 970px;
    width: 100%;
  }

  .text-white {
    color: #fff !important;
  }

  .text-left {
    text-align: left;
  }

  .step-title {
    margin-top: 40px;
  }

  .calculator {
    display: flex;
    flex-direction: column;
    gap: 140px;
  }

   .logistics-section {

    padding: 160px 0;
  }

  .logistics-section .section-title {
    max-width: 744px;
    width: 100%;
    margin-bottom: 64px;
  }

  .section-label {
    color: rgba(17, 126, 193, 1);
    font-size: 18px;
    font-weight: 400;
   
    text-transform: none;
  }

  .section-label:not(:last-child) {
    margin-bottom: 24px;
  }

  .logistics-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .image-container {
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .tabs-navigation {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .tab-item {
    border-bottom: 1px solid #e0e0e0;
  }

  .tab-item:last-child {
    border-bottom: none;
  }

  .tab-button {
    background: none;
    border: none;
    border-bottom: none;
    padding: 24px 0;
    padding-right: 30px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
  }

  .tab-item:first-child .tab-button {
    padding-top: 0;
  }

  .tab-button:hover {
    background-color: #f8f9fa;
  }

  .tab-button.active {
    background-color: transparent;
  }

  .service-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
  }

  .tab-button:hover .service-title {
    color: #4A90E2;
  }

  .tab-button.active .service-title {
    color: #1a1a1a;
  }

  .tab-content {
    display: none;
    padding: 0 0 24px 0;
    animation: fadeIn 0.4s ease;
  }

  .tab-content.active {
    display: block;
  }

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

  .service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .seo-link {
    display: inline-block;
    color: rgba(17, 126, 193, 1);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .service-link {
    color: rgb(0, 0, 0);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .service-link:hover {
    transform: translateY(0);
    text-decoration: none;
  }

  .button__delivery {
    color: rgba(17, 126, 193, 1);
  }
  
  .seo-link:hover {
    color: #357ABD;
    text-decoration: underline;
  }

  .tab-features {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
  }

  .tab-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #666;
    font-size: 15px;
  }

  .tab-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: 700;
  }




  .advantages-autor:not(:first-child) {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .advantages-autor img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
  }

  .modal-right option {
    color: rgba(26, 26, 26, 1);
    padding-right: 8px;
  }

  .request-form .form-group select {
    padding-right: 30px;
  }



.faq {
  padding-top: 160px;
}

.faq .container {
  max-width: 1080px;
}

.faq .faq-section {
  margin-top: 64px;
}

.text--center {
  text-align: center;
}

 .delivery-section {
    position: relative;
    padding: 80px 0;
  }

  .delivery-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 60px;
    align-items: center;
  }

  .left-content {
    max-width: 858px;
  }

  .left-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .left-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
  }

  .button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  
  .right-content {
    position: relative;
  }

  .background-image {
     width: 100%;
     height: 100%;
    max-width: 630px;
    max-height: 640px;
    display: block;
    overflow: hidden;
    z-index: 1;
  }

  .background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .delivery-card {
    position: absolute;
    bottom: -120px;
    left: -80px;
     
    background: white;
    border-radius: 20px;
    /* padding: 30px; */
    
    max-width: 380px;
    margin-left: auto;
    
  }

  .delivery-wrapper {
    position: relative;
     z-index: 2;
  }

  .delivery-card::after {
    content: '';
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
  }

  .delivery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
  }

  .on-the-way {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0077be;
    font-weight: 600;
    font-size: 14px;
  }

  .icon-box {
    width: 32px;
    height: 32px;
    background: #e3f2fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0077be;
  }

  .days-badge {
    color: #0077be;
    font-size: 32px;
    font-weight: 700;
  }

  .status-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .delivery-route {
    margin-bottom: 25px;
  }

  .route-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
  }

  .route-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 30px;
    width: 2px;
    height: 20px;
    background: #e0e0e0;
  }

  .route-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    background: white;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .route-dot.active {
    border-color: #0077be;
    background: #0077be;
  }

  .route-dot.completed {
    border-color: #4caf50;
    background: #4caf50;
  }

  .route-item span {
    color: #333;
    font-weight: 400;
  }

  .route-item.active span {
    color: #0077be;
    font-weight: 600;
  }

  .delivery-details {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
  }

  .detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .detail-label {
    color: #666;
  }

  .detail-value {
    color: #333;
    font-weight: 600;
  }

  .map-image {
    width: 100%;
    height: auto;
  }

  
.delivery-number,
.delivery-block {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  text-wrap: nowrap;

}
.delivery-block {
  display: flex;
  justify-content: center;
  gap: 2px;
  align-items: center;
}

.delivery-label {
  font-size: 16px;
  margin-bottom: 8px;
}

.stats-grid .delivery-stat:first-child .delivery-label,
.stats-grid .delivery-stat:last-child .delivery-label {
  margin-bottom: 27px;
}


.map .section-text {
  color: rgba(102, 102, 102, 1);
  max-width: 1300px;
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 80px;
}

section.map {
  padding-top: 0;
}

.map .section-text a {
  font-weight: 700;
  text-decoration: none;
}

.info-block--full {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
}

.info-block--max {
  grid-template-columns: repeat(3, 1fr);
}

.info-icon {
  background: rgba(17, 126, 193, 1);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-self: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  align-self: flex-start;
  flex-shrink: 0;
}

.info-icon--grey {
  background: rgba(242, 242, 242, 1);
}

.info-icon--dark {
  background: var(--Light-Overlay-30InverseStatic, rgba(0, 0, 0, 0.3));
}

.info-icon:not(:last-child) {
  margin-bottom: 8px;
}

.info-icon img {
  width: 100%;
  height: 100%;
}

.delivery-stat {
  display: flex;
  flex-direction: column;
}

.delivery-stat .delivery-block {
  margin-top: auto;
}

.goods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.goods-card {
  border: 1px solid var(--Light-Border-Primary, rgba(229, 229, 229, 1));
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  transition: all 0.3s ease;
}

.goods-card img {
  filter: invert(43%) sepia(74%) saturate(1808%) hue-rotate(181deg) brightness(95%) contrast(101%);
  transition: all 0.3s ease;
}

.goods-card:hover img {
 filter: brightness(0) invert(1);
}

.goods-name {
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.goods-card:hover {
  background: rgba(17, 126, 193, 1);
}

.goods-card:hover .goods-name {
  color: #fff;
}

.cards-swiper {
  display: none;
}

.logistics-list {
  display: flex;
  gap: 24px;
  align-items: center;
}

.logistics-list li {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
   transform: translateY(-20px);
}

.logistics-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: rgba(17, 126, 193, 1);
  border-radius: 50%;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.logistics-list:not(:last-child) {
  margin-bottom: 44px;
}

.logistics-info p {
  font-size: 18px;
}

.logistics-info p strong {
  font-weight: 400;
}


  .logistics-list li:nth-child(1) {
    animation: slideInLeft 0.6s ease forwards 0.5s;
  }

  .logistics-list li:nth-child(2) {
    animation: slideInLeft 0.6s ease forwards 0.7s;
  }

  .logistics-list li:nth-child(3) {
    animation: slideInLeft 0.6s ease forwards 0.9s;
  }

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

  .parallax-container {
    margin-bottom: -400px;
    z-index: 3;
    position: relative;
    height: 628px;
  }

  .parallax-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 400px;
  }

  .parallax-container img {
    height: 510px;
  }
  

  .section-pretitle {
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 24px;
  }

  .services-section {
    padding: 120px 0;
}

.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.services-top--col {
  grid-template-columns: 1fr;
  gap: 24px;
}

.services-top:not(:last-child) {
  margin-bottom: 80px;
}

.services-title {
  max-width: 744px;
  font-size: 48px;
  font-weight: 700;
}
.services-top .text--18 {
  color: rgba(102, 102, 102, 1);
}
.services-container img {
  width: 100%;
  height: 510px;
  object-fit: cover;
}
.services-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}


.services-block:not(:first-child) {
  margin-top: 120px;
}
.services-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-card-title {
  font-size: 32px;
  font-weight: 700;
}


.whom-section {
  padding: 120px 0;
}

.whom-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.whom-title:not(:last-child) {
  margin-bottom: 24px;
}
.whom-section .text--18 {
  max-width: 894px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
}
.whom-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.whom-content:not(:first-child) {
  margin-top: 80px;
}
.whom-content .info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.whom-content .info-card .info-icon {
  margin-bottom: 16px;
}

  .pt-max {
    padding-top: 450px;
  }

  .pt-xl {
    padding-top: 300px;
  }

  .ddp-wrapper .section-title {
    text-align: center !important;
  }

  .ddp-section .image-container {
    max-width: 856px;
    margin-left: auto;
    margin-right: auto;
  }

  .ddp-section .image-container p {
    text-align: center;
  }

  .ddp-section .image-container .button-group {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: max-content;
  }

  .ddp-section {
  padding-bottom: 300px;
  }

  .ddp-section .info-block--max {
  margin-top: 160px;
  }

  .info-card--row {
  flex-direction: row !important;
  }

  .info-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  }

  .section-mb {
  margin-bottom: -100px;
  z-index: 2;
  position: relative;
  }

  .pd-0 {
  padding-top: 0;
  padding-bottom: 0;
  }


  .platform .text--18 {
  text-align: center;
  max-width: 738px;
  margin-left: auto;
  margin-right: auto;
  }

  .footer-column a img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  }

  .footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  }

  .services-advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
  }

  .services-advantages:not(:first-child) {
  margin-top: 32px;
  }

  .services-advantages li {
  display: flex;
  gap: 12px;
  align-items: center;
  }

  .services-advantages li::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: url('../images/icons/check-fill.svg') no-repeat center;
  background-size: cover;
  }

  .services-title {
  font-weight: 700;
  font-size: 48px;
  }

  .services-title:not(:last-child) {
  margin-bottom: 32px;
  }

  .services-list p span {
  color: rgba(17, 126, 193, 1);
  font-weight: 700;
  }

  .logistics-section + .logistics-section {
  padding-top: 0;
  }

  .align-center {
  align-items: center;
  }

  .case-btn {
    display: block;
  }

  .cases-section .swiper-slide {
    height: max-content;
  }






  .header-top .container {
     display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 4px;
  }
@media (max-width: 768px){
    
        .header-top .container {

            justify-content: space-between;

        }
}

        .top-bar-left {
            display: flex;
            align-items: center;
        }

        .top-bar-icons {
            display: none;
            gap: 12px;
            align-items: center;
        }

        .icon-btn {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 18px;
            padding: 5px;
        }

        /* Main Header */
        .main-header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .main-header .container {
  
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* CTA Button */
        .cta-button {
            background-color: #0c89d6;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s;
            white-space: nowrap;
        }

        .cta-button:hover {
            background-color: #0a75ba;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 999;
            position: relative;
            gap: 6px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .mobile-menu-toggle span {
            width: 22px;
            height: 2px;
            background-color: rgba(0, 0, 0, 1);
            position: relative;
            transition: all 0.3s;
        }

        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 3px); 
            top: 0;

        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(2px, -2px);
            top: 0;
  
        }

        .mobile-menu-toggle.active span:nth-child(2) {
          display: none;
        }

        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transition: left 0.3s;
            z-index: 1000;
            overflow-y: auto;
        }

        .mobile-nav.active {
            left: 0;
            display: block;
        }

        .mobile-nav-list {
            list-style: none;
            padding: 20px 0 ;
        }

        .mobile-nav-list li {
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-list a {
            display: block;
            padding: 15px 25px;
            color: #333;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .mobile-nav-list a:hover {
            background-color: #f5f5f5;
        }

        .mobile-submenu-toggle {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 15px 25px;
          border: none;
          background: transparent;
          color: #333;
          font-size: 16px;
          font-weight: 400;
          text-align: left;
          cursor: pointer;
        }

        .mobile-submenu-arrow {
          width: 10px;
          height: 10px;
          border-right: 2px solid #333;
          border-bottom: 2px solid #333;
          transform: rotate(45deg);
          transition: transform 0.2s ease;
          margin-top: -4px;
        }

        .mobile-submenu-list {
          list-style: none;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.25s ease;
          background: #fafafa;
        }

        .mobile-submenu-list li {
          border-bottom: 1px solid #eee;
        }

        .mobile-submenu-list a {
          padding: 12px 25px 12px 40px;
          font-size: 15px;
        }

        .mobile-nav-item.active .mobile-submenu-list {
          max-height: 520px;
        }

        .mobile-nav-item.active .mobile-submenu-arrow {
          transform: rotate(-135deg);
          margin-top: 2px;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0,0,0,0.5);
            z-index: 105;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .mobile-overlay.active {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .nav-menu {
                gap: 20px;
            }

            .nav-menu a {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .top-bar-right {
                display: none;
            }

            .top-bar-icons {
                display: flex;
            }

            .nav-menu,
            .nav-right {
                display: none;
            }

          .mobile-overlay.active {
            display: block;
          }

            .main-header .container {
                padding: 0 15px;
            }

            .logo-ftp {
                font-size: 28px;
            }

            .logo-subtitle {
                font-size: 9px;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                padding: 8px 0;
                font-size: 13px;
            }

            .logo-ftp {
                font-size: 24px;
            }
        }

        .top-bar-icons .arrow {
          border-top: 5px solid #fff;
        }

        .blog-swiper {
  display: none;
}

        .calculator .step {
          display: none;
        }

        .calculator .step.active {
          display: block;
        }

        .calculator .actions {
          margin-top: 16px;
          display: flex;
          gap: 8px;
        }

        .calculator .field {
          margin-bottom: 12px;
        }

        .calculator label {
          display: block;
          font-weight: 600;
          margin-bottom: 6px;
        }

        .calculator input,
        .calculator select,
        .calculator textarea {
          width: 100%;
          padding: 8px;
        }

        .language-selector a {
          text-decoration: none;
        }

#page-ddp-delivery .header.header-hero .main-nav a {
  color: #ffffff;
}

#page-ddp-delivery .header.header-hero .logo-blue {
  display: none;
}

#page-ddp-delivery .header.header-hero .logo-white {
    display: block;
}

#page-ddp-delivery .header.header-hero .selector-button {
  color: #ffffff;
}

#page-ddp-delivery .header.header-hero.scrolled .main-nav a {
  color: #000000;
}

#page-ddp-delivery .header.header-hero.scrolled .logo-blue {
  display: block;
}

#page-ddp-delivery .header.header-hero.scrolled .logo-white {
    display: none;
}

#page-ddp-delivery .header.header-hero.scrolled .selector-button {
  color: #000000;
}

#page-international-money .header.header-hero .main-nav a {
  color: #ffffff;
}

#page-international-money .header.header-hero .logo-blue {
  display: none;
}

#page-international-money .header.header-hero .logo-white {
    display: block;
}

#page-international-money .header.header-hero .selector-button {
  color: #ffffff;
}

#page-international-money .header.header-hero.scrolled .main-nav a {
  color: #000000;
}

#page-international-money .header.header-hero.scrolled .logo-blue {
  display: block;
}

#page-international-money .header.header-hero.scrolled .logo-white {
    display: none;
}

#page-international-money .header.header-hero.scrolled .selector-button {
  color: #000000;
}

#page-contact .header.header-hero .main-nav a {
  color: #ffffff;
}

#page-contact .header.header-hero .logo-blue {
  display: none;
}

#page-contact .header.header-hero .logo-white {
    display: block;
}

#page-contact .header.header-hero .selector-button {
  color: #ffffff;
}

#page-contact .header.header-hero.scrolled .main-nav a {
  color: #000000;
}

#page-contact .header.header-hero.scrolled .logo-blue {
  display: block;
}

#page-contact .header.header-hero.scrolled .logo-white {
    display: none;
}

#page-contact .header.header-hero.scrolled .selector-button {
  color: #000000;
}

.submenu-item {
  color: #333333 !important;
}

#page-home .header.header-hero .main-nav a {
  color: #ffffff;
}

#page-home .header.header-hero .logo-blue {
  display: none;
}

#page-home .header.header-hero .logo-white {
    display: block;
}

#page-home .header.header-hero .selector-button {
  color: #ffffff;
}

#page-home .header.header-hero.scrolled .main-nav a {
  color: #000000;
}

#page-home .header.header-hero.scrolled .logo-blue {
  display: block;
}

#page-home .header.header-hero.scrolled .logo-white {
    display: none;
}

#page-home .header.header-hero.scrolled .selector-button {
  color: #000000;
}

#page-blog .header.header-hero .main-nav a {
  color: #ffffff;
}

#page-blog .header.header-hero .logo-blue {
  display: none;
}

#page-blog .header.header-hero .logo-white {
    display: block;
}

#page-blog .header.header-hero .selector-button {
  color: #ffffff;
}

#page-blog .header.header-hero.scrolled .main-nav a {
  color: #000000;
}

#page-blog .header.header-hero.scrolled .logo-blue {
  display: block;
}

#page-blog .header.header-hero.scrolled .logo-white {
    display: none;
}

#page-blog .header.header-hero.scrolled .selector-button {
    color: #000000;
}

#page-blog .header.header-hero .main-header {
    box-shadow: none !important;
}

#page-blog-post .header.header-hero .main-nav a {
  color: #ffffff;
}

#page-blog-post .header.header-hero .logo-blue {
  display: none;
}

#page-blog-post .header.header-hero .logo-white {
    display: block;
}

#page-blog-post .header.header-hero .selector-button {
  color: #ffffff;
}

#page-blog-post .header.header-hero.scrolled .main-nav a {
  color: #000000;
}

#page-blog-post .header.header-hero.scrolled .logo-blue {
  display: block;
}

#page-blog-post .header.header-hero.scrolled .logo-white {
    display: none;
}

#page-blog-post .header.header-hero.scrolled .selector-button {
    color: #000000;
}

#page-blog-post .header.header-hero .main-header {
    box-shadow: none !important;
}

.header.header-hero .main-nav a {
  color: #000000;
}

.header.header-hero .logo-blue {
  display: block;
}
.header.header-hero .logo .logo-white {
    display: none;
}

.header.header-hero .main-header {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

#page-ddp-delivery .header.header-hero .main-header,
#page-international-money .header.header-hero .main-header,
#page-contact .header.header-hero .main-header,
#page-home .header.header-hero .main-header {
  box-shadow: none !important;
}

#page-ddp-delivery .header.header-hero .selector-button .arrow,
#page-international-money .header.header-hero .selector-button .arrow,
#page-contact .header.header-hero .selector-button .arrow,
#page-home .header.header-hero .selector-button .arrow {
  border-top: 5px solid #ffffff;
}

.mt-60 {
  margin-top: 60px;
}

#page-transportation .delivery-section {
  margin-top: 70px;
}