* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #C88EA7;
    --primary-dark: #B76E79;
    --secondary: #3A2E33;
    --bg-light: #F5E9EA;
    --bg-dark: #2D2327;
    --text-dark: #3A2E33;
    --text-light: #6B5A62;
    --white: #FFFFFF;
    --gold: #C6A75E;
    --shadow-sm: 0 10px 30px rgba(200, 142, 167, 0.1);
    --shadow-md: 0 20px 40px rgba(200, 142, 167, 0.15);
    --shadow-lg: 0 30px 60px rgba(200, 142, 167, 0.2);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 5;
}

/* Фирменный паттерн */
.pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 5L55 30L30 55L5 30L30 5Z" stroke="%23C88EA7" fill="none" opacity="0.03" stroke-width="0.5"/></svg>');
    pointer-events: none;
    z-index: 0;
}

/* Фирменные бабочки */
.butterfly-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23C88EA7" opacity="0.08"><path d="M12 2C8 2 4 5 4 9c0 4 8 13 8 13s8-9 8-13c0-4-4-7-8-7z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

.b-icon-1 { top: 10%; left: 5%; width: 80px; height: 80px; animation-delay: 0s; }
.b-icon-2 { bottom: 20%; right: 5%; width: 100px; height: 100px; animation-delay: -5s; }
.b-icon-3 { top: 40%; right: 10%; width: 50px; height: 50px; animation-delay: -10s; }

/* Декоративные линии */
.decor-line {
    position: fixed;
    height: 2px;
    background: var(--gradient);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 30%;
    transform: skewY(-5deg);
}

.line-2 {
    bottom: 30%;
    right: 0;
    width: 40%;
    transform: skewY(5deg);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    75% { transform: translate(-20px, 20px) rotate(-5deg); }
}

/* Липкая кнопка WhatsApp */
.sticky-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 16px 30px;
    border-radius: 60px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.sticky-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(200, 142, 167, 0.1);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--gradient);
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8 2 4 5 4 9c0 4 8 13 8 13s8-9 8-13c0-4-4-7-8-7z"/></svg>') center/contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8 2 4 5 4 9c0 4 8 13 8 13s8-9 8-13c0-4-4-7-8-7z"/></svg>') center/contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 300;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-phone {
    color: var(--primary-dark) !important;
    font-weight: 600 !important;
    text-decoration: none;
    border-left: 2px solid var(--primary);
    padding-left: 20px;
}

.mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Главный экран */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    margin-top: -80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: -2;
    transform: scale(1.05);
    animation: zoom 20s infinite alternate;
}

@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 46, 51, 0.85) 0%, rgba(200, 142, 167, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 60px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: white;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8 2 4 5 4 9c0 4 8 13 8 13s8-9 8-13c0-4-4-7-8-7z"/></svg>') center/contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8 2 4 5 4 9c0 4 8 13 8 13s8-9 8-13c0-4-4-7-8-7z"/></svg>') center/contain;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--text-dark);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Бренды */
.brands-bar {
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

.brands-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.brands-grid span {
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Секции */
section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--gradient);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-dark);
}

/* О нас */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.2;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') center/contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') center/contain;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.certificates {
    display: flex;
    gap: 15px;
}

.certificates img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: var(--white);
    padding: 5px;
    box-shadow: var(--shadow-sm);
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.years {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-dark);
    line-height: 1;
}

/* Услуги */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: var(--gradient);
    color: white;
    transform: scale(1.05);
}

.service-card.featured .price-tag,
.service-card.featured .service-list span {
    color: white;
    opacity: 0.9;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-card.featured .card-icon {
    background: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(200, 142, 167, 0.2);
}

.service-list span:last-child {
    font-weight: 600;
    color: var(--primary-dark);
}

.service-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Прайс-лист */
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.price-category {
    background: var(--white);
    padding: 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.price-category.dark {
    background: var(--secondary);
    color: white;
}

.price-category.dark .price-row {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-category.dark .price-value {
    color: var(--gold);
}

.price-category h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(200, 142, 167, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.price-row:hover {
    padding-left: 10px;
    background: rgba(200, 142, 167, 0.05);
    border-radius: 10px;
}

.price-value {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Галерея */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: color 0.3s;
}

.instagram-link:hover {
    color: var(--primary-dark);
}

/* Отзывы */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-header h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Запись */
.booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--gradient);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: white;
}

.booking-content {
    padding: 60px;
}

.booking-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.booking-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.booking-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-wa {
    background: #25D366;
    color: white;
    padding: 16px;
    border-radius: 60px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-wa:hover {
    background: #20b859;
    transform: translateY(-2px);
}

.btn-ig {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    color: white;
    padding: 16px;
    border-radius: 60px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-ig:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.booking-features {
    display: flex;
    gap: 20px;
}

.bf-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Контакты */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contacts-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

.contacts-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Футер */
.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 20px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-social a {
    font-size: 1.3rem;
    margin: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-brands {
    display: flex;
    gap: 20px;
}

/* Анимации */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .services-grid,
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-btn {
        display: block;
    }
    
    .about-grid,
    .booking-card,
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .reviews-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .price-grid,
    .reviews-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .brands-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .booking-content {
        padding: 40px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
/* ===== ЯРКИЕ БАБОЧКИ, ЛЕТАЮЩИЕ ПО ВСЕМУ САЙТУ ===== */
.butterfly-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.butterfly {
    position: absolute;
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(200, 142, 167, 0.8));
    will-change: transform;
    opacity: 0.8;
}

/* Разные цвета для бабочек */
.butterfly-1 { color: #C88EA7; } /* розовая */
.butterfly-2 { color: #C6A75E; } /* золотая */
.butterfly-3 { color: #B76E79; } /* тёмно-розовая */
.butterfly-4 { color: #D4A5A5; } /* светло-розовая */
.butterfly-5 { color: #A78EA7; } /* лавандовая */
.butterfly-6 { color: #E8B4B4; } /* нежно-розовая */

/* SVG стили */
.butterfly svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

/* Анимация крыльев */
.butterfly-wing-left,
.butterfly-wing-right {
    animation: flapWings 2s infinite ease-in-out;
    transform-origin: center;
}

.butterfly-wing-left {
    animation: flapLeft 2s infinite ease-in-out;
}

.butterfly-wing-right {
    animation: flapRight 2s infinite ease-in-out;
}

@keyframes flapLeft {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-15deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(10deg) scale(0.95); }
}

@keyframes flapRight {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(15deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-10deg) scale(0.95); }
}

/* Разные траектории для каждой бабочки */
.butterfly-1 {
    animation: floatPath1 35s infinite linear;
    top: 5%;
    left: 0%;
}

.butterfly-2 {
    animation: floatPath2 32s infinite linear;
    top: 15%;
    left: 10%;
}

.butterfly-3 {
    animation: floatPath3 38s infinite linear;
    top: 25%;
    left: 20%;
}

.butterfly-4 {
    animation: floatPath1 40s infinite linear reverse;
    top: 35%;
    left: 30%;
}

.butterfly-5 {
    animation: floatPath2 30s infinite linear;
    top: 45%;
    left: 40%;
}

.butterfly-6 {
    animation: floatPath3 42s infinite linear reverse;
    top: 55%;
    left: 50%;
}

@keyframes floatPath1 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    20% { transform: translate(30vw, -10vh) rotate(15deg) scale(1.1); }
    40% { transform: translate(60vw, 20vh) rotate(-20deg) scale(0.9); }
    60% { transform: translate(80vw, 40vh) rotate(25deg) scale(1.2); }
    80% { transform: translate(40vw, 70vh) rotate(-15deg) scale(0.95); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes floatPath2 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(50vw, -15vh) rotate(-20deg) scale(1.15); }
    50% { transform: translate(90vw, 30vh) rotate(30deg) scale(0.9); }
    75% { transform: translate(30vw, 80vh) rotate(-25deg) scale(1.1); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes floatPath3 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    15% { transform: translate(20vw, -20vh) rotate(10deg) scale(1.05); }
    35% { transform: translate(70vw, 10vh) rotate(-30deg) scale(0.95); }
    55% { transform: translate(90vw, 50vh) rotate(35deg) scale(1.2); }
    75% { transform: translate(50vw, 80vh) rotate(-20deg) scale(1.1); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

/* Параллакс при движении мыши */
.butterfly {
    transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
}

/* Меньше бабочек на мобильных */
@media (max-width: 768px) {
    .butterfly-4,
    .butterfly-5,
    .butterfly-6 {
        display: none;
    }
    
    .butterfly {
        width: 80px;
        height: 80px;
        opacity: 0.6;
    }
}
/* Галерея */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(200, 142, 167, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(200, 142, 167, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(58, 46, 51, 0.9), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C88EA7;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 20px;
    padding: 10px 25px;
    border: 2px solid #C88EA7;
    border-radius: 50px;
    transition: all 0.3s;
}

.instagram-link:hover {
    background: #C88EA7;
    color: white;
}

.instagram-link i {
    font-size: 1.3rem;
}

/* Сертификаты */
.certificates {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.certificates img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(200, 142, 167, 0.15);
    transition: all 0.3s;
}

.certificates img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 142, 167, 0.25);
}

/* Адаптивность для галереи */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .certificates {
        justify-content: center;
    }
}
/* ===== КАРТА В РАМОЧКЕ ===== */
.contacts-map {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 5px solid white;
    transition: all 0.3s ease;
}

.map-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -10px rgba(200, 142, 167, 0.4);
    border-color: #C88EA7;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Декоративный элемент для карты (необязательно) */
.map-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #C88EA7 0%, #B76E79 100%);
    border-radius: 40px;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.map-frame:hover::before {
    opacity: 0.5;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .contacts-map {
        height: 350px;
        margin-top: 30px;
    }
    
    .map-frame {
        border-width: 3px;
    }
}

@media (max-width: 480px) {
    .contacts-map {
        height: 300px;
    }
}
.certificates {
    display: none !important;
}