/* Alien Logistics — Reconstructed CSS */
/* Original Bitrix CMS CSS was not archived by Web Archive. Rebuilt from HTML structure. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C2929;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: #0063B0; text-decoration: none; transition: color .2s; }
a:hover { color: #0092DF; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
img[src$=".jpg"]:not([src^="http"]),
img[src$=".png"]:not([src^="http"]) {
  /* Hide broken local images gracefully — originals not archived */
  color: transparent;
  font-size: 0;
}
img[src$=".jpg"]:not([src^="http"])::after,
img[src$=".png"]:not([src^="http"])::after {
  content: '';
  display: block;
}
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
main { min-height: calc(100vh - 300px); }

/* === HEADER === */
.header { position: relative; background: #fff; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.header__logo a { display: inline-block; }
.header__logo svg { height: 55px; width: auto; }

.header__menu ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.header__menu ul > li > a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #2C2929;
  transition: color .2s;
}
.header__menu ul > li > a:hover,
.header__menu ul > li.current > a {
  color: #0063B0;
}
.header__mobile-close,
.header__mobile-btn {
  display: none;
  cursor: pointer;
}

/* Language switcher */
.language_switcher_mobile { display: none; }
.language_switcher { margin-left: 15px; }
.language_switcher_block { display: flex; gap: 5px; }
.language_switcher_li { display: inline-block; }
.language_switcher_link {
  display: block;
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all .2s;
}
.language_switcher_link:hover { color: #0063B0; border-color: #0063B0; }

/* Hero / Banner */
.header__page-info { position: relative; overflow: hidden; }
.header__page-picture {
  position: relative;
  min-height: 350px;
  background: linear-gradient(135deg, #0063B0 0%, #0092DF 100%);
}
.header__page-picture img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
}
.header__page-picture .s480 { display: none; }

.header__page-info .container {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  margin: 0 auto;
  padding-bottom: 40px;
}
.header__page-info-inner { position: relative; z-index: 2; }

.header__title h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

/* Breadcrumbs */
.header__breadcrumbs { margin-bottom: 10px; }
.header__breadcrumbs a,
.header__breadcrumbs span { color: rgba(255,255,255,.8); font-size: 14px; }
.header__breadcrumbs a:hover { color: #fff; }
.header__breadcrumbs .bx-breadcrumb-item-angle,
.header__breadcrumbs .fa-angle-right {
  margin: 0 5px;
  color: rgba(255,255,255,.5);
}

/* === ICONS SECTION (icons1) === */
.icons1 { padding: 60px 0; background: #f8f9fb; }
.icons1__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.icons1__item { text-align: center; padding: 25px 15px; }
.icons1__item-icon { margin-bottom: 20px; }
.icons1__item-icon svg { width: 56px; height: 56px; margin: 0 auto; }
.icons1__item-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2C2929;
  margin-bottom: 8px;
}
.icons1__item-description { font-size: 14px; color: #666; line-height: 1.5; }
body > main > div > section.icons1.colored .icons1__item-description { color: #eee; }

/* === ICONS SECTION 2 (icons2) === */
.icons2 { padding: 50px 0; }
.icons2__title { text-align: center; margin-bottom: 40px; }
.icons2__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.icons2__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8f9fb;
  border-radius: 8px;
}
.icons2__item-icon { flex-shrink: 0; }
.icons2__item-icon svg { width: 50px; height: 50px; }
.icons2__item-title { font-size: 1rem; font-weight: 500; color: #2C2929; }

/* === SERVICES SECTION === */
.services { padding: 60px 0; }
.services__items { display: grid; gap: 40px; }
.services__item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: box-shadow .3s;
}
.services__item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.services__item-icon { flex-shrink: 0; }
.services__item-icon svg { width: 70px; height: 70px; }
.services__item-text { flex: 1; }
.services__item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2C2929;
  margin-bottom: 12px;
}
.services__item-text p { color: #555; font-size: 15px; line-height: 1.7; }
.services__item-text ul { padding-left: 20px; list-style: disc; }
.services__item-text li {
  margin-bottom: 8px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* === CONTAINERS SECTION === */
.containers, .konteynery { padding: 50px 0; }
.containers__title { text-align: center; margin-bottom: 40px; }
.containers__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.containers__item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.containers__item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.containers__item-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eef5, #f0f4f8);
}
.containers__item-img img { width: 100%; height: 100%; object-fit: cover; }
.containers__item-text { padding: 20px; }
.containers__item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2C2929;
  margin-bottom: 8px;
}
.containers__btns { display: flex; gap: 10px; margin-top: 15px; padding: 0 20px 20px; }
.containers__btns a {
  display: inline-block;
  padding: 8px 20px;
  background: #0063B0;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.containers__btns a:hover { background: #0092DF; color: #fff; }

/* === FILIALS SECTION === */
.filials { padding: 50px 0; }
.filials__title { text-align: center; margin-bottom: 40px; }
.filials__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.filials__item {
  text-align: center;
  padding: 25px 20px;
  background: #f8f9fb;
  border-radius: 10px;
}
.filials__item-img {
  margin-bottom: 15px;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #e8eef5, #f0f4f8);
}
.filials__item-img img { width: 100%; height: 100%; object-fit: cover; }
.filials__item-title { font-size: 1rem; font-weight: 600; color: #2C2929; margin-bottom: 8px; }
.filials__item-text { font-size: 14px; color: #555; }

/* === CONTENT PAGES === */
.kompaniya, .kontakty, .logistic, .cargo_logistic_detail { padding: 40px 0 60px; }

.logistic__text { padding: 40px 0; }
.logistic__text .container { font-size: 16px; line-height: 1.8; color: #444; }
.logistic__text p { margin-bottom: 1.2rem; }

.colored { background: cornflowerblue; }
.no-top-padding { padding-top: 0 !important; }
.no-bottom-line { border-bottom: none !important; }

/* === MAP SECTION === */
.map { padding: 50px 0 0; }
.map h2 { text-align: center; margin-bottom: 30px; }
.map__content { width: 100%; min-height: 500px; }
.map__content iframe, .map__content script + div { width: 100% !important; }
.map-link { display: inline-block; margin-top: 15px; color: #0063B0; font-weight: 500; }

/* === FORM SECTION === */
.form { padding: 60px 0; background: #0063B0; }
.form__inner { max-width: 500px; margin: 0 auto; }
.form__title h2 { color: #fff; text-align: center; margin-bottom: 25px; font-size: 1.5rem; }
.xhr_form { display: flex; flex-direction: column; gap: 12px; }
.form__field input[type="text"],
.form__field input[type="email"],
.form__field input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s;
  outline: none;
}
.form__field input::placeholder { color: rgba(255,255,255,.6); }
.form__field input:focus { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.15); }
.form__field.submit input[type="submit"] {
  width: 100%;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #0063B0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.form__field.submit input[type="submit"]:hover {
  background: #f0f4f8;
  transform: translateY(-1px);
}
.form__field p { color: rgba(255,255,255,.7); font-size: 12px; text-align: center; }
.form__field input[name="info"] { display: none; }

/* === FOOTER === */
.footer { background: #1a1a2e; color: #ccc; padding: 50px 0 30px; }
.footer .container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}
.footer__contacts a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.footer__contacts p { color: #aaa; font-size: 14px; margin-bottom: 10px; }
.footer__menus { display: flex; gap: 40px; }
.footer__menu > li > a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.footer__menu ul { margin-top: 5px; }
.footer__menu ul li a {
  font-size: 14px;
  color: #aaa;
  display: block;
  padding: 3px 0;
  transition: color .2s;
}
.footer__menu ul li a:hover { color: #0092DF; }
.footer__site-info {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  margin-top: 20px;
}
.footer-copiright { font-size: 13px; color: #777; }

/* === DIALOG / MODAL === */
#dialog-content { display: none; max-width: 500px; }
#dialog-content .form__title h2 { color: #2C2929; }
#dialog-content .form__field input[type="text"],
#dialog-content .form__field input[type="email"] {
  border-color: #ddd; background: #fff; color: #2C2929;
}
#dialog-content .form__field input::placeholder { color: #999; }
#dialog-content .form__field.submit input[type="submit"] { background: #0063B0; color: #fff; }
#dialog-content .form__field p { color: #999; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services__item { flex-direction: column; }
  .footer .container { grid-template-columns: 1fr; }
  .footer__menus { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .header__menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,63,176,.97);
    z-index: 1000;
    padding: 80px 30px 30px;
  }
  .header__menu.active { display: block; }
  .header__menu ul { flex-direction: column; gap: 0; }
  .header__menu ul > li > a {
    color: #fff;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .header__mobile-btn, .header__mobile-close { display: block; }
  .header__mobile-close {
    position: absolute;
    top: 25px; right: 25px;
    z-index: 1001;
  }
  .header__mobile-close svg path { stroke: #fff; }
  .language_switcher { display: none; }
  .language_switcher_mobile { display: block; margin-top: 20px; }
  .language_switcher_mobile li { display: inline-block; }
  .language_switcher_mobile .language_switcher_link {
    color: rgba(255,255,255,.8);
    border-color: rgba(255,255,255,.3);
  }
  h1 { font-size: 1.75rem; }
  .header__title h1 { font-size: 2rem; }
  .header__page-picture { min-height: 250px; }
  .header__page-picture .s1600 { display: none; }
  .header__page-picture .s480 { display: block; }
  .icons1__items { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .containers__items { grid-template-columns: 1fr; }
  .filials__items { grid-template-columns: 1fr 1fr; }
  .footer__menus { gap: 25px; }
}

@media (max-width: 480px) {
  .icons1__items { grid-template-columns: 1fr; }
  .filials__items { grid-template-columns: 1fr; }
  .header__title h1 { font-size: 1.5rem; }
}

/* FA minimal (angle-right for breadcrumbs) */
.fa { display: inline-block; font-style: normal; }
.fa-angle-right::before { content: '\203A'; }
