/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ec7499, #d45a7e);
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(236, 116, 153, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #d45a7e, #ec7499);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(236, 116, 153, 0.4);
}

/* Шапка */
header {
    background-color: #fff;
    padding: 0px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.header-content {
	padding: 8px 0; /* Переносим паддинг с header на header-content */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ec7499;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    position: relative;
    margin: 0 10px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 10px 5px 15px 5px;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ec7499;
    bottom: 5px;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #ec7499;
}

nav ul li a:hover:after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    padding: 15px 0;
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #fff5f8;
    color: #ec7499;
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.header-contacts {
    text-align: right;
}

.header-contacts a.phone {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.header-contacts a.phone:hover {
    color: #ec7499;
}

.header-contacts p {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.social-links a {
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 22px rgba(236,116,153,0.18);
    background: linear-gradient(135deg, #ec7499, #d45a7e);
}

.social-links i {
    color: #ec7499;
    font-size: 18px;
    transition: color 0.18s ease;
}

.social-links a:hover i {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #ec7499;
    color: #fff;
}

/* Герой секция */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('pics/hero.webp') no-repeat center center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 100;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Улучшение героя на мобильных: центрирование текста и кнопки, фон для читаемости */
@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
        height: auto;
        padding-top: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        text-align: center;
        box-sizing: border-box;
        background-position: center 25%;
        background-size: cover;
        overflow: hidden;
    }

    .hero-content {
        position: static;
        width: calc(100% - 32px);
        max-width: 520px;
        padding: 16px 16px 20px;
        background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.45));
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.45);
        box-sizing: border-box;
        margin: 0 auto;
        z-index: 3;
    margin-top: 26vh; /* смещение ниже, чтобы блок был визуально по центру */
    }

    /* Для очень узких экранов немного поднимем блок, чтобы кнопка была видна */
    @media (max-width: 380px) {
        .hero-content { top: 60%; }
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.05;
        margin-bottom: 8px;
        text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 14px;
        color: #f6f6f6;
        text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }

    .hero .btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 12px 18px;
        font-size: 15px;
        border-radius: 30px;
    }
}

/* Основной контент */
.main-content {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, #ec7499, transparent);
    margin: 15px auto;
}

/* Прайс-лист */
.price-section {
    padding: 30px 0;
    background-color: #fff;
}

.price-category {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #fff;
}

.price-category-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.price-category-header:hover {
    background-color: #fff5f8;
}

.price-category-title {
    font-size: 16px;
}

.toggle-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f8f8f8;
    color: #ec7499;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.price-category.open .toggle-icon {
    background-color: #ec7499;
    color: #fff;
    transform: rotate(180deg);
}

.price-services {
    overflow: hidden;
    transition: max-height 0.35s ease;
    max-height: 0;
    padding: 0 12px;
}

.price-service {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f6f6f6;
    align-items: center;
}

.price-service:last-child {
    border-bottom: none;
}

.service-name {
    flex: 2;
    font-size: 14px;
    color: #333;
}

.service-time {
    flex: 0 0 90px;
    font-size: 13px;
    color: #777;
}

.service-price {
    flex: 0 0 90px;
    text-align: right;
    font-weight: 700;
    color: #ec7499;
}

/* Портфолио */
.portfolio {
    background-color: #fff;
    padding: 100px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Интерьер */
.interior {
    padding: 100px 0;
    background-color: #f9f9f9;
}

/* Отзывы */
.reviews {
    padding: 100px 0;
    background-color: #fff;
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ec7499;
}

.avatar-placeholder {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.review-name {
    font-weight: 700;
    color: #333;
    font-size: 18px;
}

.review-date {
    font-size: 14px;
    color: #888;
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.review-rating {
    color: #ffc107;
    margin-top: 15px;
}

/* Контакты */
.contacts {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    color: #ec7499;
    margin-bottom: 20px;
    font-size: 26px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #ec7499;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-details p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.contact-details i {
    margin-right: 15px;
    color: #ec7499;
    width: 20px;
    font-size: 18px;
}

.map {
    height: 350px;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Новости и акции */
.news-promotions {
    padding: 50px 0 30px 0;
    background-color: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Cormorant Garamond', serif;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-date {
    color: #999;
    font-size: 14px;
}

/* Блок акции */
.news-alert {
    background: linear-gradient(135deg, #ec7499 0%, #d45a7e 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    box-shadow: 0 2px 15px rgba(236, 116, 153, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-alert-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
}

.news-alert-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}

.news-alert-text {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.news-alert-text h3 {
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-alert-text p {
    font-size: 13px;
    opacity: 0.95;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-alert-meta {
    display: flex;
    align-items: center;
    font-size: 11px;
    opacity: 0.9;
    white-space: nowrap;
}

.news-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.news-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Уведомление в шапке */
.header-news-alert {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 8px 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.header-news-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.header-news-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-news-text {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.header-news-text span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-news-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.header-news-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
/*
body.has-notification header {
    top: 40px;
}
/*
/* Вакансии */
.vacancies {
    padding: 80px 0;
    background: #fafafa;
}

.vacancies-intro {
    margin-bottom: 50px;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h3 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.intro-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 180px;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ec7499, #d45a7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 16px;
    color: white;
}

.highlight-text h4 {
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.positions-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.positions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 50px;
    align-items: start;
}

.position-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 0;
    width: 100%;
}

.position-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.position-card.urgent {
    border: 2px solid #ff6b6b;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.15);
}

.position-header {
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.position-title {
    flex: 1;
}

.position-header h4 {
    font-size: 22px;
    color: #333;
    margin: 0 0 12px 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.position-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.detail-item i {
    color: #ec7499;
    font-size: 14px;
    width: 14px;
}

.position-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.position-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-content: start;
    padding: 25px 30px;
}

.vacancy-desc-section {
    grid-column: 1 / -1;
    margin-bottom: 18px;
}

.vacancy-desc-section h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.vacancy-desc-text {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.requirements-section,
.offer-section {
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

.requirements-section h5,
.offer-section h5 {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.requirements-list,
.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    flex: 1;
}

.requirements-list li,
.offer-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 16px;
}

.requirements-list li:before {
    content: '•';
    color: #ec7499;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.offer-list li:before {
    content: '✓';
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 12px;
}

.vacancies-cta {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: none;
    width: 100%;
    margin: 50px auto 0;
}

.cta-content {
    padding: 40px 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.cta-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #333;
}

.cta-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-methods .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    min-width: 180px;
    justify-content: center;
    flex: 1;
    max-width: 200px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.btn-phone {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
    color: white;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.alert.alert-info {
    background: linear-gradient(90deg, #eaf6ff 60%, #f9eaf6 100%);
    color: #3178c6;
    border: 1px solid #b3d8fd;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    margin: 2rem auto;
    text-align: center;
    font-size: 1.15rem;
    max-width: 500px;
    box-shadow: 0 2px 10px rgba(49,120,198,0.07);
}

/* Футер */
footer {
    background: linear-gradient(to right, #333, #222);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 110px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links h3 {
    color: #ec7499;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ec7499;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: #ec7499;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

/* Плавающая кнопка записи */
.floating-booking-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    padding: 0 25px;
    height: 70px;
    background: linear-gradient(135deg, #ec7499, #d45a7e);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(236, 116, 153, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

.floating-booking-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(236, 116, 153, 0.5);
}

.floating-booking-btn i {
    color: #fff;
    font-size: 28px;
    margin-right: 10px;
}

.floating-booking-btn span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 116, 153, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(236, 116, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(236, 116, 153, 0);
    }
}

/* Адаптивность */
@media (max-width: 1100px) {
    .header-contacts p {
        display: block;
    }
    
    nav ul li {
        margin: 0 8px;
    }
    
    nav ul li a {
        font-size: 13px;
    }
}

@media (max-width: 980px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .header-contacts {
        text-align: center;
        margin: 15px 0;
        order: 3;
        flex: 1;
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
    }
    
    nav {
        order: 4;
        width: 100%;
        margin-top: 20px;
        display: none;
    }
    
    nav.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }
    
    nav ul {
        flex-direction: column;
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        display: none;
        opacity: 1;
        transform: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .logo img {
        width: 110px;
        height: 110px;
    }
    
    header.scrolled .logo img {
        width: 75px;
        height: 75px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .services,
    .gallery,
    .review-cards,
    .contact-content,
    .footer-content,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 34px;
    }

    
    .header-contacts a.phone {
        font-size: 16px;
    }
    
    .logo img {
        width: 100px;
        height: 100px;
    }
    
    header.scrolled .logo img {
        width: 70px;
        height: 70px;
    }
    
    .header-contacts p {
        font-size: 13px;
        margin-top: 6px;
        color: #666;
    }

    .price-service {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 8px 10px;
        align-items: center;
        padding: 8px 6px;
        border-radius: 6px;
        background: #fff;
        margin: 6px 0;
    }

    .service-name {
        font-size: 14px;
        font-weight: 600;
        color: #222;
    }

    .service-time {
        font-size: 12px;
        color: #666;
        text-align: right;
        white-space: nowrap;
    }

    .service-price {
        font-size: 14px;
        color: #e85b86;
        font-weight: 700;
        text-align: right;
        white-space: nowrap;
    }

    .price-category-header {
        padding: 10px 12px;
        font-size: 15px;
    }

    .price-services {
        padding: 6px;
    }

    .news-card {
        margin-bottom: 20px;
    }

    .header-news-alert {
        padding: 8px 0;
        font-size: 13px;
        min-height: auto;
        align-items: flex-start;
    }
    
    .header-news-content {
        gap: 8px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .header-news-badge {
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .header-news-text {
        text-align: left;
        flex: 1;
        min-width: 0;
    }
    
    .header-news-text span {
        white-space: normal;
        text-align: left;
        line-height: 1.3;
        display: block;
    }
    
    .header-news-close {
        margin-top: 2px;
        flex-shrink: 0;
    }

    .vacancies {
        padding: 60px 0;
    }
    
    .intro-text h3 {
        font-size: 28px;
    }
    
    .intro-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 250px;
    }
    
    .position-header {
        flex-direction: column;
        text-align: left;
        gap: 15px;
        padding: 20px 25px;
    }
    
    .position-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .position-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 25px;
    }
    
    .requirements-section,
    .offer-section {
        min-height: auto;
    }
    
    .vacancies-cta {
        margin: 30px auto 0;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-methods .btn {
        max-width: 250px;
        width: 100%;
    }
    
    .cta-text h3 {
        font-size: 22px;
    }
    
    .positions-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 90px;
        height: 90px;
    }
    
    header.scrolled .logo img {
        width: 65px;
        height: 65px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 15px;
    }

    .header-news-badge span {
        display: none;
    }
    
    .header-news-badge {
        padding: 4px 6px;
    }
    
    .header-news-badge i {
        margin: 0;
    }
    
    .header-news-text span {
        font-size: 12px;
    }

    .positions-list {
        grid-template-columns: 1fr;
    }
    
    .position-header h4 {
        font-size: 20px;
    }
    
    .position-badge {
        align-self: flex-start;
    }
    
    .cta-text h3 {
        font-size: 20px;
    }
    
    .cta-text p {
        font-size: 14px;
    }
    
    .intro-text h3 {
        font-size: 24px;
    }
    
    .intro-text p {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .header-news-badge {
        display: none;
    }
    
    .header-news-text span {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .header-news-close {
        width: 20px;
        height: 20px;
    }
    
    .header-news-close i {
        font-size: 12px;
    }

    .position-header {
        padding: 15px 20px;
    }
    
    .position-content {
        padding: 15px 20px;
    }
    
    .cta-content {
        padding: 25px 15px;
    }
    
    .contact-methods .btn {
        min-width: auto;
        padding: 12px 18px;
    }
}

/* Улучшенная плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Предотвращаем горизонтальный скролл */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
/* Офлайн индикатор */
.offline-indicator {
    display: none;
    background: #ff4757;
    color: white;
    text-align: center;
    padding: 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
}

body.offline .offline-indicator {
    display: block;
}

/* Если есть уведомление в шапке, сдвигаем офлайн-индикатор ниже */
body.has-notification .offline-indicator {
    top: 40px;
}
/* Стили для email ссылок */
a[href^="mailto:"] {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

a[href^="mailto:"]:hover {
    color: #ec7499;
    text-decoration: underline;
}

/* Стили для иконки конверта */
.contact-details .fa-envelope {
    margin-right: 15px;
    color: #ec7499;
    width: 20px;
    font-size: 18px;
}
/* Стили для футера документов */
.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.footer-links ul li a:hover {
    color: #ec7499;
    padding-left: 5px;
}

.copyright p {
    margin: 5px 0;
    line-height: 1.4;
}
/* Стили для секции оставления отзыва */
.leave-review-section {
    background: linear-gradient(135deg, #fff5f8 0%, #ffeef3 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-top: 50px;
    border: 1px solid #ffe6ee;
    position: relative;
    overflow: hidden;
}

.leave-review-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(236, 116, 153, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.leave-review-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.leave-review-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.leave-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ec7499, #d45a7e);
    color: #fff;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(236, 116, 153, 0.3);
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
}

.leave-review-btn:hover {
    background: linear-gradient(135deg, #d45a7e, #ec7499);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 116, 153, 0.4);
    color: #fff;
    text-decoration: none;
}

.leave-review-btn:active {
    transform: translateY(-1px);
}

.leave-review-btn i {
    font-size: 16px;
}

.review-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.review-platform i {
    color: #ff0000;
    font-size: 16px;
}

/* Адаптивность для секции отзывов */
@media (max-width: 768px) {
    .leave-review-section {
        padding: 30px 20px;
        margin-top: 40px;
        border-radius: 15px;
    }
    
    .leave-review-content h3 {
        font-size: 24px;
    }
    
    .leave-review-content p {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .leave-review-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .leave-review-section {
        padding: 25px 15px;
        margin-top: 30px;
    }
    
    .leave-review-content h3 {
        font-size: 22px;
    }
    
    .leave-review-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}