/*
Theme Name: Центр Здоровья
Theme URI: https://centr-zdorovya.ru
Author: ITLife
Author URI: https://it-life74.ru
Description: Премиальная тема Центра Здоровья в Чебаркуле. Полноэкранные parallax секции, сауна, бассейн, массаж, мероприятия.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: centrzdorovya
*/

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #4ECDC4;
    margin-bottom: 1.25rem;
}

.section-label--light {
    color: #4ECDC4;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* ============================================
   FIXED NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-logo span {
    color: #4ECDC4;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ECDC4;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #4ECDC4;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #4ECDC4;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: #3dbdb5;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #4ECDC4;
}

/* ============================================
   PARALLAX SLIDE - COMMON
   ============================================ */
.parallax-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Non-hero parallax slides — shorter, content docked to bottom */
.sauna-slide,
.pool-slide,
.massage-slide,
.events-slide {
    min-height: 72vh;
    align-items: flex-end;
}

.sauna-slide .slide-content,
.pool-slide .slide-content,
.massage-slide .slide-content,
.events-slide .slide-content {
    padding-bottom: 3.5rem;
    padding-top: 2rem;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parallax-overlay--dark {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.15) 35%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.85) 100%
    );
}

.parallax-overlay--heavy {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.2) 35%,
        rgba(0,0,0,0.6) 70%,
        rgba(0,0,0,0.9) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
}

.slide-content--left {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.slide-text--left {
    margin: 0 auto 1.25rem !important;
}

.feature-tags--left {
    justify-content: center !important;
}

/* ============================================
   HERO SLIDE
   ============================================ */
.hero-slide .parallax-bg {
    background-image: var(--hero-bg);
    /* saved: size 115% pos 38% 42% — tight crop */
    background-size: 108%;
    background-position: 38% 42%;
    background-repeat: no-repeat;
    background-color: #0a2025;
}

@media (max-width: 900px) {
    .hero-slide .parallax-bg {
        background-size: cover;
        background-position: center 35%;
    }
}

.hero-title {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 4px 40px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.hero-title-line1,
.hero-title-line2 {
    display: block;
    white-space: nowrap;
}

.hero-title .hero-title-line2 {
    color: #4ECDC4;
}

.hero-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.hero-cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: #4ECDC4;
    padding: 1rem 3rem;
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: #3dbdb5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.scroll-arrow {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounceArrow 2s ease infinite;
    cursor: pointer;
}

.scroll-arrow svg {
    width: 30px;
    height: 30px;
    stroke: rgba(255,255,255,0.7);
    stroke-width: 2;
    fill: none;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================
   WHITE CONTENT SLIDE
   ============================================ */
.content-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 6rem 2rem;
}

.content-slide--alt {
    background: #f8f9fa;
}

.content-inner {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.content-inner h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.content-inner p {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Values row (replaces stats) */
.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-top: 2px solid #4ECDC4;
}

.value-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}

.value-text {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .values-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }
    .value-item {
        padding: 1.25rem 0.5rem;
    }
}

/* ============================================
   SAUNA / POOL / MASSAGE / EVENTS SLIDES
   ============================================ */
.sauna-slide   .parallax-bg { background-image: var(--sauna-bg);   background-position: center 20%; }
.pool-slide    .parallax-bg { background-image: var(--pool-bg);    background-position: center 40%; }
.massage-slide .parallax-bg { background-image: var(--massage-bg); background-position: center 45%; }
.events-slide  .parallax-bg { background-image: var(--events-bg);  background-position: center 42%; }

.slide-heading {
    font-size: 3.6rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 30px rgba(0,0,0,0.6);
}

.slide-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
    max-width: 640px;
    margin: 0 auto 1.25rem;
    line-height: 1.65;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.slide-text--left {
    margin: 0 0 2rem 0;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.feature-tags--left {
    justify-content: flex-start;
}

.feature-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    transition: all 0.3s;
}

.feature-tag:hover {
    background: #4ECDC4;
    border-color: #4ECDC4;
}

.events-heading {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 30px rgba(0,0,0,0.6);
}

.events-types {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #4ECDC4;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.event-feature {
    text-align: center;
    max-width: 200px;
}

.event-feature-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.event-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 0.4rem;
}

.event-feature-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ============================================
   SERVICES / PRICE LIST
   ============================================ */
.services-section {
    background: #fff;
    padding: 6rem 2rem;
}

.services-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: #777;
}

.price-category {
    margin-bottom: 3rem;
}

.price-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4ECDC4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #4ECDC4;
    margin-bottom: 1.5rem;
}

.price-group-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8A94A6;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #e8ecef;
}

.price-group-label:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.price-note {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    background: #f6f8fa;
    border-left: 3px solid #4ECDC4;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.55;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.85rem 0;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.price-item:hover {
    background: rgba(78, 205, 196, 0.04);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.price-item-left {
    flex: 1;
}

.price-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.price-item-desc {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.15rem;
}

.price-item-cost {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    margin-left: 2rem;
}

.services-note {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.services-note p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.btn-book {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: #4ECDC4;
    padding: 1rem 3rem;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-book:hover {
    background: #3dbdb5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
    color: #fff;
}

/* ============================================
   GALLERY - HORIZONTAL SCROLL
   ============================================ */
.gallery-section {
    background: #1a1a1a;
    padding: 5rem 0;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gallery-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    padding: 0 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    -webkit-user-select: none;
    scroll-behavior: auto;
}

.gallery-track img {
    pointer-events: none;
    user-drag: none;
    -webkit-user-drag: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-item {
    flex: 0 0 auto;
    width: 350px;
    height: 260px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-hint {
    text-align: center;
    margin-top: 2rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ============================================
   CONTACTS — modern layout
   ============================================ */
.contacts-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.contacts-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contacts-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.contacts-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.contacts-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contacts-sub {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 520px;
    margin: 0 auto;
}

.contacts-grid {
    display: grid;
    grid-template-columns: minmax(340px, 1fr) minmax(500px, 1.6fr);
    gap: 2.5rem;
    align-items: stretch;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ---------- Contact card ---------- */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(26, 32, 44, 0.04);
}

.contact-card:not(.contact-card--static):hover {
    transform: translateY(-3px);
    border-color: #4ECDC4;
    box-shadow: 0 14px 40px rgba(78, 205, 196, 0.18);
}

.contact-card:not(.contact-card--static):hover .contact-arrow {
    transform: translateX(5px);
    color: #4ECDC4;
}

.contact-card:not(.contact-card--static):hover .contact-icon {
    background: #4ECDC4;
    color: #ffffff;
}

.contact-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 205, 196, 0.12);
    color: #4ECDC4;
    border-radius: 14px;
    transition: all 0.35s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-body {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4ECDC4;
    margin-bottom: 0.35rem;
}

.contact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 0.2rem;
    word-break: break-word;
}

.contact-sub {
    font-size: 0.85rem;
    color: #8a94a6;
}

.contact-arrow {
    font-size: 1.4rem;
    color: #cbd5e0;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

/* ---------- VK block ---------- */
.vk-block {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 12px rgba(26, 32, 44, 0.04);
}

.vk-block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4ECDC4;
    margin-bottom: 0.9rem;
}

.vk-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.vk-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: #0077ff;
    padding: 0.7rem 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1.5px solid #0077ff;
}

.vk-link svg {
    width: 18px;
    height: 18px;
}

.vk-link:hover {
    background: #0062d8;
    border-color: #0062d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 255, 0.35);
    color: #ffffff;
}

.vk-link--secondary {
    background: transparent;
    color: #0077ff;
    border-color: #d4dae4;
}

.vk-link--secondary:hover {
    background: #f0f7ff;
    color: #0062d8;
    border-color: #0077ff;
    box-shadow: 0 6px 20px rgba(0, 119, 255, 0.15);
}

/* ---------- Main CTA ---------- */
.contacts-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    margin-top: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    background: linear-gradient(135deg, #4ECDC4 0%, #3dbdb5 100%);
    border: none;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.contacts-cta svg {
    width: 20px;
    height: 20px;
}

.contacts-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(78, 205, 196, 0.45);
    color: #ffffff;
}

/* ---------- Map ---------- */
.contacts-map {
    border-radius: 20px;
    overflow: hidden;
    min-height: 600px;
    box-shadow: 0 20px 60px rgba(26, 32, 44, 0.08);
    border: 1px solid #eaeef2;
    background: #ffffff;
    position: relative;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
    display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contacts-map,
    .contacts-map iframe {
        min-height: 420px;
    }
}

@media (max-width: 600px) {
    .contacts-section {
        padding: 5rem 1.25rem;
    }
    .contacts-header {
        margin-bottom: 3rem;
    }
    .contacts-header h2 {
        font-size: 2rem;
    }
    .contact-card {
        padding: 1.15rem 1.25rem;
        gap: 1rem;
    }
    .contact-icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    .contact-value {
        font-size: 1rem;
    }
    .vk-block {
        padding: 1.2rem 1.25rem;
    }
    .vk-link {
        flex: 1;
        justify-content: center;
    }
    .contacts-cta {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
    .contacts-map,
    .contacts-map iframe {
        min-height: 340px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1a1a1a;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #4ECDC4;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4ECDC4;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.25s; }
.stagger-3 { transition-delay: 0.4s; }
.stagger-4 { transition-delay: 0.55s; }

/* ============================================
   SLIDE INDICATOR DOTS
   ============================================ */
.slide-indicators {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slide-dot.active {
    background: #4ECDC4;
    border-color: #4ECDC4;
    transform: scale(1.3);
}

.slide-dot:hover {
    background: rgba(255,255,255,0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.2rem;
    }
    .slide-heading {
        font-size: 3.2rem;
    }
    .events-heading {
        font-size: 2.7rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.4rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .slide-heading {
        font-size: 3rem;
    }
    .events-heading {
        font-size: 2.6rem;
    }
    .slide-text {
        font-size: 1.2rem;
    }
    .content-inner h2,
    .services-header h2,
    .contacts-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 1rem 1.25rem;
    }

    .navbar.scrolled {
        padding: 0.6rem 1.25rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .slide-heading {
        font-size: 2.4rem;
    }

    .slide-text {
        font-size: 1.05rem;
    }

    .events-heading {
        font-size: 2rem;
    }

    .events-types {
        font-size: 1.25rem;
    }

    .content-inner h2,
    .services-header h2,
    .contacts-header h2,
    .gallery-header h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-row {
        gap: 2rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        width: 280px;
        height: 200px;
    }

    .slide-content--left {
        text-align: center;
        margin-left: auto;
        padding: 2rem 1.25rem;
    }

    .slide-text--left {
        margin: 0 auto 2rem;
    }

    .feature-tags--left {
        justify-content: center;
    }

    .slide-indicators {
        display: none;
    }

    .parallax-bg {
        background-attachment: scroll;
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .event-features {
        gap: 1.5rem;
    }

    .services-section,
    .contacts-section {
        padding: 4rem 1.25rem;
    }

    .hero-cta,
    .btn-book {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .slide-heading {
        font-size: 1.9rem;
    }

    .content-inner h2,
    .services-header h2,
    .contacts-header h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .price-item {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }

    .price-item-cost {
        margin-left: 0;
    }

    .gallery-item {
        width: 240px;
        height: 170px;
    }

    .feature-tags {
        gap: 0.5rem;
    }

    .feature-tag {
        padding: 0.4rem 0.9rem;
        font-size: 0.65rem;
    }

    .services-section,
    .contacts-section {
        padding: 3rem 1rem;
    }

    .services-header,
    .contacts-header {
        margin-bottom: 2.5rem;
    }

    .contact-block {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* iOS parallax fix */
@supports (-webkit-touch-callout: none) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: #fff;
    padding: 6rem 2rem;
    border-top: 1px solid #eef2f5;
}

.faq-inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.6rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #f6f8fa;
    border: 1px solid #eaeef2;
    border-radius: 14px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item[open] {
    background: #fff;
    border-color: #4ECDC4;
    box-shadow: 0 6px 24px rgba(78, 205, 196, 0.1);
}

.faq-item summary {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #4ECDC4;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: #4ECDC4;
}

.faq-item p {
    padding: 0 1.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.faq-item p a {
    color: #4ECDC4;
    font-weight: 600;
    text-decoration: none;
}
.faq-item p a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .faq-section { padding: 4rem 1.25rem; }
    .faq-header h2 { font-size: 1.8rem; }
    .faq-item summary { padding: 1rem 1.25rem; font-size: 0.95rem; }
    .faq-item p { padding: 0 1.25rem 1.25rem; }
}

/* Screen reader only — hidden visually but accessible to SEO bots and screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* WordPress admin bar fix */
.admin-bar .navbar {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px;
    }
}
