/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: #e0d6c8;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 80, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(180, 150, 100, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: 100vh;
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section__title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 70px;
    color: #d4af37;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.section__title::before {
    content: '✦';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #d4af37;
    opacity: 0.5;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.btn {
    display: inline-block;
    padding: 20px 45px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 500;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.7s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
    color: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 5px 20px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #f4e4a6 0%, #d4af37 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #000;
}

.btn--light {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.btn--light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #d4af37 0%, rgba(212, 175, 55, 0.8) 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--light:hover {
    color: #0a0a0a;
    border-color: #f4e4a6;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.btn--light:hover::before {
    transform: scaleX(1);
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 300;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo i {
    margin-right: 15px;
    font-size: 2.4rem;
    color: #d4af37;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.nav {
    display: flex;
    gap: 40px;
}

.nav__link {
    text-decoration: none;
    color: #b0a07c;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.05rem;
    padding: 5px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #d4af37, #f4e4a6);
    transition: width 0.4s ease;
}

.nav__link:hover {
    color: #f4e4a6;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav__link:hover::after {
    width: 100%;
}

.phone {
    text-decoration: none;
    color: #d4af37;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.05);
    padding: 12px 25px;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    letter-spacing: 0.5px;
}

.phone:hover {
    color: #f4e4a6;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger span {
    width: 30px;
    height: 1px;
    background-color: #d4af37;
    margin: 4px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Видео-фон для hero секции */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(10, 10, 10, 0.8) 0%,
        rgba(20, 15, 5, 0.7) 50%,
        rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

/* Герой секция */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #f4e4a6;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 
            0 0 40px rgba(212, 175, 55, 0.8),
            0 0 60px rgba(212, 175, 55, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

.hero__text {
    font-size: 1.4rem;
    margin-bottom: 50px;
    line-height: 1.6;
    color: #d4b896;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
    font-weight: 300;
}

/* О нас */
.about {
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(180, 150, 100, 0.02) 0%, transparent 40%),
        linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        rgba(212, 175, 55, 0.5), 
        rgba(212, 175, 55, 0.3), 
        transparent);
}

.about__inner {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.about__image {
    flex: 1;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(212, 175, 55, 0.03) 50%, 
        transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.about__image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        0 0 30px rgba(212, 175, 55, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.6);
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.1) brightness(0.9);
}

.about__image:hover img {
    transform: scale(1.05);
}

.about__content {
    flex: 1;
}

.about__content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #b8a98c;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about__list {
    list-style: none;
    margin-top: 35px;
}

.about__list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: #d0c0a0;
}

.about__list i {
    color: #d4af37;
    margin-right: 20px;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.3));
}

/* ============================================
   ЭЛИТНЫЕ СТИЛИ ДЛЯ СЕКЦИИ УСЛУГ - ЧЁРНОЕ ЗОЛОТО
   ============================================ */

.services {
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.4), 
        transparent);
}

.services .section__title {
    color: #f4e4a6;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Базовые стили для всех карточек услуг */
.service-card {
    background: linear-gradient(135deg, 
        rgba(30, 30, 30, 0.9) 0%, 
        rgba(20, 20, 20, 0.95) 100%);
    border-radius: 2px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(212, 175, 55, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #d4af37, 
        #f4e4a6, 
        #d4af37, 
        transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Стили для карточек с иконками */
.service-card__icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(244, 228, 166, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.service-card__icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(212, 175, 55, 0.2), 
        transparent);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card:hover .service-card__icon {
    transform: scale(1.1);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 0 50px rgba(212, 175, 55, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(244, 228, 166, 0.1) 100%);
}

.service-card__icon i {
    font-size: 45px;
    color: #d4af37;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.service-card:hover .service-card__icon i {
    color: #f4e4a6;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(244, 228, 166, 0.5));
}

.service-card__title {
    color: #f4e4a6;
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
}

.service-card__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        #d4af37, 
        transparent);
}

.service-card__text {
    color: #b8a98c;
    line-height: 1.8;
    font-size: 1.15rem;
    flex-grow: 1;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Специальные стили для карточек с фотографиями */
.service-card-with-photo {
    padding: 0;
    background: none;
    border: none;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.15);
    overflow: visible;
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.95) 0%, 
        rgba(15, 15, 15, 0.98) 100%);
}

.service-card-with-photo::before {
    display: none;
}

.service-card-with-photo:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

.service-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px 2px 0 0;
    filter: brightness(0.8) contrast(1.2) sepia(0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 50%, 
        rgba(10, 10, 10, 0.7) 100%);
}

.service-card-with-photo:hover .service-photo {
    filter: brightness(0.9) contrast(1.3) sepia(0.1);
    transform: scale(1.02);
}

.service-photo-content {
    padding: 45px;
    background: linear-gradient(135deg, 
        rgba(25, 25, 25, 0.95) 0%, 
        rgba(20, 20, 20, 0.98) 100%);
    border-radius: 0 0 2px 2px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card__photo-title {
    color: #f4e4a6;
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.service-card__photo-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e4a6, #d4af37);
}

.service-card__photo-text {
    color: #b8a98c;
    line-height: 1.8;
    font-size: 1.15rem;
    flex-grow: 1;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Декоративные элементы для секции услуг */
.services::after {
    content: '✦ ✦ ✦';
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 1.2rem;
    color: rgba(212, 175, 55, 0.2);
    z-index: 1;
    letter-spacing: 10px;
}

/* Адаптивность для услуг */
@media (max-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 20px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .service-card,
    .service-card-with-photo {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .service-card,
    .service-photo-content {
        padding: 35px 25px;
    }
}

/* Стили для прайс-листа */
.prices {
    background: 
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #0c0c0c 0%, #111 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.price-category {
    margin-bottom: 60px;
    background: linear-gradient(135deg, 
        rgba(30, 30, 30, 0.9) 0%, 
        rgba(25, 25, 25, 0.95) 100%);
    border-radius: 2px;
    padding: 45px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(212, 175, 55, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.price-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        #d4af37, 
        #f4e4a6, 
        #d4af37);
}

.price-category__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f4e4a6;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.price-category__title i {
    font-size: 1.6rem;
    color: #d4af37;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.price-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #d4af37, transparent);
    transition: width 0.3s ease;
}

.price-item:hover {
    padding-left: 15px;
}

.price-item:hover::before {
    width: 100%;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item__name {
    flex: 1;
    font-weight: 400;
    color: #e0d6c8;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
}

.price-item__duration {
    width: 110px;
    text-align: center;
    color: #b8a98c;
    font-size: 1rem;
    background: rgba(212, 175, 55, 0.05);
    padding: 8px 15px;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    font-weight: 300;
}

.price-item__price {
    width: 140px;
    text-align: right;
    font-weight: 500;
    color: #d4af37;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

.prices__note {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(212, 175, 55, 0.02) 100%);
    border-radius: 2px;
    text-align: center;
    font-size: 1.05rem;
    color: #b8a98c;
    border: 1px solid rgba(212, 175, 55, 0.1);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.prices__note i {
    color: #d4af37;
    margin-right: 12px;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.3));
}

/* ============================
   СТИЛИ ДЛЯ КОМАНДЫ 
   ============================ */

.team {
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0c0c0c 0%, #111 100%);
    padding: 100px 0;
}

.team .section__title {
    color: #f4e4a6;
    margin-bottom: 30px;
}

.team__subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #d4af37;
    margin: 70px 0 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    position: relative;
}

.team__subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Главный специалист */
.main-specialist {
    background: linear-gradient(135deg, 
        rgba(35, 35, 35, 0.95) 0%, 
        rgba(25, 25, 25, 0.98) 100%);
    border-radius: 10px;
    padding: 60px;
    margin-bottom: 80px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.15);
}

.main-specialist__inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.main-specialist__photo {
    flex: 0 0 350px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.main-specialist__photo img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.7s ease;
}

.main-specialist__photo:hover img {
    transform: scale(1.05);
}

.main-specialist__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.9) 0%, 
        transparent 100%);
    padding: 30px;
}

.main-specialist__experience {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.main-specialist__info {
    flex: 1;
}

.main-specialist__name {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #f4e4a6;
    margin-bottom: 15px;
    font-weight: 400;
}

.main-specialist__position {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 25px;
    font-weight: 300;
}

.main-specialist__specialization {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.main-specialist__specialization span {
    background: rgba(212, 175, 55, 0.1);
    color: #d0c0a0;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.main-specialist__specialization span:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.main-specialist__bio {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #b8a98c;
    margin-bottom: 35px;
    font-weight: 300;
}

.main-specialist__quote {
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-left: 4px solid #d4af37;
    border-radius: 5px;
    position: relative;
}

.main-specialist__quote i:first-child {
    color: #d4af37;
    font-size: 2rem;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.3;
}

.main-specialist__quote p {
    color: #e0d6c8;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    padding-left: 40px;
}

/* Команда специалистов */
.team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 40px;
}

.team-member {
    background: linear-gradient(135deg, 
        rgba(30, 30, 30, 0.95) 0%, 
        rgba(25, 25, 25, 0.98) 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: all 0.5s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(212, 175, 55, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.3);
}

.team-member__photo {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.team-member:hover .team-member__photo img {
    transform: scale(1.08);
}

.team-member__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.9) 0%, 
        transparent 100%);
    padding: 20px;
}

.team-member__experience {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 500;
}

.team-member__info {
    padding: 35px;
}

.team-member__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #f4e4a6;
    margin-bottom: 10px;
    font-weight: 400;
}

.team-member__position {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 300;
}

.team-member__specialization {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.team-member__specialization span {
    background: rgba(212, 175, 55, 0.08);
    color: #d0c0a0;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.team-member__bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #b8a98c;
    font-weight: 300;
}

/* ============================
   СТИЛИ ДЛЯ ОТЗЫВОВ 
   ============================ */

.reviews {
    background: 
        radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    padding: 100px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.reviews .section__title {
    color: #f4e4a6;
    margin-bottom: 20px;
}

.section__subtitle {
    text-align: center;
    color: #b8a98c;
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 1px;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.review-card {
    background: linear-gradient(135deg, 
        rgba(35, 35, 35, 0.95) 0%, 
        rgba(30, 30, 30, 0.98) 100%);
    border-radius: 10px;
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(212, 175, 55, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.review-card__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f4e4a6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.8rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.review-card__author {
    flex: 1;
}

.review-card__author h4 {
    color: #f4e4a6;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.review-card__author p {
    color: #b8a98c;
    font-size: 0.9rem;
}

.review-card__rating {
    display: flex;
    gap: 5px;
}

.review-card__rating i {
    color: #d4af37;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.3));
}

.review-card__content {
    flex: 1;
    margin-bottom: 25px;
}

.review-card__content p {
    color: #e0d6c8;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
}

.review-card__service {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #b8a98c;
    font-size: 0.95rem;
}

.review-card__service i {
    color: #d4af37;
    font-size: 1.1rem;
}

/* Навигация для отзывов (скрываем, т.к. используем сетку) */
.reviews-navigation {
    display: none;
}

.reviews-cta {
    text-align: center;
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.03) 0%, 
        rgba(212, 175, 55, 0.01) 100%);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.reviews-cta p {
    color: #f4e4a6;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.reviews-external {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.reviews-external p {
    color: #b8a98c;
    font-size: 1rem;
    margin-bottom: 20px;
}

.external-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.external-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    text-decoration: none;
    padding: 12px 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.external-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

/* Контакты */
.contacts {
    background: 
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #0c0c0c 0%, #111 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contacts__inner {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.contacts__info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 20px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(40, 40, 40, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-item i {
    font-size: 1.8rem;
    color: #d4af37;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #f4e4a6;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.contact-item p {
    color: #b8a98c;
    font-size: 1.1rem;
    line-height: 1.6;
}

.phone-link {
    color: #f4e4a6;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #d4af37;
}

.map-link,
.whatsapp-link {
    display: inline-block;
    margin-top: 8px;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.map-link:hover,
.whatsapp-link:hover {
    color: #f4e4a6;
    text-decoration: underline;
}

.contact-social {
    margin-top: 40px;
    padding: 25px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 5px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-social h4 {
    color: #f4e4a6;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #d4af37;
    font-size: 1.8rem;
    transition: all 0.3s;
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-icons a:hover {
    color: #0a0a0a;
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, 
        rgba(30, 30, 30, 0.9) 0%, 
        rgba(25, 25, 25, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-form h3 {
    color: #f4e4a6;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    background: rgba(15, 15, 15, 0.7);
    transition: all 0.3s ease;
    color: #e0d6c8;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8a7f6d;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    background: rgba(20, 20, 20, 0.8);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-notice {
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 3px;
    color: #b8a98c;
    font-size: 0.95rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.form-notice i {
    color: #d4af37;
    margin-right: 8px;
}

.contact-form .btn {
    margin-top: 10px;
    align-self: center;
    min-width: 250px;
}

@media (max-width: 992px) {
    .contacts__inner {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-form {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-item {
        padding: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Подвал */
.footer {
    background: linear-gradient(135deg, #050505 0%, #080808 100%);
    color: #b8a98c;
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #d4af37, 
        #f4e4a6, 
        #d4af37, 
        transparent);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    position: relative;
    z-index: 1;
}

.footer__logo {
    font-size: 2.4rem;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer__copy {
    color: rgba(184, 169, 140, 0.6);
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.footer__social {
    display: flex;
    gap: 30px;
}

.footer__social a {
    color: #d4af37;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer__social a:hover {
    color: #0a0a0a;
    background: linear-gradient(135deg, #d4af37, #f4e4a6);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
    border-color: #f4e4a6;
}

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

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-specialist__inner {
        flex-direction: column;
    }
    
    .main-specialist__photo {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .about__inner,
    .main-specialist__inner,
    .contacts__inner {
        flex-direction: column;
        gap: 50px;
    }
    
    .hero__title {
        font-size: 3.5rem;
    }
    
    .section__title {
        font-size: 2.8rem;
    }
    
    .team__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 40px auto 0;
    }
    
    .main-specialist {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .nav, .phone {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .nav.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        z-index: 1000;
    }
    
    .hero {
        margin-top: 90px;
    }
    
    .hero__title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .hero__text {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section__title {
        font-size: 2.5rem;
    }
    
    .price-category {
        padding: 35px;
    }
    
    .price-category__title {
        font-size: 1.7rem;
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .main-specialist {
        padding: 30px 20px;
    }
    
    .main-specialist__name {
        font-size: 2.2rem;
    }
    
    .main-specialist__position {
        font-size: 1.2rem;
    }
    
    .team-member__photo {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero__title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .service-card,
    .service-photo-content {
        padding: 30px 20px;
    }
    
    .service-card__title,
    .service-card__photo-title {
        font-size: 1.5rem;
    }
    
    .review-card__header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .review-card__author {
        text-align: center;
    }
    
    .review-card__rating {
        justify-content: center;
    }
    
    .main-specialist__photo {
        height: 350px;
    }
    
    .main-specialist__photo img {
        height: 350px;
    }
    
    .main-specialist__specialization {
        justify-content: center;
    }
    
    .external-links {
        flex-direction: column;
        align-items: center;
    }
    
    .external-link {
        width: 200px;
        justify-content: center;
    }
}

/* Добавьте в конец CSS файла */
.service-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px 2px 0 0;
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.5s ease;
}

.service-card-with-photo:hover .service-photo {
    filter: brightness(0.9) contrast(1.2);
    transform: scale(1.03);
}

.service-photo-content {
    padding: 40px 30px;
    background: rgba(30, 30, 30, 0.95);
    flex-grow: 1;
}

.service-card__photo-title {
    color: #f4e4a6;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-card__photo-text {
    color: #b8a98c;
    line-height: 1.7;
    font-size: 1.1rem;
}
