*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Базовые стили */
:root {
  --primary: #7f50e0;
  --secondary: #ff6b6b;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --success: #28a745;
  --greenline: #218838;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Unbounded", sans-serif;
}

.link-d-activ {
  display: none !important;
}

.container,
.visa__page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 13px;
}

.all-block-disable {
  display: none !important;
}

.navbar-toggler {
  display: none;
}

.top-header {
  width: 100%;
  font-size: 11px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 auto;
  text-transform: uppercase;
}

.top-header-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 2vw;
  text-align: left;
}

.top-header .social {
  display: block;
}

.top-header .social ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.work-time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 11px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.work-time p {
  margin: 0;
  padding: 0;
}

.work-time p:first-child::before {
  content: url(../img/icon/pin.png);
  padding-right: 5px;
}

.work-time p:last-child {
  padding-top: 7px;
}

.phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.phones a {
  display: flex;
  align-items: center;
  font-size: 13px;
  white-space: nowrap;
}

.phones a::before {
  content: url(../img/icon/phone-call.png);
  padding-right: 5px;
}

.phones a:last-child {
  margin-right: 0;
}

.social ul {
  display: flex;
  justify-content: space-between;
}

.social ul li {
  margin-right: 5px;
}

.social ul li:last-child {
  margin-right: 0;
}

.social ul li a img {
  max-width: 40px;
}

header .search {
  width: 225px;
  max-width: 100%;
}

header .search form {
  position: relative;
}

header .search .input {
  color: #151f2e;
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 20px 0 58px;
  border: none;
  border-radius: 30px;
  background: #fff url(../img/icon/ic_search.webp) 20px 50% no-repeat;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.24);
  transition: 0.3s ease;
}

.input-wrapper {
  display: inline-block;
  padding: 5px;
  border-radius: 30px;
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
}

header .search ::-webkit-input-placeholder {
  color: #151f2e;
}
header .search ::-moz-placeholder {
  color: #151f2e;
}
header .search :-moz-placeholder {
  color: #151f2e;
}
header .search :-ms-input-placeholder {
  color: #151f2e;
}

header .search .tips {
  color: #151f2e;
  line-height: 26px;
  position: absolute;
  z-index: 99;
  top: calc(100% + 6px);
  left: 50%;
  display: none;
  width: 223px;
  max-width: 100%;
  padding: 22px 0;
  transform: translateX(-50%);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.34);
}

header .search .tips .tip {
  padding: 0 34px;
  cursor: pointer;
}

header .search .tips b {
  font-weight: 500;
}

.call-btn-pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(209, 202, 80, 1),
    rgba(255, 240, 12, 1),
    rgba(210, 202, 80, 1)
  );
  box-shadow: 0 0 10px rgba(255, 240, 12, 0.7);
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.phone-icon {
  width: 24px;
  height: 24px;
  fill: #000;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 240, 12, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 240, 12, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 240, 12, 0);
  }
}
.main-menu-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.main-menu-row .menu {
  flex: 1 1 auto;
  font-size: 14px;
}
.main-menu-row .menu ul {
  display: flex;
  gap: clamp(20px, 3.5vw, 60px) !important;
  list-style: none;
  margin: 0 42px;
  padding: 0;
}

.main-menu-row .menu ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s ease;
}

.main-menu-row .menu ul li a:hover {
  color: #555;
}

.menu-item-has-children {
  position: relative !important;
}

.sub-menu {
  position: absolute;
  display: inline-block !important;
  width: 250px;
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border-top: none;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  top: 60px !important;
  left: 0px !important;
}

.sub-menu .sub-menu {
  top: 0 !important;
  left: 100% !important;
  border-top: none;
  margin-left: 3px;
}
.sub-menu .sub-menu::before,
.sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
}

.menu-item-has-children:hover > .sub-menu,
.sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  white-space: nowrap;
}

.sub-menu li a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 13px;
}

.sub-menu li:hover > a {
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  color: #000 !important;
}

.main-menu-row .online-payment {
  background: linear-gradient(
    180deg,
    rgba(209, 202, 80, 1) 0%,
    rgba(255, 240, 12, 1) 50%,
    rgba(210, 202, 80, 1) 100%
  );
  color: #000;
  padding: 20px 50px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  margin: 0;
  flex-shrink: 0;
}

.main-menu-row .online-payment:hover {
  transition: all 0.3s;
  color: #2804ab;
}
/* ===== Основная обёртка ===== */
.visa__page {
  color: #222;
  background-color: #fff;
  padding: 0;
  margin: 0;
}

/* ===== Hero ===== */
.hero,
.intro,
.includes,
.visa__specific,
.advantages,
.documents,
.process,
.why-us,
.destinations,
.cta-banner {
  padding: 50px 0;
}

.hero__container {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hero__image {
  flex: 0.5;
}

.hero__image--visa {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.hero__content {
  flex: 0.5;
}

.hero__title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero__subtitle {
  font-size: 18px;
  /* margin-bottom: 30px; */
}

.hero__info {
  margin-bottom: 20px;
}

.hero__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hero__info-item {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.4;
}

.hero__info-item::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "ℹ️";
}

.hero__info-item--submit::before {
  content: "📬";
}

.hero__info-item--remote::before {
  content: "🌐";
}

.hero__info-item--term::before {
  content: "⏳";
}

.hero__info-item--payment::before {
  content: "💳";
}

.hero__info-item--delivery::before {
  content: "📦";
}

.hero__info-label {
  font-weight: 600;
  color: #000;
}

.hero__info-value {
  color: #333;
}

.hero__tooltip {
  display: inline-block;
  position: relative;
  margin-left: 6px;
}

.hero__tooltip__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../img/icon/ic_tooltip.webp") no-repeat center;
  background-size: contain;
  cursor: pointer;
  vertical-align: middle;
}

.hero__tooltip__text {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.hero__tooltip:hover .hero__tooltip__text {
  display: block;
}

.hero__buttons {
  display: flex;
  gap: 16px;
}

.hero__button {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.hero__button--primary {
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  color: #000;
}

.hero__button--secondary {
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  color: #000;
  border: 2px solid #000;
}

.hero__button--pulse {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero__button--pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 90%;
  width: 20px;
  height: 20px;
  background: var(--light);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: pulse-inner 2s linear 0.4s infinite;
  mix-blend-mode: screen;
}

.hero__button--primary,
.hero__button--secondary {
  position: relative;
  z-index: 2;
}

@keyframes pulse-inner {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }
}
/* ===== Intro ===== */
.intro__container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 15px;
}

.intro__image {
  float: right;
  width: 40%;
  margin: 0 0 20px 20px;
  shape-outside: inset(0 round 12px);
  shape-margin: 10px;
}

.intro__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  object-fit: contain;
}

.intro__content {
  overflow: hidden;
}

.intro__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
  text-align: justify;
}

/* ===== Advantages ===== */
.advantages__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.advantages__title {
  font-size: 28px;
  margin-bottom: 40px;
}

.advantages__list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.advantages__item {
  flex: 1;
}

.advantages__icon,
.visa__specific-icon,
.process__icon {
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
}

.advantages__icon--form::before {
  background-image: url(../img/icon/questionnaire.webp);
}

.advantages__icon--photo::before {
  background-image: url(../img/icon/photo.webp);
}

.advantages__icon--submit::before {
  background-image: url(../img/icon/doc-accept.webp);
}

.advantages__text {
  font-size: 16px;
}

/* Блок особенностей визы */
.visa__specific-container,
.process__container,
.why-us__container,
.faq__container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 15px;
}

.visa__specific-title,
.process__title,
.why-us__title {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.visa__specific-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.visa__specific-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.visa__specific-card:hover {
  transform: translateY(-5px);
}
.visa__specific-icon::before,
.process__icon::before,
.why-us__icon::before,
.process__icon::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.visa__specific-icon--biometry::before {
  background-image: url(../img/icon/biometrics.webp);
}
.visa__specific-icon--docs::before {
  background-image: url(../img/icon/docs_req.webp);
}
.visa__specific-icon--time::before {
  background-image: url(../img/icon/time_wait.webp);
}
.visa__specific-icon--checking::before {
  background-image: url(../img/icon/double_checking.webp);
}
.visa__specific-subtitle {
  font-size: 18px;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
}

.visa__specific-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ===== Documents ===== */
.documents__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.documents__title {
  font-size: 28px;
  margin-bottom: 40px;
}

.documents__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.documents__item {
  flex: 0 1 140px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.documents__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.documents__text {
  font-size: 16px;
  font-weight: 500;
}

.documents__tooltip {
  position: absolute;
  bottom: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: #fffdf0;
  color: #000;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.documents__item:hover .documents__tooltip {
  opacity: 1;
}

/* ====== Иконки, пока просто фоны ===== */
.documents__icon--passport::before {
  background-image: url(../img/icon/passport.webp);
}

.documents__icon--photo::before {
  background-image: url(../img/icon/photo.webp);
}

.documents__icon--insurance::before {
  background-image: url(../img/icon/insurance.webp);
}

.documents__icon--income::before {
  background-image: url(../img/icon/doc-accept.webp);
}

.documents__icon--tickets::before {
  background-image: url(../img/icon/ticket.webp);
}

.documents__icon--children::before {
  background-image: url(../img/icon/child.webp);
}

.process__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.process__item {
  flex: 0 1 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process__icon--consult::before {
  background-image: url(../img/icon/application.webp);
}

.process__icon--documents::before {
  background-image: url(../img/icon/doc-accept.webp);
}

.process__icon--submit::before {
  background-image: url(../img/icon/office_visa.webp);
}

.process__icon--ready::before {
  background-image: url(../img/icon/visa.webp);
}

.process__text {
  font-size: 16px;
  line-height: 1.4;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.why-us__card {
  background: var(--light);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 170px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
  border: 1px solid rgba(16, 24, 40, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.why-us__card:hover,
.why-us__card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
}

.why-us__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #222;
  max-width: 240px;
}

.why-us__icon {
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #000;
  position: relative;
}

.why-us__icon--accompany::before {
  background-image: url(../img/icon/accompany.webp);
}
.why-us__icon--allpack::before {
  background-image: url(../img/icon/allpack.webp);
}
.why-us__icon--moreclients::before {
  background-image: url(../img/icon/visa.webp);
}
.why-us__icon--convpay::before {
  background-image: url(../img/icon/wallet.webp);
}
.why-us__icon--allover::before {
  background-image: url(../img/icon/office.webp);
}
.why-us__icon--confidentiality::before {
  background-image: url(../img/icon/privacy.webp);
}

/* ===== Includes ===== */
.includes__container {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.includes__title {
  font-size: 28px;
  margin-bottom: 40px;
}

.includes__list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.includes__item {
  flex: 1;
}

.includes__icon {
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
}

.includes__icon::before,
.documents__icon::before,
.advantages__icon::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}
.includes__icon--form::before {
  background-image: url(../img/icon/questionnaire.webp);
}

.includes__icon--photo::before {
  background-image: url(../img/icon/photo.webp);
}

.includes__icon--docs::before {
  background-image: url(../img/icon/doc-accept.webp);
}

.includes__icon--center::before {
  background-image: url(../img/icon/office_visa.webp);
}

.includes__text {
  font-size: 16px;
}

/* ===== Seo block ===== */

.seo-cta {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px;
}

.seo-cta__title {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.seo-cta__container {
  width: 100%;
}

.seo-cta__content {
  display: block;
}

.seo-cta__text-wrapper {
  overflow: hidden;
}

.seo-cta-banner {
  float: right;
  width: 300px;
  margin: 0 0 20px 20px;
  shape-outside: inset(0 round 12px);
  shape-margin: 10px;
}

.seo-cta-banner__container {
  position: relative;
  background: url(../img/banner-center.webp) center/cover no-repeat;
  color: var(--light);
  border-radius: 12px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.seo-cta-banner__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.seo-cta-banner__overlay {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
}
.seo-cta__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1em;
  hyphens: auto;
  text-align: justify;
}

/* ===== Reviews ===== */
.reviews {
  padding-top: 30px;
}
.reviews__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews__title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.reviews__slick-wrapper {
  position: relative;
}

.reviews__slick {
  margin: 0 auto;
}

.reviews__item {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  margin: 0 10px;
  min-width: 300px;
}

.reviews__photo {
  width: 60px;
  height: 60px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 auto 12px;
  background-size: cover;
  background-position: center;
}

.reviews__photo--marina {
  background-image: url("../img/reviews/marina.webp");
}

.reviews__photo--elena {
  background-image: url("../img/reviews/elena.webp");
}

.reviews__photo--polina {
  background-image: url("../img/reviews/polina.webp");
}

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

.reviews__name {
  font-size: 14px;
  color: #888;
}

.reviews__slick-wrapper {
  position: relative;
}

.reviews__arrows {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  z-index: 10;
}

.reviews__arrow {
  pointer-events: all;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  color: var(--dark);
}

.reviews__arrow::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.reviews__arrow--left {
  margin-left: -40px;
}

.reviews__arrow--right {
  margin-right: -40px;
}

.reviews__arrow--left::after {
  transform: rotate(-135deg);
}

.reviews__arrow--right::after {
  transform: rotate(45deg);
}

.reviews__arrow--right--pulse {
  position: relative;
  z-index: 1;
}

.reviews__arrow--right--pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse-arrow 2s linear 0.4s infinite;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: screen;
}

@keyframes pulse-arrow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
}

/* Точки */
.slick-dots {
  text-align: center;
  margin-top: 10px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #ddd;
}

.slick-dots li.slick-active button:before {
  color: #ff6b4a;
}

/* 6. Популярные визы */
.destinations__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

.destinations__swiper {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  position: relative;
  padding: 0 40px;
}

.destinations__item {
  min-width: 300px;
  height: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.destinations__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

.destinations__country {
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.destinations__item--italy {
  background-image: url("../img/country/italy.webp");
}

.destinations__item--portugal {
  background-image: url("../img/country/portugal.webp");
}

.destinations__item--poland {
  background-image: url("../img/country/poland.webp");
}

.destinations__item--greece {
  background-image: url("../img/country/greece.webp");
}

.destinations__item--bulgaria {
  background-image: url("../img/country/bulgaria.webp");
}

.destinations__item--czech {
  background-image: url("../img/country/czech.webp");
}

.destinations__item--denmark {
  background-image: url("../img/country/denmark.webp");
}

.destinations__item--estonia {
  background-image: url("../img/country/estonia.webp");
}

.destinations__item--finland {
  background-image: url("../img/country/finland.webp");
}

.destinations__item--france {
  background-image: url("../img/country/france.webp");
}

.destinations__item--croatia {
  background-image: url("../img/country/croatia.webp");
}

.destinations__item--hungary {
  background-image: url("../img/country/hungary.webp");
}

.destinations__item--latvia {
  background-image: url("../img/country/latvia.webp");
}

.destinations__item--lithuania {
  background-image: url("../img/country/lithuania.webp");
}

.destinations__item--norway {
  background-image: url("../img/country/norway.webp");
}

.destinations__item--romania {
  background-image: url("../img/country/romania.webp");
}

.destinations__item--slovakia {
  background-image: url("../img/country/slovakia.webp");
}

.destinations__item--spain {
  background-image: url("../img/country/spain.webp");
}

.destinations__button {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  color: #000;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

.destinations__button:hover {
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  color: #000;
}

.destinations__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 15px;
  height: 15px;
  background: var(--light);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: destinations-pulse 2s linear 0.4s infinite;
  mix-blend-mode: screen;
}

@keyframes destinations-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }
}

.destinations__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.destinations__arrow--left {
  left: 0;
}

.destinations__arrow--right {
  right: 0;
}

.destinations__arrow::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.destinations__arrow--left::after {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.destinations__arrow--right::after {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* 7. FAQ */
.faq {
  padding-bottom: 30px;
}
.faq__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

.faq__list {
  max-width: 1024px;
  margin: 0 auto;
}

.faq__item {
  padding: 20px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  color: #000;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 60px;
}

.faq__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq__item::before {
  content: "?";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.faq__question {
  position: relative;
  padding-left: 60px;
  cursor: pointer;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding-left: 60px;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
  color: var(--gray);
}

.faq__item.active .faq__answer {
  max-height: 120px;
  padding-top: 14px;
}

.faq__item::before {
  transition: transform 0.3s ease;
}

.faq__item.active::before {
  transform: translateY(-50%) rotate(90deg);
  background: linear-gradient(90deg, #d1ca50, #fff00c, #d2ca50);
  color: #000;
}

.faq__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: var(--light);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: faq-pulse 2s linear 0.4s infinite;
  mix-blend-mode: screen;
}

@keyframes faq-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.25;
  }
}

.faq__item.active::after {
  display: none;
}

.cta-banner {
  padding: 40px 20px;
  color: var(--light);
  text-align: center;
}

.cta-banner--primary {
  background-color: var(--primary);
  max-width: 1024px;
  margin: 0 auto;
}

.cta-banner--secondary {
  background-color: var(--secondary);
  max-width: 1024px;
  margin: 0 auto;
}

.cta-banner__container--primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  flex-wrap: wrap;
}

.cta-banner__image--primary img {
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 12px;
}

.cta-banner__content--primary {
  flex: 1;
  min-width: 260px;
}

.cta-banner__title {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-banner__text {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-banner__image--primary {
  margin: 0 20px;
}
.cta-banner__button--primary {
  background-color: var(--success);
  color: var(--light);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
}

.cta-banner__button--secondary {
  display: inline-block;
  background-color: var(--light);
  color: var(--primary);
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.cta-banner__button--primary:hover {
  background-color: var(--greenline);
}

.cta-banner--secondary .cta-banner__button {
  color: var(--secondary);
}

.cta-banner__button--pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.cta-banner--dark {
  background-color: var(--dark);
  max-width: 1024px;
  margin: 0 auto;
}

.cta-banner__button__dark {
  position: relative;
  display: inline-block;
  background-color: var(--gray);
  color: var(--light);
  padding: 13px 70px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.cta-banner__button__dark--pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--light);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: banner-pulse-inner 2s linear 0.4s infinite;
  mix-blend-mode: screen;
}

@keyframes banner-pulse-inner {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
}

.map {
  padding: 60px 20px;
}

.map__container {
  max-width: 1024px;
  margin: 0 auto;
}

.map__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.map__iframe-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map__iframe iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map__iframe:first-child {
  border-right: 4px solid #0074d9;
  margin-right: -20px;
}
