/* Дизайн 6: Split-Screen (Сплит-экран) */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg-dark: #121214;
    --bg-light: #f4f4f6;
    --accent: #ff5722; /* Сочный акцент */
    --text-main: #18181b;
    --text-muted: #71717a;
    --border: #e4e4e7;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Обертка сплит-экрана */
.split-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ЛЕВАЯ ЧАСТЬ (фиксированная красивая панель) */
.split-left {
    width: 45%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 60px;
    color: #fff;
    z-index: 10;
    overflow: hidden;
}

.left-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 80% 30%;
    filter: brightness(0.45);
    z-index: -1;
    transform: scale(1.05);
    transition: 10s ease;
}

.left-bg-img:hover {
    transform: scale(1);
}

.logo-profile-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.profile-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.brand-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.left-content h1 {
    font-size: 52px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    line-height: 1.1;
    margin-bottom: 15px;
}

.left-content h1 span {
    color: var(--accent);
}

.tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 400px;
    margin-bottom: 30px;
}

.left-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.socials-row {
    display: flex;
    gap: 12px;
    font-size: 18px;
}

.socials-row a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.socials-row a:hover {
    background: var(--accent);
}

.btn-pulse {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
    transition: 0.3s;
}

.btn-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.6);
}

/* ПРАВАЯ ЧАСТЬ (прокручиваемая лента контента) */
.split-right {
    width: 55%;
    margin-left: 45%;
    background: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.s-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

.s-section h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    color: var(--text-main);
}

.s-section p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.photo-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.photo-grid-mini img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.photo-grid-mini img:hover {
    transform: scale(1.03);
}

/* Мозаика услуг */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

/* Стили для темного чередующегося раздела (Блок 02) */
.s-section.dark-section {
    background: #18181b; /* Глубокий темный фон */
    padding: 50px 40px;
    border-radius: 24px;
    color: #fff;
    margin: 0 -40px; /* Расширяем слегка за границы паддингов parent-контейнера */
}

.s-section.dark-section .section-tag {
    color: var(--accent);
}

.s-section.dark-section h2 {
    color: #fff;
}

.s-section.dark-section p {
    color: #a1a1aa;
}

/* Карточки внутри темного раздела */
.s-section.dark-section .m-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.s-section.dark-section .m-card::before {
    opacity: 0.35; /* Делаем фотографии более заметными и сочными */
    filter: brightness(0.9);
}

.s-section.dark-section .m-card:hover::before {
    opacity: 0.5;
    transform: scale(1.05);
}

.s-section.dark-section .m-card h3 {
    color: #fff;
}

.s-section.dark-section .m-card p {
    color: #d4d4d8;
}

.s-section.dark-section .m-price {
    color: #fff;
}

.m-card {
    position: relative;
    background: var(--bg-light);
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    z-index: 1;
}

.m-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    transition: 0.3s;
}

.m-card.card-speech::before {
    background-image: url('images/artifact_07.jpg');
}

.m-card.card-sound::before {
    background-image: url('images/artifact_05.jpg');
}

.m-card.card-massage::before {
    background-image: url('images/artifact_03.jpg');
}

.m-card:hover::before {
    opacity: 0.25;
    transform: scale(1.05);
}

.m-icon {
    font-size: 24px;
    color: var(--accent);
}

.m-card h3 {
    font-size: 18px;
    font-weight: 700;
}

.m-card p {
    font-size: 13px;
    color: var(--text-muted);
    flex-grow: 1;
}

.m-price {
    font-weight: 800;
    font-size: 16px;
    color: var(--text-main);
}

/* Горизонтальная прокрутка фото */
.horizontal-photo-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-top: 10px;
}

.horizontal-photo-scroll img {
    width: 240px;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    flex-shrink: 0;
    cursor: pointer;
    transition: 0.3s;
}

.horizontal-photo-scroll img:hover {
    transform: scale(1.03);
}

/* Карусель документов */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.docs-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--border);
    width: 100%;
}

.docs-carousel::-webkit-scrollbar {
    height: 6px;
}

.docs-carousel::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 3px;
}

.docs-carousel::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.docs-carousel .doc-thumb {
    min-width: 220px;
    flex-shrink: 0;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.docs-carousel .doc-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.docs-carousel .doc-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.docs-carousel .doc-thumb span {
    display: block;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
}

.carousel-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Уникальная форма */
.unique-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.unique-form input {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-light);
    outline: none;
    font-family: inherit;
    font-size: 15px;
}

.unique-form input:focus {
    border-color: var(--accent);
}

.btn-submit {
    background: var(--text-main);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--accent);
}

.footer-note {
    margin-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

#modalCaption {
    position: absolute;
    bottom: 25px;
    color: #fff;
    font-weight: 500;
}

/* Адаптивность под телефоны */
@media (max-width: 1024px) {
    .split-wrapper {
        flex-direction: column;
    }
    .split-left {
        width: 100%;
        position: relative;
        height: auto;
        padding: 40px 20px;
    }
    .split-right {
        width: 100%;
        margin-left: 0;
        padding: 40px 20px 80px 20px;
    }
    .mosaic-grid, .docs-grid, .form-row {
        grid-template-columns: 1fr;
    }
    .left-content h1 {
        font-size: 38px;
    }

    /* Мобильная карусель документов: видно по 2 карточки, высота меньше половины экрана */
    .docs-carousel .doc-thumb {
        min-width: 140px;
        max-width: 150px;
    }

    .docs-carousel .doc-thumb img {
        height: 120px;
    }

    .docs-carousel {
        max-height: 180px;
    }
}
/* Добавления для кнопок вызова */
.about-action-row, .booking-direct-call {
    margin: 10px 0 5px 0;
}

.btn-call-inline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 14px 24px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
    border: 1px solid #bae6fd;
    text-decoration: none;
}

.btn-text-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-number-highlight {
    display: inline-block;
    font-size: 17px;
    font-weight: 800;
    color: #0284c7;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-call-inline.accent-call .phone-number-highlight {
    color: #c2410c;
}

.btn-call-inline:hover {
    background-color: #bae6fd;
    transform: translateY(-2px);
}

.btn-call-inline.accent-call {
    background-color: #ffedea;
    color: var(--accent);
    border-color: #fed7aa;
}

.btn-call-inline.accent-call:hover {
    background-color: #fed7aa;
}
