/* ========== NAV DROPDOWN "SERVICES" ========== */

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  position: relative;
}

/* Кнопка Services */

.nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
  /* font: inherit; */
  /* color: inherit; */
  cursor: pointer;
}

.nav-dropdown-arrow {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Состояние active */

.nav-item.nav-has-dropdown.is-active > .nav-link--dropdown,
.nav-dropdown-link.is-active {
  color: #ff2c7a;
}

/* При открытом дропдауне поворачиваем стрелку */

.nav-item.nav-has-dropdown.is-open > .nav-link--dropdown .nav-dropdown-arrow {
  transform: rotate(225deg);
}

/* Сам дропдаун */

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  margin-top: 8px;
  background-color: #000000;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 1200;
}

.nav-dropdown-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.94rem;
  color: #f5f5f5;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-link:hover {
  background-color: #ff2c7a;
  color: #ffffff;
}

/* Когда открыт */

.nav-item.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Мобилка: делаем дропдаун "в потоке" */

@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    margin-top: 4px;
    box-shadow: none;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.9);
  }

  .nav-dropdown-link {
    padding: 6px 12px;
  }
}




/* ========== HERO PHOTO НА СТРАНИЦЕ VERHUISLIFT ========== */

.service-hero-photo {
  padding: 24px 0 32px;
  background-color: #f5f5f5; /* можно сменить на #B9B9B9, если хочешь */
}

.service-hero-photo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-hero-photo-frame {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.service-hero-photo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Мобилка */

@media (max-width: 768px) {
  .service-hero-photo {
    padding: 18px 0 24px;
     padding:0px;
  }

  .service-hero-photo-inner {
    padding-inline: 0px;
  }

  .service-hero-photo-frame {
    border-radius: 0px;
  }
}



/* ========== SERVICE BENEFITS (3 CARDS) ========== */

.service-benefits-section {
  padding: 40px 0 60px;
  background-color: #ffffff;
}

.service-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-benefits-header {
  text-align: center;
  margin-bottom: 32px;
}

.service-benefits-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff2c7a;
  margin-bottom: 6px;
}

.service-benefits-title {
  font-size: 1.6rem;
}

/* сетка карточек */

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* карточка */

.service-benefit-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 28px 26px 30px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.service-benefit-heading {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.service-benefit-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #55556a;
}

/* адаптив */

@media (max-width: 900px) {
  .service-benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-benefit-card {
    padding: 22px 20px 24px;
  }
}



/* ========== PRICING / TARIFFS (3 CARDS) ========== */

.pricing-section {
  padding: 60px 0 70px;
  background-color: #f9fafb;
}

.pricing-section--vh {
  /* если нужно чуть изменить фон именно для verhuislift */
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 36px;
}

.pricing-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff2c7a;
  margin-bottom: 6px;
}

.pricing-title {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.pricing-subtitle {
  font-size: 0.98rem;
  color: #6b7280;
}

/* сетка карточек */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* карточка тарифа */

.pricing-card {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 22px;
}

.pricing-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-duration {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.pricing-price {
  font-size: 2.3rem;
  font-weight: 700;
  color: #e11d48; /* красный/розовый как на скрине */
}

/* список преимуществ внутри карточки */

.pricing-features {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  color: #4b5563;
}

.pricing-features li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 8px;
}

/* кнопка в карточке */

.pricing-cta {
  margin-top: 18px;
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #ff2c7a;
  color: #ffffff;
  transition: background-color 0.18s ease, transform 0.15s ease,
              box-shadow 0.15s ease;
}

.pricing-card:hover .pricing-cta {
  background-color: #ff3f86;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 44, 122, 0.25);
}

/* нижние заметки */

.pricing-notes {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  font-size: 0.85rem;
  color: #b91c1c; /* красный, как ты просил для notes */
}

.pricing-note::before {
  content: "• ";
}

/* адаптив */

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-card {
    padding: 22px 20px 20px;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .pricing-inner {
    padding-inline: 16px;
  }

  .pricing-notes {
    align-items: flex-start;
    text-align: left;
  }
}
