/* Контейнер */
.contact-row {
    display: flex; /* все в ряд на ПК */
    flex-wrap: wrap; /* перенос строк при необходимости */
    gap: 15px;
    justify-content: flex-start; /* слева направо */
}

/* Кнопка */
.btn-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;

    color: #fff;
    text-decoration: none;

    background: #e67e22;
    border-radius: 50px;

    /* На ПК: по содержимому */
    width: auto;

    box-shadow: 0 6px 18px rgba(230, 126, 34, 0.6);
    transition: all 0.25s ease;
}

/* Иконка */
.btn-svg img {
    width: 20px;
    height: 30px;
    transition: 0.25s ease;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.7));
}

/* Hover */
.btn-svg:hover {
    transform: translateY(-3px);
    background: #d16200;
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.9);
}

.btn-svg:active {
    transform: translateY(1px);
    background: #7c3a00;
}

/* 📱 Телефон — строго 2 кнопки в ряд */
@media (max-width: 600px) {
    .contact-row {
        display: grid; /* меняем на сетку */
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .btn-svg {
        width: 100%; /* кнопки растягиваются на всю ячейку */
    }
}







/* Кнопка */
.call-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: #e67e22;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 7px 18px rgba(230, 126, 34, 0.8); /* лёгкое свечение */
    transition: 0.3s, box-shadow 0.3s;
}

/* Иконка */
.call-button::before {
    content: "📞";
    margin-right: 10px;
}

/* Hover эффект */
.call-button:hover {
    transform: translateY(-3px);
    background: #d16200;
    box-shadow: 0 10px 25px rgba(230, 126, 34, 1); /* ярче и больше */
}

/* Нажатие */
.call-button:active {
    transform: translateY(1px);
    background: #7c3a00;
    box-shadow: 0 5px 30px rgba(230, 126, 34, 1); /* ещё ярче и сильнее */
}





















 /* чтобы контент не уезжал под фиксированную шапку */
    body { padding-top: 56px; }
html, body {
    height: 100%;
}








    /* Скрытие / показ */
    @media (max-width: 767.98px) {
      .price-table {
        display: none;
      }
    }

    @media (min-width: 768px) {
      .price-cards {
        display: none;
      }
    }














































    .hero {
    width: 100%;
    min-height: 85vh;

   

    display: flex;
    align-items: center;

    position: relative;
    color: #fff;
}

/* Затемнение */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:  linear-gradient(rgba(26, 37, 47, 0.85), rgba(26, 37, 47, 0.85));
}

/* Контент */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;

    /* смещение вправо */
    transform: translateX(6%);
}

/* Мобилка */
@media (max-width: 768px) {

    .hero {
        min-height: 65vh;
    }

    .hero-content {
        transform: none;
        padding: 15px;
    }
}












.position-relative {
    position: relative;
}

#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.suggestion-item {
    padding: 12px;
    cursor: pointer;
}

.suggestion-item:hover {
    background: #f3f3f3;
}












/* Убираем синюю подсветку и фон у открытого вопроса */
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.accordion-button {
  background-color: transparent !important;
  color: inherit !important;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: inherit !important;
}












.status-number {
    font-size: 5rem; /* большие цифры */
    font-weight: bold;
    text-align: center;
  }
  .status-label {
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
  }