/* === Базові налаштування === */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}





/* === Основний блок === */
.pricing-section {
  max-width: 950px;
  margin: 0 auto;
  padding: 80px 20px;
  background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.03);
}

.pricing-section h1 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.subtitle {
  color: #ccc;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 60px;
}

/* === Текстовий вступ === */
.intro-text {
  color: #ddd;
  max-width: 820px;
  margin: 0 auto 60px auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-text .highlight {
  color: #b30000;
  font-weight: 600;
}

/* === Блоки цін === */
.pricing-block {
  position: relative;
  background: linear-gradient(145deg, #121212 0%, #0b0b0b 100%);
  border-radius: 14px;
  padding: 32px 28px 28px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #b30000, #8b0000);
  border-radius: 14px 0 0 14px;
  opacity: 0.7;
}

/* Іконка */
.pricing-block .icon {
  font-size: 34px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.pricing-block:hover .icon {
  background: #b30000;
  transform: scale(1.1);
}

/* Текст у карточках */
.pricing-block h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.pricing-block p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 1rem;
}

/* === Додатковий текст === */
.extra-text {
  color: #ccc;
  max-width: 800px;
  margin: 50px auto 30px auto;
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center;
}

.extra-text p {
  margin-bottom: 18px;
}

/* === Блок консультації === */
.consult-block {
  background: linear-gradient(145deg, #111, #0c0c0c);
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  text-align: center;
}

.consult-block p {
  font-size: 1.1rem;
  color: #ddd;
}

/* === Кнопка === */
.btn-book {
  background: #b30000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
  border: none;
}

.btn-book:hover {
  background: #a00000;
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(179, 0, 0, 0.4);
}

/* === Адаптив === */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 15px;
  }

  .intro-text,
  .extra-text {
    text-align: left;
  }

  .pricing-block {
    padding: 25px 22px;
  }

  .pricing-block .icon {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }

  .pricing-block h3 {
    font-size: 1.2rem;
  }
}



/* === Блок консультації === */
.consult-block {
  background: linear-gradient(145deg, #111, #0c0c0c);
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.consult-block:hover {
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.consult-block p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 8px;
}

/* === Кнопки соцмереж === */
.btn-social {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

/* Telegram */
.btn-social.telegram {
  background: #0088cc;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
}

.btn-social.telegram:hover {
  background: #00aaff;
  box-shadow: 0 0 22px rgba(0, 136, 204, 0.5);
  transform: translateY(-3px);
}

/* Instagram */
.btn-social.instagram {
  background: linear-gradient(45deg, #f09433, #bc1888);
  color: #fff;
  box-shadow: 0 0 15px rgba(240, 148, 51, 0.3);
}

.btn-social.instagram:hover {
  opacity: 0.95;
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(188, 24, 136, 0.5);
}

/* === Адаптив === */
@media (max-width: 576px) {
  .btn-social {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}





#pricing {
  background-color: #0e0e0e;
}

#pricing h2 {
  font-size: 2rem;
  line-height: 1.3;
}

#pricing .text-secondary {
  color: #bdbdbd !important;
}

#pricing .btn-danger {
  background-color: #8b0000;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#pricing .btn-danger:hover {
  background-color: #a00000;
  transform: translateY(-2px);
}


.modal-content {
  border-radius: 10px;
}

.modal-header .btn-close {
  filter: invert(1);
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(179, 0, 0, 0.3);
  border-color: #b30000;
}



/* Світліше тіло форми */
.modal-content {
  background-color: #3b3b3b !important;
  border-radius: 10px;
}

.form-control {
  background-color: #555 !important;  /* Світліше поле */
  color: #fff !important;             /* Білий текст */
  border-color: #777 !important;
}

.form-control::placeholder {
  color: #ddd !important;             /* Світло-сірі підказки */
}

.form-control:focus {
  border-color: #b30000 !important;
  box-shadow: 0 0 0 0.2rem rgba(179, 0, 0, 0.25);
}

.modal-header {
  background-color: #8b0000;
  border: none;
}

.btn-danger {
  background-color: #b30000;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-danger:hover {
  background-color: #a00000;
  transform: translateY(-1px);
}


/* === Попап акції === */
.promo-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.promo-popup.show {
  opacity: 1;
  visibility: visible;
}

.promo-content {
  background: #fff;
  color: #000;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  animation: popupSlide 0.6s ease;
}

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





/* ===============================
   8. АКЦИЯ
=============================== */
.promo-content h3 {
  margin-bottom: 10px;
  font-weight: 800;
}

.promo-btn {
  margin-top: 15px;
  background: #b30000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.3s;
}

.promo-btn:hover {
  background: #ff3b3b;
}

html {
  scroll-behavior: smooth;
}



/* === Red Promo Line (under header) === */



.discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff3b3b, #b30000);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  z-index: 2;
}

.col-sm-6.col-md-3.col-lg-4,
.tattoo-card,
.tattoo-item {
  position: relative;
}



.pricing-installments {
  margin: 40px 0;
  padding: 25px;
  background: #f9f9f9;
  border-radius: 12px;
}

.pricing-installments h2 {
  margin-bottom: 15px;
}

.pricing-installments ul {
  padding-left: 20px;
  margin: 15px 0;
}

.pricing-installments li {
  margin-bottom: 8px;
}

.pricing-installments-note {
  margin-top: 15px;
  font-weight: 500;
}


.footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #0b0b0b 100%);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: #9a9a9a;
  letter-spacing: 0.3px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-link {
  color: #e0e0e0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.75;
}

.footer-separator {
  color: #555;
}

.footer-rights {
  color: #777;
}

/* 📱 Мобилка */
@media (max-width: 576px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
