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

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #ff4b00 0%, #ff8c00 50%, #ffb300 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 700;
}

.text {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 15px;
    font-weight: 500;
}

/* Карусель (фото) */
.swiper {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: transparent;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: transparent;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

/* Стрелки (общие для всех Swiper) */
.swiper-button-prev,
.swiper-button-next {
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 1;
    color: #ff3c00;
}

/* Пагинация (точки) */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fffb00;
}

.call-button {
    display: inline-block;
    background: linear-gradient(180deg, #fffb00 0%, #ffb300 100%);
    color: #1a1a1a;
    font-size: 22px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 25px rgba(255, 200, 0, 0.5);
    border: none;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 200, 0, 0.7);
    animation: none;
}

.phone {
    margin-top: 15px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    opacity: 0.9;
    color: #fff;
}

/* Новые разделы */
.section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    text-align: left;
}

.section h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Прайс-лист */
.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
}

.service {
    font-weight: 600;
    font-size: 15px;
}

.price {
    font-weight: 900;
    font-size: 18px;
    color: #fffb00;
}

/* Отзывы (карусель) */
.reviews-carousel .swiper {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.reviews-carousel .swiper-slide {
    height: auto;
    background: transparent;
}

.review-card {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    text-align: left;
}

.review-avatar {
    font-size: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.review-body {
    flex: 1;
}

.review-text {
    font-size: 15px;
    font-style: italic;
    margin: 0 0 5px;
    opacity: 0.9;
}

.review-author {
    font-size: 13px;
    font-weight: 700;
    color: #fffb00;
    margin: 0;
}

/* Анимация появления */
.fade-in {
    animation: fadeIn 0.6s ease-out both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.faq-item {
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    padding: 15px;
}

.faq-question {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.faq-answer {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Кнопка вверху */
.top-btn {
    margin-bottom: 25px;
}
/* Мобильная адаптация */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    h1 {
        font-size: 28px;
    }
    .text {
        font-size: 14px;
    }
    .call-button {
        font-size: 20px;
        padding: 15px 30px;
    }
    .swiper-slide {
        height: 220px;
    }
}