
     
    /* Анимация появления снизу */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Основной контейнер блока */
    .glam-wrapper {
        background-color: #f8f8f8; /* Очень светло-серый фон вокруг блока */
        padding: 40px 20px;
        display: flex;
        justify-content: center;
    }

    .reviews-section {
        background: #ffffff; 
        padding: 50px 20px;
        font-family: 'Montserrat', sans-serif;
        color: #1a1a1a;
        text-align: center;
        max-width: 1300px;
        width: 100%;
        /* Закругляем КРАЯ ВСЕГО БЛОКА */
        border-radius: 50px; 
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
        position: relative;
        overflow: hidden;
    }

    /* Элегантный заголовок с анимацией */
    .reviews-title {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 20px;
        letter-spacing: -1px;
        animation: fadeInUp 0.8s ease-out;
    }

    .reviews-subtitle {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #D4AF37;
        margin-bottom: 60px;
        display: block;
        animation: fadeInUp 1s ease-out;
    }

    .reviews-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .review-card {
        background: #ffffff;
        border-radius: 30px; 
        padding: 50px 35px;
        width: 320px;
        border: 1px solid #f2f2f2;
        /* Мягкая тень для эффекта левитации */
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        animation: fadeInUp 1.2s ease-out;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Эффект при наведении — Гламур и Золото */
    .review-card:hover {
        transform: translateY(-20px) scale(1.02);
        border-color: #D4AF37;
        box-shadow: 0 30px 60px rgba(212, 175, 55, 0.1);
    }

    .stars {
        color: #D4AF37;
        margin-bottom: 25px;
        font-size: 22px;
        filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
    }

    .review-text {
        font-style: italic;
        font-weight: 300;
        line-height: 1.9;
        margin-bottom: 30px;
        color: #4a4a4a;
        font-size: 16px;
    }

    .review-author {
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 12px;
        color: #1a1a1a;
        position: relative;
    }

    /* Золотая линия под автором */
    .review-author::after {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: #D4AF37;
        margin: 10px auto 0;
    }

    .google-badge {
        margin-top: 70px;
        animation: fadeInUp 1.4s ease-out;
    }

    .google-link {
        color: #1a1a1a;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 15px 40px;
        border: 1px solid #1a1a1a;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .google-link:hover {
        background: #1a1a1a;
        color: #ffffff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    @media(max-width:460px){
         .glam-wrapper {
        background-color: #f9f7f7; /* Очень светло-серый фон вокруг блока */
        padding: 80px 10px;
        display: flex;
        justify-content: center;
    }
    }




















/* ОСНОВНЫЕ СТИЛИ (СВЕТЛЫЙ ГЛАМУР) */
.neo_footer_wrapper {
    background-color: #f4f4f4; /* Светло-серый фон вокруг */
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
    margin-top:150px;
}

.neo_footer_main {
    background-color: #ffffff; /* ЧИСТЫЙ БЕЛЫЙ БЛОК */
    max-width: 1200px;
    margin: 0 auto;
    /* СУПЕР ЗАКРУГЛЕНИЕ ВСЕГО БЛОКА */
    border-radius: 40px; 
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    /* Мягкая тень для объема */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.neo_col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Блок 1: Логотип */
.neo_brand {
    align-items: flex-start;
}

.neo_logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    letter-spacing: 4px;
    margin: 0 0 10px 0;
    color: #000;
    font-weight: 700;
}

.neo_logo span {
    color: #D4AF37; /* Золотой акцент */
    font-weight: 300;
}

.neo_slogan {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Блок 2: Контакты (Идеальное выравнивание) */
.neo_contacts {
    align-items: center;
    gap: 20px;
}

.neo_contact_item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    background: #f9f9f9;
    padding: 10px;
    /* ЗАКРУГЛЕНИЕ СТРОК */
    border-radius: 50px; 
    border: 1px solid #eee;
}

.neo_icon_circle {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
}

.neo_icon_circle img {
    width: 20px;
    /* Иконка черная на белом */
    filter: brightness(0); 
}

.neo_phone_icon {
    font-size: 18px;
}

.neo_link {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.neo_phone {
    color: #D4AF37; /* Телефон выделен золото */
    font-weight: 700;
}

.neo_link:hover {
    color: #D4AF37;
}

/* Блок 3: Действия */
.neo_actions {
    align-items: flex-end;
    gap: 20px;
}

.neo_social_grid {
    display: flex;
    gap: 10px;
}

.neo_soc_box {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #000;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* ЗАКРУГЛЕНИЕ ИКОНОК */
    border-radius: 15px; 
    transition: all 0.3s ease;
}

.neo_soc_box:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

/* Кнопка Home */
.neo_home_btn {
    text-decoration: none;
    background-color: #D4AF37;
    color: #fff;
    padding: 12px 25px;
    /* ЗАКРУГЛЕНИЕ КНОПКИ */
    border-radius: 50px; 
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.neo_home_btn img {
    width: 18px;
    filter: invert(1); /* Сделать иконку белой */
}

.neo_home_btn:hover {
    background-color: #000;
}

/* Копирайт */
.neo_copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}

/* АДАПТИВНОСТЬ (Mobile) */
@media (max-width: 992px) {
    .neo_footer_main {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .neo_brand, .neo_contacts, .neo_actions {
        align-items: center;
        width: 100%;
    }
}
 