/* Основные сбросы */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.4;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
}

/* Анимация плавного появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Основной контейнер */
.main {
    position: relative;
    min-height: 100vh;
}

/* Блоки сайта */
.section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Первый блок - Secret Zali */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(26, 10, 26, 0.9)), 
                url('1.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.logo-container {
    margin-bottom: 80px;
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.logo-title {
    font-size: 6rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5),
                 0 0 60px rgba(255, 105, 180, 0.3),
                 0 0 90px rgba(255, 105, 180, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.secret {
    font-family: 'Times New Roman', Times, serif;
    font-size: 10rem;
    letter-spacing: 8px;
    color: #ffffff;
    display: block;
    text-align: right;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: -10px; /* Уменьшили наезд */
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 
        3px 3px 0 rgba(255, 105, 180, 0.3),
        6px 6px 0 rgba(255, 20, 147, 0.2);
}

.zali {
    font-family: 'Mr HamiltoneG', cursive;
    font-size: 8.5rem;
    color: #ff69b4;
    text-shadow: 
        0 0 20px #ff69b4,
        0 0 40px #ff69b4,
        0 0 60px #ff69b4,
        2px 2px 0 rgba(255, 255, 255, 0.1);
    display: block;
    position: relative;
    z-index: 2;
    text-align: right;
    width: 85%;
    margin-top: -20px; /* Сместили Zali ниже, уменьшив отрицательный margin */
    margin-left: auto;
    letter-spacing: 4px;
    transform: translateX(-5%);
    animation: zaliGlow 3s ease-in-out infinite alternate;
}

@keyframes zaliGlow {
    from {
        text-shadow: 
            0 0 20px #ff69b4,
            0 0 40px #ff69b4,
            0 0 60px #ff69b4,
            2px 2px 0 rgba(255, 255, 255, 0.1);
    }
    to {
        text-shadow: 
            0 0 25px #ff69b4,
            0 0 50px #ff69b4,
            0 0 75px #ff69b4,
            0 0 100px rgba(255, 105, 180, 0.5),
            2px 2px 0 rgba(255, 255, 255, 0.1);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 600px;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 3;
}

.book-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    text-decoration: none;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3),
                0 0 40px rgba(255, 105, 180, 0.2);
    margin-top: 40px;
    z-index: 3;
}

.book-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.5),
                0 0 60px rgba(255, 105, 180, 0.3);
}

.book-button:active {
    transform: translateY(-2px);
}

.book-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Второй блок - Прайс-лист */
.pricing-section {
    background: linear-gradient(180deg, #1a0a1a 0%, #0a0a0a 100%);
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px; /* Уменьшили отступ снизу */
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff69b4, transparent);
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(20, 10, 20, 0.7);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 105, 180, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead {
    background: linear-gradient(90deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.1));
}

.price-table th {
    padding: 25px 20px;
    text-align: left;
    font-size: 1.4rem;
    color: #ff69b4;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 105, 180, 0.3);
}

.price-table th:first-child {
    width: 70%;
}

.price-table th:last-child {
    width: 30%;
    text-align: right;
}

.price-table td {
    padding: 22px 20px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.price-table tr:hover td {
    background: rgba(255, 105, 180, 0.05);
    color: #fff;
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #ff69b4;
    font-size: 1.3rem;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-note {
    text-align: center;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-style: italic;
}

/* Третий блок - Футер с соцсетями */
.footer-section {
    background: #0a0a0a;
    padding: 30px 20px 25px; /* Уменьшили: 30px сверху, 20px по бокам, 25px снизу */
    text-align: center;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
    position: relative;
    min-height: auto; /* Убрали минимальную высоту */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Убрали .footer-title */

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px; /* Уменьшили расстояние между блоками */
    margin-bottom: 30px; /* Уменьшили отступ снизу */
}

.footer-info, .footer-social {
    flex: 1;
    min-width: 300px;
}

.footer-info-title {
    display: none; /* Скрыли заголовок */
}

.footer-social-title {
    font-size: 1.2rem; /* Уменьшили размер шрифта */
    color: #ff69b4;
    margin-bottom: 20px; /* Уменьшили отступ снизу */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Уменьшили расстояние между элементами */
    align-items: center;
}

.city-name {
    font-size: 2rem; /* Уменьшили размер шрифта */
    color: #fff;
    font-weight: 300;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Уменьшили межбуквенное расстояние */
}

.city-name::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Подняли линию ближе */
    left: 50%;
    transform: translateX(-50%);
    width: 50px; /* Уменьшили длину линии */
    height: 2px;
    background: #ff69b4;
}

.address {
    display: none; /* Скрыли адрес */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Уменьшили расстояние между иконками */
    margin-top: 15px; /* Уменьшили отступ сверху */
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 80px;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.icon-square {
    width: 50px; /* Уменьшили размер иконок */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px; /* Уменьшили отступ снизу */
    font-size: 1.5rem; /* Уменьшили размер иконок */
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.icon-square::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-icon:hover .icon-square::before {
    transform: translateY(0);
}

.social-icon:hover .icon-square {
    border-color: #ff69b4;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.whatsapp .icon-square {
    color: #25D366;
}

.instagram .icon-square {
    color: #E1306C;
}

.telegram .icon-square {
    color: #0088cc;
}

.social-name {
    font-size: 0.8rem; /* Уменьшили размер текста */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.3), transparent);
    margin: 25px 0; /* Уменьшили отступы сверху и снизу */
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem; /* Уменьшили размер шрифта */
    text-align: center;
    line-height: 1.5; /* Уменьшили межстрочное расстояние */
    margin-top: 15px; /* Уменьшили отступ сверху */
}

.copyright a {
    color: rgba(255, 105, 180, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.copyright a:hover {
    color: #ff69b4;
    text-decoration: underline;
}

/* Боковое меню */
.nav-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.nav-button {
    width: 50px;
    height: 50px;
    background: rgba(20, 10, 20, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.2);
    color: #ff69b4;
    font-size: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-button:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    padding: 40px 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-right: 1px solid rgba(255, 105, 180, 0.1);
    backdrop-filter: blur(10px);
}

.nav-overlay.active .nav-content {
    transform: translateX(0);
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.nav-close {
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0 10px;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.nav-close:hover {
    color: #ff69b4;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-item {
    padding: 15px 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover {
    color: #ff69b4;
    padding-left: 10px;
}

.nav-item.active {
    color: #ff69b4;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #ff69b4;
    border-radius: 2px;
    box-shadow: 0 0 10px #ff69b4;
}

/* ================== Более компактное модальное окно проверки бонусов ================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a0a1a;
    border-radius: 12px;
    max-width: 400px; /* Уменьшили максимальную ширину */
    width: 100%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    border: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.1);
    max-height: 90vh; /* Ограничиваем высоту */
    overflow-y: auto; /* Добавляем прокрутку если нужно */
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px; /* Уменьшили отступы */
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
    position: relative;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 12px 12px 0 0;
}

.modal-title {
    font-size: 1.5rem; /* Уменьшили размер шрифта */
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.modal-close {
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0 10px;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff69b4;
}

.modal-body {
    padding: 20px 25px; /* Уменьшили отступы */
}

.bonus-form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Уменьшили расстояние между элементами */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Уменьшили расстояние */
}

.form-group label {
    font-size: 1rem; /* Уменьшили размер шрифта */
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 8px; /* Сделали скругление меньше */
    padding: 12px 16px; /* Уменьшили отступы внутри */
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.check-button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px; /* Уменьшили высоту */
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px; /* Уменьшили отступ сверху */
}

.check-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.bonus-result {
    margin-top: 20px;
    min-height: 60px;
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 105, 180, 0.3);
    border-top-color: #ff69b4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 15px; /* Уменьшили отступы */
    text-align: center;
    color: #dc3545;
}

.error-message i {
    font-size: 2rem; /* Уменьшили размер иконки */
    margin-bottom: 12px; /* Уменьшили отступ снизу */
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    padding: 15px; /* Уменьшили отступы */
    color: #28a745;
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Уменьшили расстояние */
    margin-bottom: 15px; /* Уменьшили отступ */
}

.bonus-header i {
    font-size: 1.8rem; /* Уменьшили размер иконки */
}

.bonus-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px; /* Уменьшили отступы */
    margin-top: 10px; /* Уменьшили отступ сверху */
}

.bonus-card {
    text-align: center;
    padding: 12px; /* Уменьшили отступы */
    background: linear-gradient(135deg, #1a0a1a, #2a1a2a);
    border-radius: 8px;
    margin-bottom: 12px; /* Уменьшили отступ снизу */
}

.bonus-card-number {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.bonus-amount {
    font-size: 2rem; /* Уменьшили размер бонусов */
    font-weight: 700;
    color: #ff69b4;
    margin: 8px 0; /* Уменьшили отступы */
}

.bonus-amount .currency {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

.bonus-client {
    font-size: 1.1rem; /* Уменьшили размер шрифта */
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px; /* Уменьшили отступ сверху */
}

.bonus-info-text {
    font-size: 0.85rem; /* Уменьшили размер шрифта */
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px; /* Уменьшили отступ сверху */
}

.bonus-info-text p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-info-text i {
    color: #ff69b4;
}

.bonus-info {
    margin-top: 20px; /* Уменьшили отступ сверху */
    padding-top: 15px; /* Уменьшили отступ сверху */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem; /* Уменьшили размер шрифта */
    margin: 6px 0; /* Уменьшили отступы */
    display: flex;
    align-items: flex-start;
    gap: 8px; /* Уменьшили расстояние */
}

.bonus-info i {
    color: #ff69b4;
    margin-top: 2px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .secret {
        font-size: 8rem;
    }
    
    .zali {
        font-size: 6.8rem;
        width: 80%;
        transform: translateX(-7%);
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-info, .footer-social {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .logo-title {
        font-size: 5rem;
        margin-bottom: 40px;
    }
    
    .secret {
        font-size: 6rem;
        letter-spacing: 6px;
        margin-bottom: -8px; /* Адаптивный наезд */
    }
    
    .zali {
        font-size: 5.1rem;
        width: 75%;
        margin-top: -15px; /* Адаптивное смещение */
        transform: translateX(-8%);
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .book-button {
        padding: 18px 50px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .pricing-container {
        padding: 20px;
    }
    
    .price-table th {
        font-size: 1.2rem;
        padding: 20px 15px;
    }
    
    .price-table td {
        font-size: 1.1rem;
        padding: 18px 15px;
    }
    
    /* Адаптивность модального окна */
    .modal-content {
        max-width: 85%; /* Увеличили на мобильных для удобства */
    }
    
    .modal-header {
        padding: 18px 20px;
    }
    
    .modal-body {
        padding: 18px 20px;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .city-name {
        font-size: 1.8rem;
    }
    
    .footer-section {
        padding: 25px 20px 20px; /* Еще уменьшили на мобильных */
    }
    
    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 4rem;
    }
    
    .secret {
        font-size: 4.5rem;
        letter-spacing: 4px;
        margin-bottom: -5px; /* Адаптивный наезд */
    }
    
    .zali {
        font-size: 3.8rem;
        width: 70%;
        margin-top: -10px; /* Адаптивное смещение */
        transform: translateX(-10%);
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .book-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price-table th,
    .price-table td {
        font-size: 1rem;
        padding: 15px 10px;
    }
    
    /* Адаптивность модального окна */
    .modal-content {
        max-width: 90%;
    }
    
    .form-group input {
        padding: 10px 14px;
        font-size: 1rem;
    }
    
    .check-button {
        padding: 13px;
        font-size: 1rem;
    }
    
    .bonus-amount {
        font-size: 1.6rem;
    }
    
    .city-name {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .footer-social-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .icon-square {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .icon-square {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 360px) {
    .secret {
        font-size: 3.5rem;
        margin-bottom: -3px; /* Минимальный наезд */
    }
    
    .zali {
        font-size: 3rem;
        width: 65%;
        margin-top: -5px; /* Минимальное смещение */
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .icon-square {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Обновляем меню */
.nav-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-item {
    padding: 15px 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    position: relative;
    text-align: center;
    font-weight: 500;
}

.nav-item:hover {
    color: #ff69b4;
    padding-left: 15px;
}

.nav-item.active {
    color: #ff69b4;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #ff69b4;
    border-radius: 2px;
    box-shadow: 0 0 10px #ff69b4;
}


/* ================== Стили для модального окна записи ================== */
.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appointment-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.5;
}

.book-appointment-button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.book-appointment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.appointment-result {
    margin-top: 20px;
    min-height: 60px;
}

.appointment-success {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.appointment-success p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.appointment-success i {
    color: #ff69b4;
    width: 20px;
}

.success-note {
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ff69b4 !important;
    font-weight: 500;
}

.appointment-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.appointment-info p {
    margin: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.appointment-info i {
    color: #ff69b4;
    margin-top: 2px;
}