/* ============================================
   БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
   ============================================ */

@font-face {
    font-family: 'Honor';
    src: url('../fonts/HONORSansVFNormal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Honor';
    src: url('../fonts/HONORSansVFItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Honor', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(43, 44, 39, 0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 16px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #C39875;
}

.header-contact {
    display: none;
    align-items: center;
    gap: 24px;
}

.header-contact-inner {
    text-align: right;
}

.header-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 4px;
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-header {
    padding: 10px 20px;
    background: #C39875;
    color: #2B2C27;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
    white-space: nowrap;
}

.btn-header:hover {
    background: #B8941E;
    transform: scale(1.05);
}

.btn-header-secondary {
    background: transparent;
    color: #C39875;
    border: 2px solid #C39875;
}

.btn-header-secondary:hover {
    background: #C39875;
    color: #2B2C27;
}

.header-phone {
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: #C39875;
}

.header-hours {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-line {
    width: 24px;
    height: 2px;
    background: #C39875;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .mobile-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active .mobile-menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .mobile-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    padding: 16px 0;
    border-top: 1px solid rgba(195, 152, 117, 0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #C39875;
}

/* ============================================
   HERO
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, object-position 0.3s ease;
}

.hero-bg-img-mobile {
    display: none;
}

.hero-bg-img-desktop {
    display: block;
}

.hero-gradient {
    position: absolute;
    inset: 0;
}

.hero-section .container {
    margin-left: 150px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100%;
}

.hero-layout {
    position: relative;
    padding-top: 48px;
}

.hero-visual {
    position: static;
    width: 0;
    height: 0;
    overflow: visible;
    pointer-events: none;
}

.hero-content {
    max-width: 612px;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-logo-wrapper {
    position: absolute;
    right: -846px;
    top: 96%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-logo-container {
    position: relative;
    width: 700px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-additional-wrapper {
    position: absolute;
    right: -1200px;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    width: 700px;
    height: 700px;
}

.hero-additional-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-logo-light {
    opacity: 1;
    z-index: 2;
}

.hero-logo-green {
    opacity: 1;
    z-index: 3;
    -webkit-mask-image: radial-gradient(circle, #000 50%, transparent 55%);
    mask-image: radial-gradient(circle, #000 50%, transparent 55%);
    -webkit-mask-size: 200% 200%;
    mask-size: 200% 200%;
    -webkit-mask-position: 300% 50%;
    mask-position: 300% 50%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    animation: maskMove 2.5s linear infinite;
}

@keyframes maskMove {
    0% {
        -webkit-mask-position: 300% 50%;
        mask-position: 300% 50%;
    }
    100% {
        -webkit-mask-position: -200% 50%;
        mask-position: -200% 50%;
    }
}

.hero-brand-container {
    position: relative;
    width: 100%;
    max-width: 612px;
    margin-bottom: 16px;
    display: inline-block;
}

.hero-brand {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-brand-wh {
    opacity: 1;
    z-index: 2;
    position: relative;
}

.hero-brand-gr {
    opacity: 1;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: radial-gradient(circle, #000 50%, transparent 55%);
    mask-image: radial-gradient(circle, #000 50%, transparent 55%);
    -webkit-mask-size: 200% 200%;
    mask-size: 200% 200%;
    -webkit-mask-position: 300% 50%;
    mask-position: 300% 50%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    animation: maskMove 2.5s linear infinite;
    object-fit: contain;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-title-accent {
    font-style: italic;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle p {
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle p:last-child {
    margin-bottom: 0;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-benefit-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 40px;
    background: #C39875;
    color: #2B2C27;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
}

.btn-hero:hover {
    background: #B8941E;
    transform: scale(1.05);
}

.btn-hero-secondary {
    background: transparent;
    color: #C39875;
    border: 2px solid #C39875;
}

.btn-hero-secondary:hover {
    background: #C39875;
    color: #2B2C27;
}

.hero-decorative {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.3;
}

.hero-decorative-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ============================================
   ACHIEVEMENTS
   ============================================ */

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.achievement-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform: translateY(0);
    will-change: transform;
}

.achievement-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.achievement-number {
    font-size: 56px;
    font-weight: 700;
    color: #C39875;
    line-height: 1.2;
    margin-bottom: 12px;
    font-family: 'Honor', sans-serif;
}

.achievement-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ============================================
   ABOUT
   ============================================ */

.about-section {
    padding: 96px 0;
    background: #2B2C27;
    background-image: url('../images/AboutBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.about-decorative-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.about-decorative-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.about-text-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.about-icon {
    margin-bottom: 24px;
}

.about-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.about-title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.2;
    font-weight: 600;
}

.about-title-accent {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.about-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}

.about-description p {
    margin-bottom: 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 32px;
    text-align: left;
}

.about-feature-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 24px;
}

.about-feature-title {
    font-size: 16px;
    color: #C39875;
    margin-bottom: 16px;
    font-weight: 600;
}

.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-feature-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.about-feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C39875;
    font-weight: bold;
}


/* ============================================
   SERVICES
   ============================================ */

.services-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, #2B2C27, #1a1a1a);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-icon {
    display: inline-block;
    margin-bottom: 24px;
}

.section-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.section-title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(195, 152, 117, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(195, 152, 117, 0.3);
    border-color: rgba(195, 152, 117, 0.4);
}

.service-card:hover {
    background-size: 110%;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}

.service-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: 96px;
    background: linear-gradient(to bottom left, rgba(212, 175, 55, 0.1), transparent);
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
}

.service-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 16px;
}

.service-duration {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.service-name {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.service-card:hover .service-name {
    color: #C39875;
}

.service-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(195, 152, 117, 0.2);
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: #C39875;
}

.service-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Honor', sans-serif;
}

.service-link:hover {
    color: #C39875;
}

.services-footer {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-services-modal {
    padding: 16px 40px;
    background: transparent;
    color: #C39875;
    border: 2px solid #C39875;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
}

.btn-services-modal:hover {
    background: #C39875;
    color: #2B2C27;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 152, 117, 0.3);
}

/* ============================================
   SERVICES MODAL
   ============================================ */

.services-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.services-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.services-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid rgba(195, 152, 117, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.services-modal.active .services-modal-content {
    transform: scale(1);
}

.services-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(195, 152, 117, 0.2);
    background: rgba(43, 44, 39, 0.8);
}

.services-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #C39875;
    margin: 0;
}

.services-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(195, 152, 117, 0.3);
    border-radius: 8px;
    color: #C39875;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.services-modal-close svg {
    width: 24px;
    height: 24px;
}

.services-modal-close:hover {
    background: rgba(195, 152, 117, 0.1);
    border-color: #C39875;
    transform: rotate(90deg);
}

.services-modal-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 32px;
    border-bottom: 1px solid rgba(195, 152, 117, 0.2);
    background: rgba(43, 44, 39, 0.5);
    flex-shrink: 0;
    overflow: visible;
    align-items: flex-start;
}

.services-modal-filters::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.services-modal-filters::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.services-modal-filters::-webkit-scrollbar-thumb {
    background: rgba(195, 152, 117, 0.5);
    border-radius: 3px;
}

.services-modal-filters::-webkit-scrollbar-thumb:hover {
    background: rgba(195, 152, 117, 0.7);
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(195, 152, 117, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
    white-space: nowrap;
    height: fit-content;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover {
    border-color: #C39875;
    color: #C39875;
    background: rgba(195, 152, 117, 0.1);
}

.filter-btn.active {
    background: #C39875;
    color: #2B2C27;
    border-color: #C39875;
}

.services-modal-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 32px;
    min-height: 0;
    max-height: calc(90vh - 300px);
}

.services-modal-body::-webkit-scrollbar {
    width: 8px;
}

.services-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.services-modal-body::-webkit-scrollbar-thumb {
    background: rgba(195, 152, 117, 0.5);
    border-radius: 4px;
}

.services-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(195, 152, 117, 0.7);
}

.services-category-section {
    margin-bottom: 48px;
}

.services-category-section:last-child {
    margin-bottom: 0;
}

.services-category-title {
    font-size: 24px;
    font-weight: 700;
    color: #C39875;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(195, 152, 117, 0.3);
}

.services-category-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-modal-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(195, 152, 117, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 24px;
}

.service-modal-item:hover {
    background: rgba(43, 44, 39, 0.8);
    border-color: rgba(195, 152, 117, 0.4);
    transform: translateX(4px);
}

.service-modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-modal-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.service-modal-age,
.service-modal-category {
    font-size: 14px;
    color: rgba(195, 152, 117, 0.8);
    font-style: italic;
}

.service-modal-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0 0 0;
    line-height: 1.5;
}

.service-modal-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 150px;
    text-align: right;
}

.service-modal-duration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.service-modal-price-value {
    font-size: 20px;
    font-weight: 700;
    color: #C39875;
}

/* Детальное окно услуги */
.service-detail-view {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(195, 152, 117, 0.2);
    background: rgba(43, 44, 39, 0.8);
    flex-shrink: 0;
}

.service-detail-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(195, 152, 117, 0.3);
    border-radius: 8px;
    color: #C39875;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
}

.service-detail-back svg {
    width: 20px;
    height: 20px;
}

.service-detail-back:hover {
    background: rgba(195, 152, 117, 0.1);
    border-color: #C39875;
    transform: translateX(-2px);
}

.service-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #C39875;
    margin: 0;
    flex: 1;
}

.service-detail-body {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(195, 152, 117, 0.2);
    border-radius: 8px;
}

.service-detail-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.service-detail-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.service-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: #C39875;
}

.service-detail-description {
    padding: 24px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(195, 152, 117, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.service-detail-description p {
    margin-bottom: 12px;
}

.service-detail-description p:last-child {
    margin-bottom: 0;
}

.service-detail-description strong {
    color: #C39875;
    font-weight: 600;
}

.service-detail-note {
    padding: 16px;
    background: rgba(195, 152, 117, 0.1);
    border-left: 3px solid #C39875;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

.btn-select-service {
    padding: 16px 32px;
    background: #C39875;
    color: #2B2C27;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
    width: 100%;
    margin-top: auto;
}

.btn-select-service:hover {
    background: #B8941E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 152, 117, 0.4);
}

/* Кнопка выбора услуги в форме */
.service-select-btn {
    width: 100%;
    padding: 12px 16px;
    background: #2B2C27;
    border: 1px solid rgba(195, 152, 117, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: 'Honor', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.service-select-btn:hover {
    border-color: #C39875;
    color: #C39875;
    background: rgba(195, 152, 117, 0.1);
}

.service-select-btn.selected {
    border-color: #C39875;
    color: #C39875;
    background: rgba(195, 152, 117, 0.1);
}

.service-select-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.service-select-btn:hover svg {
    transform: translateY(2px);
}

/* ============================================
   PHILOSOPHY
   ============================================ */

.why-choose-section {
    padding: 96px 0;
    background-image: url('../images/philosophiaBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
}

/* Сетка из 3 колонок */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    position: relative;
    padding: 0;
    align-items: start;
}

.reasons-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.reasons-column-center {
    align-items: center;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    padding: 20px 0;
}

.why-choose-logo {
    height: 300px;
    width: auto;
    opacity: 0.95;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
    transition: all 0.3s ease;
}

.why-choose-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.6));
}

.reason-item {
    position: relative;
    border: 2px solid rgba(195, 152, 117, 0.25);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 1;
    background-color: #1a1a1a;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(195, 152, 117, 0.1) inset;
    border-radius: 16px;
    isolation: isolate;
}

/* Разнообразие форм и размеров */
.reason-item:nth-child(1) {
    min-height: 360px;
    border-radius: 16px 16px 4px 16px;
}

.reason-item:nth-child(2) {
    min-height: 380px;
    border-radius: 4px 16px 16px 4px;
    margin-top: -20px;
}

.reason-item:nth-child(3) {
    min-height: 340px;
    border-radius: 16px 4px 16px 16px;
}

.reason-item:nth-child(4) {
    min-height: 370px;
    border-radius: 16px 4px 4px 16px;
}

.reason-item:nth-child(5) {
    min-height: 350px;
    border-radius: 4px 16px 4px 16px;
    margin-top: 20px;
}

.reason-item:nth-child(6) {
    min-height: 360px;
    border-radius: 16px 16px 16px 4px;
}

.reason-item:nth-child(7) {
    min-height: 340px;
    border-radius: 4px 4px 16px 16px;
}

.reason-item:nth-child(8) {
    min-height: 380px;
    border-radius: 16px 4px 16px 4px;
    margin-top: -20px;
}

.reason-item:hover {
    border-color: rgba(195, 152, 117, 0.6);
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(195, 152, 117, 0.3) inset,
        0 0 24px rgba(195, 152, 117, 0.2);
    z-index: 2;
}

.reason-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.8) 35%, rgba(26, 26, 26, 0.4) 65%, rgba(26, 26, 26, 0.1) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.reason-item:hover .reason-overlay {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.9) 35%, rgba(26, 26, 26, 0.6) 65%, rgba(26, 26, 26, 0.2) 100%);
}

.reason-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.reason-item:hover .reason-content {
    transform: translateY(-4px);
}

.reason-title {
    font-size: 18px;
    font-weight: 700;
    color: #C39875;
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reason-item:hover .reason-title {
    color: #D4A574;
}

.reason-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.reason-item:hover .reason-text {
    color: rgba(255, 255, 255, 0.95);
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.philosophy-value {
    background: #2B2C27;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.philosophy-value:hover {
    border-color: rgba(212, 175, 55, 0.6);
}

.philosophy-value-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.philosophy-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.philosophy-value-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.philosophy-value-content h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.philosophy-value-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ============================================
   TEAM
   ============================================ */

.legal-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, #1a1a1a, #2B2C27);
    position: relative;
    background-image: url('/static/images/TeamBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.legal-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.4);
}

.legal-section .container {
    position: relative;
    z-index: 1;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.legal-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(195, 152, 117, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(195, 152, 117, 0.3);
    border-color: rgba(195, 152, 117, 0.4);
}

.legal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(195, 152, 117, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #C39875;
}

.legal-icon svg {
    width: 32px;
    height: 32px;
}

.legal-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.legal-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.legal-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 280px;
}

.legal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #C39875;
    color: #2B2C27;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-link:hover {
    background: #B8941E;
    transform: translateY(-2px);
}

.legal-link--secondary {
    background: transparent;
    color: #C39875;
    border: 1px solid rgba(195, 152, 117, 0.5);
}

.legal-link--secondary:hover {
    background: rgba(195, 152, 117, 0.12);
    color: #E8E6E1;
}

.legal-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.team-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, #1a1a1a, #2B2C27);
    position: relative;
    background-image: url('/static/images/TeamBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.team-section .container {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.team-card {
    position: relative;
    background: linear-gradient(to bottom, #2B2C27, #1a1a1a);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
}

.team-decorative {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    opacity: 0.2;
    z-index: 1;
}

.team-decorative-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-photo-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #2B2C27, rgba(43, 44, 39, 0.5), transparent);
}

.team-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.team-name {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 600;
}

.team-role {
    color: #C39875;
    font-size: 14px;
}

.team-content {
    padding: 24px;
}

.team-specialty {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 16px;
}

.team-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.team-divider {
    padding-top: 24px;
    border-top: 1px solid rgba(195, 152, 117, 0.2);
}

.team-link {
    background: none;
    border: none;
    color: #C39875;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Honor', sans-serif;
}

.team-link:hover {
    color: #ffffff;
}

.team-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-secondary {
    background: transparent;
    color: #C39875;
    border: 2px solid #C39875;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
}

.btn-secondary:hover {
    background: #C39875;
    color: #2B2C27;
}

/* ============================================
   PROMOTIONS AND LOYALTY
   ============================================ */

.promotions-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, #1a1a1a, #2B2C27);
    position: relative;
    background-image: url('/static/images/GiftBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promotions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.4);
}

.promotions-section .container {
    position: relative;
    z-index: 1;
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-top: 48px;
    align-items: start;
}

.promotions-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.promotions-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.promotions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.promotion-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.promotion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.promotion-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.promotion-card:hover .promotion-image {
    transform: scale(1.15);
}

.promotion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 40%, rgba(26, 26, 26, 0.5) 70%, rgba(26, 26, 26, 0.2) 100%);
    z-index: 1;
}

.promotion-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promotion-title {
    font-size: 24px;
    font-weight: 700;
    color: #C39875;
    margin: 0;
}

.promotion-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.promotion-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 8px;
}

.promotion-date svg {
    width: 18px;
    height: 18px;
    color: #C39875;
}

/* Система лояльности */
.loyalty-right {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(195, 152, 117, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.loyalty-title {
    font-size: 28px;
    font-weight: 700;
    color: #C39875;
    margin: 0 0 24px 0;
}

.loyalty-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.loyalty-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.loyalty-benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.loyalty-benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(195, 152, 117, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(195, 152, 117, 0.3);
}

.loyalty-benefit-icon svg {
    width: 24px;
    height: 24px;
    color: #C39875;
}

.loyalty-benefit-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.loyalty-benefit-text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.loyalty-cta {
    padding-top: 24px;
    border-top: 1px solid rgba(195, 152, 117, 0.3);
}

.loyalty-cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-loyalty {
    display: inline-block;
    padding: 14px 32px;
    background: #C39875;
    color: #2B2C27;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
}

.btn-loyalty:hover {
    background: #B8941E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 152, 117, 0.4);
}

/* ============================================
   PRODUCTS
   ============================================ */

.products-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, #2B2C27, #1a1a1a);
    position: relative;
    background-image: url('/static/images/GiftBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.4);
}

.products-section .container {
    position: relative;
    z-index: 1;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.products-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   PROGRAMS (legacy, для обратной совместимости)
   ============================================ */

.programs-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, #1a1a1a, #2B2C27);
    position: relative;
    background-image: url('/static/images/GiftBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.programs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.programs-section .container {
    position: relative;
    z-index: 1;
}

.section-header-light .section-title {
    color: #ffffff;
}

.section-header-light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.programs-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.tab-btn.active {
    background: #C39875;
    color: #2B2C27;
    border-color: #C39875;
}

.tab-btn-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.programs-content {
    max-width: 1200px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.program-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-4px);
}

.program-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.program-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.program-card:hover .program-card-image {
    transform: scale(1.1);
}

.program-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.program-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #C39875;
}

.program-name {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.program-duration {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.program-duration::before {
    content: '🕐';
    font-size: 16px;
}

.program-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.program-includes {
    margin-bottom: 24px;
}

.program-includes-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.program-includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.program-includes-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-includes-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #C39875;
    border-radius: 50%;
    flex-shrink: 0;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(195, 152, 117, 0.2);
}

.program-price {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.program-price::after {
    content: ' ₽';
    color: #C39875;
}

.program-btn {
    background: #C39875;
    color: #2B2C27;
    border: none;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
}

.program-btn:hover {
    background: #B8941E;
}

/* ============================================
   BOOKING
   ============================================ */

.booking-section {
    padding: 96px 0;
    background: #2B2C27;
    position: relative;
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.7;
}

.booking-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-section .container {
    position: relative;
    z-index: 10;
}


.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

@media (min-width: 768px) {
    .booking-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.booking-forms-container {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .booking-forms-container {
        height: 100%;
    }
}

.booking-form-wrapper {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .booking-form-wrapper {
        height: 100%;
        max-height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .booking-form-wrapper::-webkit-scrollbar {
        width: 6px;
    }
    
    .booking-form-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }
    
    .booking-form-wrapper::-webkit-scrollbar-thumb {
        background: rgba(195, 152, 117, 0.5);
        border-radius: 3px;
    }
    
    .booking-form-wrapper::-webkit-scrollbar-thumb:hover {
        background: rgba(195, 152, 117, 0.7);
    }
}


.booking-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.booking-form-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: #2B2C27;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Honor', sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #C39875;
}

.form-consent {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.form-consent a {
    color: #C39875;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-consent a:hover {
    color: #E8E6E1;
}

/* Стили для выбора типа сертификата */
.certificate-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.certificate-type-card {
    display: block;
    cursor: pointer;
    position: relative;
}

.certificate-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.certificate-type-content {
    background: rgba(26, 26, 26, 0.6);
    border: 2px solid rgba(195, 152, 117, 0.3);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.certificate-type-card:hover .certificate-type-content {
    border-color: rgba(195, 152, 117, 0.6);
    background: rgba(26, 26, 26, 0.8);
}

.certificate-type-card input[type="radio"]:checked + .certificate-type-content {
    border-color: #C39875;
    background: rgba(195, 152, 117, 0.1);
    box-shadow: 0 0 0 2px rgba(195, 152, 117, 0.2);
}

.certificate-type-image {
    width: 100%;
    height: 180px;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-type-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.certificate-type-card:hover .certificate-type-image img {
    transform: scale(1.05);
}

.certificate-type-card input[type="radio"]:checked + .certificate-type-content .certificate-type-image {
    border: 2px solid #C39875;
    box-shadow: 0 0 12px rgba(195, 152, 117, 0.3);
}

.certificate-type-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.certificate-type-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.btn-booking {
    width: 100%;
    padding: 16px 32px;
    background: #C39875;
    color: #2B2C27;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-booking:hover {
    background: #B8941E;
    transform: scale(1.05);
}

.btn-booking-secondary {
    margin-top: 16px;
    background: transparent;
    border: 2px solid #C39875;
    color: #C39875;
}

.btn-booking-secondary:hover {
    background: rgba(195, 152, 117, 0.1);
    border-color: #C39875;
    color: #C39875;
    transform: scale(1.05);
}

/* Дополнительные услуги и продукция */
.additional-items-group {
    animation: fadeIn 0.4s ease;
}

.additional-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.btn-additional {
    width: 100%;
    padding: 14px 16px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(195, 152, 117, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-family: 'Honor', sans-serif;
}

.btn-additional:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(195, 152, 117, 0.5);
    transform: translateX(4px);
}

.btn-additional svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #C39875;
}

.btn-additional span {
    flex: 1;
}

.selected-count {
    display: none;
    background: #C39875;
    color: #2B2C27;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.selected-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(195, 152, 117, 0.2);
}

.selected-item-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(195, 152, 117, 0.15);
    border: 1px solid rgba(195, 152, 117, 0.3);
    border-radius: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.selected-item-name {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.selected-item-remove {
    background: none;
    border: none;
    padding: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.selected-item-remove:hover {
    color: #C39875;
}

.selected-item-remove svg {
    width: 14px;
    height: 14px;
}

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

.optional-label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Модальные окна для доп услуг и продукции */
.additional-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.additional-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.additional-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.additional-modal-content {
    position: relative;
    z-index: 1;
    background: #2B2C27;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(195, 152, 117, 0.3);
}

.additional-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(195, 152, 117, 0.2);
}

.additional-modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.additional-modal-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.additional-modal-close:hover {
    color: #C39875;
    background: rgba(195, 152, 117, 0.1);
}

.additional-modal-close svg {
    width: 20px;
    height: 20px;
}

.additional-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.additional-modal-body::-webkit-scrollbar {
    width: 6px;
}

.additional-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.additional-modal-body::-webkit-scrollbar-thumb {
    background: rgba(195, 152, 117, 0.5);
    border-radius: 3px;
}

.additional-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(195, 152, 117, 0.7);
}

.additional-modal-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(195, 152, 117, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.additional-modal-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(195, 152, 117, 0.4);
    transform: translateX(4px);
}

.additional-modal-item.selected {
    background: rgba(195, 152, 117, 0.1);
    border-color: #C39875;
}

.additional-modal-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.additional-modal-item::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(195, 152, 117, 0.5);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
    margin-top: 2px;
    flex-shrink: 0;
}

.additional-modal-item.selected::before {
    background: #C39875;
    border-color: #C39875;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232B2C27' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.additional-modal-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.additional-modal-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.additional-modal-item-name {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.additional-modal-item.selected .additional-modal-item-name {
    color: #C39875;
}

.additional-modal-item-price {
    font-size: 15px;
    font-weight: 600;
    color: #C39875;
    white-space: nowrap;
}

.additional-modal-item-duration,
.additional-modal-item-category {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.additional-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(195, 152, 117, 0.2);
}

.btn-modal-cancel,
.btn-modal-confirm {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Honor', sans-serif;
    border: none;
}

.btn-modal-cancel {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.btn-modal-confirm {
    background: #C39875;
    color: #2B2C27;
}

.btn-modal-confirm:hover {
    background: #B8941E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 152, 117, 0.4);
}

.additional-item-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    padding-left: 48px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(195, 152, 117, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.additional-item-card:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(195, 152, 117, 0.4);
    transform: translateX(4px);
}

.additional-item-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.additional-item-card::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 18px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(195, 152, 117, 0.5);
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s ease;
    pointer-events: none;
}

.additional-item-checkbox:checked + .additional-item-content {
    border-color: #C39875;
}

.additional-item-checkbox:checked ~ .additional-item-content,
.additional-item-checkbox:checked + .additional-item-content {
    background: rgba(195, 152, 117, 0.1);
}

.additional-item-checkbox:checked ~ .additional-item-content .additional-item-name,
.additional-item-checkbox:checked + .additional-item-content .additional-item-name {
    color: #C39875;
}

.additional-item-checkbox:checked ~ .additional-item-card::before,
.additional-item-card:has(.additional-item-checkbox:checked)::before {
    background: #C39875;
    border-color: #C39875;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232B2C27' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Fallback для браузеров без поддержки :has() */
.additional-item-card.checked::before {
    background: #C39875;
    border-color: #C39875;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232B2C27' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.additional-item-card.checked {
    background: rgba(195, 152, 117, 0.1);
    border-color: #C39875;
}

.additional-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.additional-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.additional-item-name {
    font-size: 15px;
    font-weight: 500;
    color: inherit;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.additional-item-price {
    font-size: 15px;
    font-weight: 600;
    color: #C39875;
    white-space: nowrap;
}

.additional-item-duration,
.additional-item-category {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .additional-items-grid {
        grid-template-columns: 1fr;
    }
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-info-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.booking-info-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.booking-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-info-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.booking-info-content h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 600;
}

.booking-info-content p,
.booking-info-content a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-info-content a:hover {
    color: #C39875;
}

.info-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-top: 4px;
}

.booking-info-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.booking-map {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 400px;
}

@media (min-width: 768px) {
    .booking-map {
        height: 450px;
    }
}

.booking-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #1a1a1a;
    border-top: 1px solid rgba(195, 152, 117, 0.2);
    padding: 64px 0 16px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 250px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-nav,
.footer-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #C39875;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #C39875;
}

.footer-social {
    margin-top: 24px;
}

.footer-social-title {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #C39875;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #C39875;
    color: #2B2C27;
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(195, 152, 117, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #C39875;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 767px) {
    .header-buttons {
        display: none;
    }
    
    .header-address {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        align-items: flex-start;
        padding: 88px 0 40px !important;
        overflow: hidden;
    }
    
    .hero-section .container {
        margin-left: 0 !important;
        max-width: 100% !important;
        padding: 0 16px;
        width: 100%;
    }
    
    .hero-layout {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding-top: 0;
        width: 100%;
    }

    .hero-visual {
        position: relative;
        width: min(400px, 98vw);
        height: min(440px, 62vh);
        min-height: 340px;
        margin: 72px auto 0;
        flex-shrink: 0;
        pointer-events: none;
        overflow: visible;
    }
    
    .hero-additional-wrapper {
        position: absolute !important;
        left: 50%;
        right: auto !important;
        bottom: 0;
        top: auto !important;
        transform: translateX(-50%) !important;
        width: 112%;
        height: 112%;
        margin: 0;
        z-index: 1;
    }

    .hero-brand-gr {
        left: 10.7%;
        top: 0%;
    }
    
    .hero-additional-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }
    
    .hero-logo-wrapper {
        position: absolute !important;
        left: 50%;
        top: 100%;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 187%;
        height: 200%;
        margin: 0;
        z-index: 0;
        opacity: 0.2;
    }
    
    .hero-logo-container {
        width: 100%;
        height: 100%;
    }
    
    .hero-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0;
        position: relative;
        z-index: 3;
        text-align: center;
    }
    
    .hero-brand-container {
        max-width: min(100%, 340px);
        margin: 0 auto 12px;
        text-align: center;
    }

    .hero-brand {
        max-height: 85px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(22px, 6.5vw, 28px);
        line-height: 1.25;
        margin-bottom: 16px;
        text-align: center;
        hyphens: none;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .hero-subtitle p {
        margin-bottom: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .btn-hero {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    
    .certificate-type-content {
        padding: 16px;
    }
    
    .certificate-type-image {
        height: 140px;
        margin-bottom: 12px;
    }
    
    .certificate-type-name {
        font-size: 16px;
    }
    
    .certificate-type-desc {
        font-size: 13px;
    }
    
    /* Уменьшаем отступы между секциями */
    .why-choose-section,
    .about-section,
    .services-section,
    .programs-section,
    .legal-section,
    .booking-section {
        padding: 48px 0 !important;
    }
    
    .reasons-grid {
        gap: 28px;
    }
    
    .reasons-column {
        gap: 28px;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .achievement-item {
        padding: 24px 16px;
    }
    
    .achievement-number {
        font-size: 42px;
    }
    
    .achievement-label {
        font-size: 14px;
    }
    
    .why-choose-hero {
        margin: 24px 0 32px;
        padding: 24px 0;
        min-height: 140px;
    }
    
    .lotus-container {
        width: 120px;
        height: 120px;
        margin-bottom: 16px;
    }
    
    .why-choose-logo {
        height: 40px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .reasons-column {
        gap: 24px;
    }
    
    .logo-container {
        padding: 16px 0;
        margin-bottom: 8px;
    }
    
    .why-choose-logo {
        height: 50px;
    }
    
    .reason-item {
        min-height: 240px !important;
        max-height: 280px !important;
        padding: 20px;
        border-radius: 12px !important;
        margin-top: 0 !important;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .promotion-card {
        min-height: 240px;
    }
    
    .promotion-content {
        padding: 24px;
    }
    
    .promotion-title {
        font-size: 20px;
    }
    
    .promotion-desc {
        font-size: 14px;
    }
    
    .loyalty-right {
        padding: 32px 24px;
    }
    
    .loyalty-title {
        font-size: 24px;
    }
    
    .loyalty-benefit-item {
        gap: 12px;
    }
    
    .loyalty-benefit-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .loyalty-benefit-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .loyalty-benefit-text h4 {
        font-size: 16px;
    }
    
    .loyalty-benefit-text p {
        font-size: 13px;
    }
    
    .additional-buttons {
        gap: 10px;
    }
    
    .btn-additional {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .btn-additional svg {
        width: 18px;
        height: 18px;
    }
    
    .additional-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .additional-modal-header {
        padding: 20px;
    }
    
    .additional-modal-header h3 {
        font-size: 18px;
    }
    
    .additional-modal-body {
        padding: 20px;
        gap: 10px;
    }
    
    .additional-modal-footer {
        padding: 16px 20px;
        flex-direction: column;
    }
    
    .btn-modal-cancel,
    .btn-modal-confirm {
        width: 100%;
        padding: 12px 20px;
    }
    
    .selected-items-list {
        gap: 6px;
    }
    
    .selected-item-tag {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .selected-item-name {
        max-width: 150px;
    }
    
    .products-tabs {
        gap: 12px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .reason-title {
        font-size: 20px;
    }
    
    .reason-text {
        font-size: 14px;
        -webkit-line-clamp: 6;
        line-clamp: 6;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .services-modal-header {
        padding: 20px 20px;
    }
    
    .services-modal-title {
        font-size: 20px;
    }
    
    .services-modal-close {
        width: 36px;
        height: 36px;
    }
    
    .services-modal-filters {
        padding: 20px;
        height: auto;
        max-height: none;
        gap: 10px;
        overflow: visible;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
        min-height: 40px;
    }
    
    .services-modal-body {
        padding: 20px;
    }
    
    .services-category-section {
        margin-bottom: 32px;
    }
    
    .services-category-title {
        font-size: 18px;
        margin-bottom: 16px;
        padding-bottom: 8px;
    }
    
    .service-modal-item {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .service-modal-name {
        font-size: 16px;
    }
    
    .service-modal-price {
        align-items: flex-start;
        text-align: left;
        min-width: auto;
        width: 100%;
    }
    
    .service-modal-price-value {
        font-size: 18px;
    }
    
    .service-detail-header {
        padding: 16px 20px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .service-detail-back {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .service-detail-back svg {
        width: 18px;
        height: 18px;
    }
    
    .service-detail-title {
        font-size: 18px;
    }
    
    .service-detail-body {
        padding: 20px 16px;
        gap: 20px;
    }
    
    .service-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }
    
    .service-detail-label,
    .service-detail-value {
        font-size: 14px;
    }
    
    .service-detail-price {
        font-size: 20px;
    }
    
    .service-detail-description {
        padding: 16px;
        font-size: 14px;
    }
    
    .btn-select-service {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .service-select-btn {
        padding: 10px 14px;
        font-size: 15px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .legal-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    .legal-card {
        padding: 32px 24px;
    }
    
    .legal-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    .legal-card {
        padding: 32px 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr !important;
    }
    
    .programs-grid {
        grid-template-columns: 1fr !important;
    }
    
    .program-card {
        width: 100%;
    }
    
    .header-content {
        justify-content: space-between;
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
    }
    
    .logo-wrapper {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
        order: -1;
    }
    
    .logo-img {
        height: 80px !important;
    }
    
    .mobile-menu-btn {
        order: 1;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hero-bg-img-desktop {
        display: none !important;
    }
    
    .hero-bg-img-mobile {
        display: block !important;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        min-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-column {
        min-width: 100%;
        text-align: center;
    }
    
    .footer-nav,
    .footer-services,
    .footer-contacts {
        align-items: center;
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-contact {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    
    .header-contact-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }
    
    .header-buttons {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-logo-wrapper {
        display: flex;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    
    .about-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .gallery-mosaic {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (min-width: 769px) {
    .hero-visual {
        position: static;
        width: 0;
        height: 0;
        overflow: visible;
        pointer-events: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        margin: 10px;
    }
    .hero-section .container {
        margin-left: 50px;
        max-width: 500px;
    }

    .hero-content {
        max-width: 450px;
    }
    
    .hero-logo-container {
        width: 400px;
        height: 400px;
    }
    
    .hero-additional-wrapper {
        width: 400px;
        height: 400px;
    }
    
    .hero-brand-container {
        max-width: 480px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-brand,
    .footer-column {
        flex: 0 1 auto;
    }
    
    .reasons-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .reason-item {
        min-height: 320px !important;
        border-radius: 12px !important;
        margin-top: 0 !important;
    }
    
    .reason-title {
        font-size: 20px;
    }
    
    .reason-text {
        font-size: 14px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .hero-section .container {
        margin-left: 50px;
        max-width: 600px;
    }

    .hero-content {
        max-width: 550px;
    }
    
    .hero-logo-container {
        width: 550px;
        height: 550px;
    }
    
    .hero-additional-wrapper {
        width: 550px;
        height: 550px;
    }
    
    .hero-layout {
        gap: 20px;
    }
    
    .hero-brand-container {
        max-width: 640px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .reasons-column {
        gap: 24px;
    }
    
    .logo-container {
        padding: 16px 0;
        margin-bottom: 8px;
    }
    
    .why-choose-logo {
        height: 55px;
    }
    
    /* На ноутбуке средняя колонка с лого становится первой */
    .reasons-column-center {
        order: -1;
    }
    
    .reason-item {
        min-height: 280px !important;
        max-height: 320px !important;
        padding: 24px;
    }
    
    .reason-title {
        font-size: 16px;
    }
    
    .reason-text {
        font-size: 13px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .reason-item::before {
        width: 32px;
        height: 32px;
        font-size: 16px;
        top: 12px;
        left: 12px;
    }
}

@media (min-width: 1281px) and (max-width: 1600px) {
    .hero-section .container {
        margin-left: 150px;
        max-width: 500px;
    }

    .hero-content {
        max-width: 512px;
    }
    
    .hero-logo-container {
        width: 170px;
        height: 170px;
    }

    .hero-logo-wrapper {
        right: -547px;
        top: 91%;
    }
    
    .hero-additional-wrapper {
        width: 800px;
        height: 800px;
        right: -860px;
        top: 60%;
    }
    
    .hero-layout {
        gap: 80px;
    }
    
    .hero-brand-container {
        max-width: 800px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Уменьшение фона Hero для ноутбуков */
    
    /* Сдвиг фона About левее для ноутбуков */
    .about-section {
        background-position: 30% center;
    }
}

@media (min-width: 1601px) {
    .hero-section .container {
        margin-left: 150px;
        max-width: 500px;
    }

    .hero-content {
        max-width: 812px;
    }
    
    .hero-logo-container {
        width: 190px;
        height: 190px;
    }
    
    .hero-additional-wrapper {
        width: 900px;
        height: 900px;
    }
    
    .hero-layout {
        gap: 80px;
    }
    
    .hero-brand-container {
        max-width: 800px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Возврат к нормальным значениям для больших экранов */
    .hero-bg-img-desktop {
        transform: scale(1);
        object-position: center;
    }
    
    .about-section {
        background-position: center;
    }
}

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-page {
    min-height: 100vh;
    padding: 96px 0 64px;
    background: #1a1a1a;
    color: #E8E6E1;
}

.policy-page__container {
    max-width: 800px;
}

.policy-page__back {
    display: inline-block;
    margin-bottom: 24px;
    color: #C39875;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.policy-page__back:hover {
    color: #E8E6E1;
}

.policy-page__title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.policy-page__updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.policy-page__content section {
    margin-bottom: 32px;
}

.policy-page__content h2 {
    font-size: 22px;
    color: #C39875;
    margin-bottom: 16px;
    font-weight: 600;
}

.policy-page__content h3 {
    font-size: 18px;
    color: #E8E6E1;
    margin: 20px 0 12px;
    font-weight: 600;
}

.policy-page__content p,
.policy-page__content li {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.policy-page__content p {
    margin-bottom: 12px;
}

.policy-page__content ul {
    margin: 12px 0 12px 24px;
}

.policy-page__content li {
    margin-bottom: 8px;
}

.policy-page__content a {
    color: #C39875;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-page__content a:hover {
    color: #E8E6E1;
}

.policy-page__content code {
    font-size: 14px;
    background: rgba(195, 152, 117, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 16px;
    background: rgba(26, 26, 26, 0.97);
    border-top: 1px solid rgba(195, 152, 117, 0.35);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner__inner {
    max-width: 960px;
    margin: 0 auto;
}

.cookie-banner__title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.cookie-banner__text a {
    color: #C39875;
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: #E8E6E1;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-banner__btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Honor', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-banner__btn--primary {
    background: #C39875;
    color: #2B2C27;
}

.cookie-banner__btn--primary:hover {
    background: #B8941E;
}

.cookie-banner__btn--secondary {
    background: transparent;
    color: #C39875;
    border: 1px solid rgba(195, 152, 117, 0.5);
}

.cookie-banner__btn--secondary:hover {
    background: rgba(195, 152, 117, 0.12);
    color: #E8E6E1;
}

body.cookie-banner-visible {
    padding-bottom: 140px;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 80px 0 48px;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }

    body.cookie-banner-visible {
        padding-bottom: 200px;
    }
}
