@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Yanone+Kaffeesatz:wght@300;400;500;600;700&display=swap&subset=cyrillic');

:root {
    --gold: #eec900;
    --gold-light: #F5E7C8;
    --gold-dark: #ccac00;
    --cream: #FFF9F0;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #F5F5F5;
    --gray-dark: #666666;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 40px rgba(212, 175, 55, 0.08);
    --border-radius: 20px;
    --border-radius-small: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--black);
    line-height: 1.5;
    background-color: var(--white);
}

h1,
h2,
h3,
h4 {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-large {
    padding: 14px 36px;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 50px;
    height: 50px;
    display: block;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 50px;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 5px 0;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.nav-list a:hover {
    color: var(--gold);
}

.nav-list a.active {
    color: var(--gold);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 5px 0;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-phone i {
    color: var(--gold);
}

.mobile-actions {
    display: none;
    gap: 10px;
}

.mobile-icon {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.hero {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.gold-text {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.hero-feature i {
    color: var(--gold);
    font-size: 1rem;
}

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

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 50px rgba(212, 175, 55, 0.25);
}


.about {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.about-text {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.schedule-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    color: var(--white);
}

.schedule-card .schedule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.schedule-card .schedule-header i {
    font-size: 1.8rem;
}

.schedule-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.schedule-time {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.schedule-desc {
    opacity: 0.9;
    margin-bottom: 15px;
}

.schedule-divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px 0;
}

.schedule-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 5px;
}

.schedule-metro {
    font-size: 0.9rem;
    opacity: 0.9;
    padding-left: 28px;
}

.services {
    padding: 60px 0;
    background: var(--cream);
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--gray-dark);
    font-size: 1rem;
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white);
    padding: 8px;
    border-radius: 60px;
}

.filter-btn {
    padding: 10px 22px;
    border: none;
    background: transparent;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.prices-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.price-category h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
}

.price-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.price-card {
    background: var(--white);
    border-radius: var(--border-radius-small);
    padding: 15px 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-card-header h4 {
    font-size: 1.3rem;
    font-weight: 400;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.special-services {
    margin-top: 40px;
}

.special-services h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

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

.special-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.special-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.special-card h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.special-card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.special-card .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.special-card .learn-more {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.special-card:hover .learn-more {
    opacity: 1;
}

.special-card .learn-more i {
    font-size: 0.8rem;
    margin-left: 5px;
    color: var(--gold);
}

.abonements {
    padding: 60px 0;
}

.abonement-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 22px;
    border: 2px solid var(--gold);
    background: transparent;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.abonement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.abonement-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.7);
    position: relative;
}

.abonement-card.popular {
    border: 2px solid var(--gold);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.abonement-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.abonement-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.abonement-save {
    display: block;
    color: #27ae60;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.abonement-note {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-dark);
    font-size: 0.9rem;
    padding: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius-small);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.7);
    position: relative;
}

.package-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.package-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.center-link {
    text-align: center;
    margin-top: 40px;
}

.yandex-review {
    padding: 60px 0;
    background: var(--cream);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.review-header i.fa-yandex {
    font-size: 1.8rem;
    color: var(--gold);
}

.review-header span {
    font-size: 1.2rem;
    font-weight: 600;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars i {
    color: var(--gold);
    font-size: 1rem;
}

.rating-value {
    margin-left: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.booking {
    padding: 60px 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    align-items: center;
    border: 1px solid var(--gold);
}

.booking-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.booking-info-text {
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 1rem;
}

.booking-benefits {
    list-style: none;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.booking-benefits i {
    color: var(--gold);
    font-size: 1rem;
}

.booking-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 60px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: var(--border-radius-small);
    font-size: 0.95rem;
    background: var(--white);
    transition: all 0.3s ease;
    resize: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-agreement {
    font-size: 0.8rem;
    color: var(--gray-dark);
    text-align: center;
}

.reviews {
    padding: 60px 0;
    background: var(--cream);
}

.reviews h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.review-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.reviewer {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.reviewer h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.review-stars {
    color: var(--gold);
    font-size: 0.8rem;
}

.review-text {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.9rem;
}

.reviews-more {
    text-align: center;
}

.reviews-more .btn {
    padding: 12px 30px;
}

.reviews-more .btn i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.reviews-more .btn:hover i {
    transform: translateX(4px);
}

.faq {
    padding: 60px 0;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.accordion {
    max-width: 700px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border-radius: var(--border-radius-small);
    margin-bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.accordion-header {
    padding: 18px 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    padding-right: 45px;
}

.accordion-header::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--gold);
    font-size: 0.8rem;
}

.accordion-item.active .accordion-header::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-body {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-body {
    max-height: 400px;
    padding: 0 25px 20px;
}

.accordion-body ul {
    margin: 10px 0 10px 20px;
}

.contacts {
    padding: 60px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacts-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.contacts-info h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--gold);
    width: 35px;
    text-align: center;
}

.contact-item p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-link {
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
}

.schedule-card-large {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 35px;
    border-radius: var(--border-radius);
    color: var(--white);
    height: 100%;
}

.schedule-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.schedule-card-large p {
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.schedule-card-large p i {
    font-size: 1rem;
    margin-top: 3px;
    min-width: 20px;
}

.schedule-note {
    font-weight: 600;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-main img {
    width: 50px;
    height: 50px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.footer-logo p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 250px;
}

.footer-nav h4,
.footer-contacts h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-contacts a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-contacts p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 400px;
    position: relative;
    text-align: center;
    color: var(--white);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--white);
    opacity: 0.8;
}

.modal-crown {
    font-size: 3rem;
    margin-bottom: 15px;
}

.modal h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.modal-btn {
    background: var(--white);
    color: var(--gold);
    display: inline-block;
    padding: 12px 35px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
}

.procedure-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2001;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 20px 0;
}

.procedure-modal.show {
    display: flex;
}

.procedure-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: left;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}

.close-procedure-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-dark);
}

.procedure-modal-content h2 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.procedure-modal-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    margin-bottom: 20px;
}

.procedure-modal-content h3 {
    color: var(--gold);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.procedure-modal-content p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.procedure-modal-content ul {
    color: var(--gray-dark);
    margin-left: 20px;
    margin-bottom: 15px;
}

.procedure-modal-content li {
    margin-bottom: 8px;
}

.page-hero {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1rem;
    color: var(--gray-dark);
}

.abonements-full {
    padding: 2px 0;
}

.abonement-section {
    margin-bottom: 50px;
}

.abonement-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
}

.abonement-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.abonement-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.abonement-card-full {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.7);
    position: relative;
}

.abonement-card-full.popular {
    border: 2px solid var(--gold);
}

.abonement-card-full h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.abonement-card-full .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.economy {
    color: #27ae60;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.packages-section {
    margin-bottom: 50px;
}

.packages-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
}

.packages-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.packages-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.package-card-full {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.7);
    position: relative;
}

.package-card-full.popular {
    border: 2px solid var(--gold);
}

.package-card-full h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.cta-section {
    padding: 40px 0;
    background: var(--cream);
}

.cta-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn {
    background: var(--white);
    color: var(--gold);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-social-link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--gold);
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-image-img {
        max-width: 400px;
    }

    .about-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .abonement-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }

    .procedure-modal {
        align-items: flex-start;
        padding: 10px;
    }

    .procedure-modal-content {
        padding: 30px 20px;
        margin: 20px auto;
        max-height: 95vh;
    }

    .procedure-modal-content img {
        height: 400px;
    }

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

    .hero-image-img {
        max-width: 380px;
        margin: 0 auto;
        border-radius: 20px;
    }

    .header-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-features {
        justify-content: center;
        gap: 15px;
        order: 4;
    }

    .hero-buttons {
        order: 3;
        justify-content: center;
    }

    .hero-image {
        order: 2;
        margin: 20px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about {
        padding: 40px 0;
    }

    .services {
        padding: 40px 0;
    }

    .abonements {
        padding: 40px 0;
    }

    .filter-buttons {
        background: transparent;
        padding: 0;
    }

    .filter-btn {
        background: var(--white);
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 25px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reviews {
        padding: 40px 0;
    }

    .faq {
        padding: 40px 0;
    }

    .contacts {
        padding: 40px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-main {
        justify-content: center;
    }

    .footer-logo p {
        margin-left: auto;
        margin-right: auto;
    }

    .schedule-card-large p {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .abonement-grid-full,
    .packages-grid-full {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 30px 20px;
    }
}

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

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        height: 300px;
    }

    .btn-large {
        width: 100%;
    }

    .modal-content {
        margin: 20px;
        padding: 30px;
    }

    .cta-card {
        padding: 25px 15px;
    }

    .schedule-card-large p {
        flex-direction: row;
    }
}