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

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    position: relative;
}

.darkpink {
    background: linear-gradient(to bottom, #aa4e65 0%, #aa4e65 55%, #EFC1CB 85%, #F5CDD3 100%);
    height: 800px;
    position: relative;
}

.darkpink .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes softAppear {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes mediumSway {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2px, -3px) rotate(1deg); }
}

.d {
    font-family: "Coolvetica";
    font-size: 70px;
    color: #ffffff;
    animation: softAppear 1s ease-out forwards, mediumSway 5s ease-in-out infinite 1s;
    margin-bottom: 20px;
}

.v {
    font-family: "Czizh";
    font-size: 70px;
    color: #ffffff;
    right: 0px;
    animation: softAppear 1s ease-out 0.3s forwards, mediumSway 5s ease-in-out infinite 1.3s;
    margin-bottom: 30px;
    text-align: right;
}

.logo2 {
    height: 170px;
    width: auto;
    margin: 0 auto;
    animation: softAppear 1s ease-out 0.6s forwards;
    text-align: left;
}

.pink {
    background: linear-gradient(to bottom, #F5CDD3 0%, #F5CDD3 55%, #e4899d 85%, #aa4e65 100%);
    height: 1100px;
    position: relative;
}

.pink .container {
    height: 100%;
    position: relative;
}

.missia {
    width: 90px;
    height: auto;
    transition: transform 0.3s ease;
    position: absolute;
}

.oboryd, .vrachi, .podxod {
    width: 100px;
    transition: transform 0.3s ease;
    position: absolute;
}

.missia:hover, .oboryd:hover, .vrachi:hover, .podxod:hover {
    transform: scale(1.1);
}

.missia { left: 10%; top: 10px; }
.oboryd { right: 10%; top: 250px; }
.vrachi { left: 10%; top: 480px; }
.podxod { right: 10%; top: 690px; }

.miss, .ob, .vra, .pod {
    font-family: "Czizh";
    color: #5B2B37;
    font-size: 60px;
    position: absolute;
}

.miss { left: 20%; top: 30px; }
.ob { right: 20%; top: 260px; text-align: right; }
.vra { left: 20%; top: 480px; }
.pod { right: 20%; top: 700px; text-align: right; }

.miss2, .ob2, .vra2, .pod2 {
    font-family: "Coolvetica";
    color: #5B2B37;
    font-size: 30px;
    position: absolute;
    letter-spacing: 0.5px;
}

.miss2 { left: 20%; top: 110px; }
.ob2 { right: 20%; top: 350px; text-align: right; }
.vra2 { left: 20%; top: 560px; }
.pod2 { right: 20%; top: 790px; text-align: right; }

.lap2 {
    height: 300px;
    width: auto;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
    animation: gentlePawRight 4s ease-in-out infinite;
}

@keyframes gentlePawRight {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-55%) rotate(3deg); }
}

.sv {
    height: 180px;
    width: auto;
    position: absolute;
    left: 5%;
    bottom: 30px;
    opacity: 0.3;
    animation: wind-sway 3s ease-in-out infinite;
}

@keyframes wind-sway {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-3px, -5px) rotate(1deg); }
}

.darkpink2 {
    background: linear-gradient(to bottom, #aa4e65 0%, #aa4e65 55%, #EFC1CB 85%, #F5CDD3 100%);
    height: 1400px;
    position: relative;
}

.darkpink2 .container {
    height: 100%;
    position: relative;
}

.yy {
    font-family: "Czizh";
    color: #ffffff;
    font-size: 55px;
    text-align: center;
    padding-top: 60px;
}

.dd {
    font-family: "Coolvetica";
    color: #ffffff;
    font-size: 55px;
    text-align: center;
    margin-top: -10px;
}

.glowing-image {
    width: 260px;
    height: auto;
    cursor: pointer;
    transition: all 0.4s ease;
    position: absolute;
    box-shadow: 0 0 20px rgba(255, 180, 200, 0.6);
}

.glowing-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 180, 200, 0.9);
}

#img1 { top: 250px; left: 10%; width: 280px; }
#img2 { top: 250px; left: 50%; transform: translateX(-50%); width: 280px; }
#img3 { top: 250px; right: 10%; width: 280px; }
#img4 { top: 720px; left: 10%; width: 280px; }
#img5 { top: 720px; left: 50%; transform: translateX(-50%); width: 280px; }
#img6 { top: 720px; right: 10%; width: 280px; }

.sv2 {
    height: 180px;
    width: auto;
    position: absolute;
    right: 5%;
    bottom: 30px;
    opacity: 0.3;
    animation: wind-sway 3s ease-in-out infinite;
}

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

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffb4c8;
    font-size: 45px;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    transform: scale(1.2);
    color: #ffffff;
}

.pink3 {
    background: #F5CDD3;
    height: 180px;
    position: relative;
}

footer {
    font-family: "Coolvetica";
    font-size: 24px;
    color: #5B2B37;
    line-height: 1.6;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
}

.copyright, .address {
    font-family: "Coolvetica";
    color: #5B2B37;
}

.logotip {
    height: 80px;
    width: auto;
    position: absolute;
    left: 30px;
    bottom: 20px;
}

.podval {
    position: absolute;
    right: 30px;
    bottom: 10px;
    width: 200px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: none !important;
    border: none !important;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

.back-to-top.show {
    opacity: 0.7;
    visibility: visible;
}

.back-to-top:hover {
    opacity: 1;
}

.back-to-top img {
    width: 60px;
    height: 60px;
    display: block;
}

#urgentCallBtn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 220px;
    height: 60px;
    background: #5B2B37;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: urgent-pulse 2s infinite;
    transition: all 0.3s ease;
}

.urgent-text {
    font-family: "Coolvetica";
    color: #ffffff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#urgentCallBtn:hover {
    transform: scale(1.05);
    animation: urgent-pulse-fast 1s infinite;
}

@keyframes urgent-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(170, 78, 101, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(170, 78, 101, 0); }
}

@keyframes urgent-pulse-fast {
    0%, 100% { box-shadow: 0 0 0 0 rgba(170, 78, 101, 0.6); }
    50% { box-shadow: 0 0 0 15px rgba(170, 78, 101, 0); }
}

@font-face {
    font-family: "Coolvetica";
    src: url("../fonts/Coolvetica.ttf") format("truetype");
}

@font-face {
    font-family: "Czizh";
    src: url("../fonts/Czizh.ttf") format("truetype");
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

.shimmer-dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,220,230,0.9) 40%, rgba(255,200,210,0.5) 70%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 10;
    animation: shimmerBig 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255,200,210,0.8), 0 0 20px rgba(255,180,200,0.5);
}

@keyframes shimmerBig {
    0%, 100% { opacity: 0; transform: scale(0.2) translateY(0); }
    25% { opacity: 1; transform: scale(1.2) translateY(-8px); box-shadow: 0 0 15px rgba(255,220,230,1), 0 0 25px rgba(255,180,200,0.8); }
    50% { opacity: 0.7; transform: scale(0.8) translateY(3px); }
    75% { opacity: 0.9; transform: scale(1) translateY(-3px); }
}

.darkpink .dot-1 { top: 10%; left: 5%; width: 14px; height: 14px; animation-delay: 0s; }
.darkpink .dot-2 { top: 25%; right: 8%; width: 10px; height: 10px; animation-delay: 0.5s; }
.darkpink .dot-3 { bottom: 20%; left: 10%; width: 18px; height: 18px; animation-delay: 1s; }
.darkpink .dot-4 { bottom: 35%; right: 5%; width: 8px; height: 8px; animation-delay: 1.5s; }
.darkpink .dot-5 { top: 50%; left: 15%; width: 12px; height: 12px; animation-delay: 0.8s; }
.darkpink .dot-6 { top: 70%; right: 12%; width: 6px; height: 6px; animation-delay: 2s; }
.darkpink .dot-7 { bottom: 60%; left: 8%; width: 9px; height: 9px; animation-delay: 0.3s; }

.pink .dot-1 { top: 8%; left: 3%; width: 12px; height: 12px; animation-delay: 0.2s; }
.pink .dot-2 { top: 20%; right: 6%; width: 16px; height: 16px; animation-delay: 0.7s; }
.pink .dot-3 { bottom: 30%; left: 5%; width: 8px; height: 8px; animation-delay: 1.2s; }
.pink .dot-4 { bottom: 50%; right: 10%; width: 14px; height: 14px; animation-delay: 1.8s; }
.pink .dot-5 { top: 60%; left: 12%; width: 7px; height: 7px; animation-delay: 0.5s; }
.pink .dot-6 { top: 85%; right: 15%; width: 11px; height: 11px; animation-delay: 2.2s; }

.darkpink2 .dot-1 { top: 5%; left: 4%; width: 15px; height: 15px; animation-delay: 0.1s; }
.darkpink2 .dot-2 { top: 15%; right: 7%; width: 9px; height: 9px; animation-delay: 0.6s; }
.darkpink2 .dot-3 { bottom: 40%; left: 8%; width: 13px; height: 13px; animation-delay: 1.1s; }
.darkpink2 .dot-4 { bottom: 25%; right: 5%; width: 7px; height: 7px; animation-delay: 1.7s; }
.darkpink2 .dot-5 { top: 45%; left: 20%; width: 10px; height: 10px; animation-delay: 0.4s; }
.darkpink2 .dot-6 { top: 70%; right: 12%; width: 8px; height: 8px; animation-delay: 2.1s; }
.darkpink2 .dot-7 { bottom: 10%; left: 15%; width: 6px; height: 6px; animation-delay: 1.4s; }

.sparkle-star {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    animation: sparkleTwinkle 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(255,200,210,0.8));
}

@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.2) rotate(0deg); }
    30% { opacity: 1; transform: scale(1.2) rotate(180deg); }
    60% { opacity: 0.6; transform: scale(0.8) rotate(90deg); }
}

.darkpink .star-1 { top: 15%; left: 20%; width: 9px; height: 9px; animation-delay: 0.3s; }
.darkpink .star-2 { top: 40%; right: 18%; width: 7px; height: 7px; animation-delay: 0.9s; }
.darkpink .star-3 { bottom: 25%; left: 25%; width: 11px; height: 11px; animation-delay: 1.5s; }

.pink .star-1 { top: 12%; left: 25%; width: 8px; height: 8px; animation-delay: 0.4s; }
.pink .star-2 { top: 55%; right: 20%; width: 10px; height: 10px; animation-delay: 1.1s; }
.pink .star-3 { bottom: 40%; left: 18%; width: 6px; height: 6px; animation-delay: 1.8s; }

.darkpink2 .star-1 { top: 8%; left: 30%; width: 9px; height: 9px; animation-delay: 0.2s; }
.darkpink2 .star-2 { top: 60%; right: 25%; width: 7px; height: 7px; animation-delay: 1.3s; }
.darkpink2 .star-3 { bottom: 20%; left: 35%; width: 8px; height: 8px; animation-delay: 0.7s; }

@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    
    .d, .v { font-size: 50px; }
    .logo2 { height: 120px; }
    
    .miss, .ob, .vra, .pod { font-size: 45px; }
    .miss2, .ob2, .vra2, .pod2 { font-size: 24px; }
    
    .missia, .oboryd, .vrachi, .podxod { width: 70px; }
    
    .glowing-image { width: 220px !important; }
    #img1, #img2, #img3, #img4, #img5, #img6 { width: 220px !important; }
    
    .yy, .dd { font-size: 45px; }
    .darkpink2 { height: 1200px; }
    #img4, #img5, #img6 { top: 630px; }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    
    .darkpink { height: auto; min-height: 600px; padding: 60px 0; }
    .d, .v { font-size: 32px; text-align: center; }
    .v { text-align: center; }
    .logo2 { height: 100px; }
    
    .pink { height: auto; padding-bottom: 80px; }
    .missia, .oboryd, .vrachi, .podxod {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin: 0 auto 20px;
        display: block;
        width: 80px;
    }
    .miss, .ob, .vra, .pod {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        text-align: center;
        font-size: 32px;
        margin: 20px 0 10px;
    }
    .miss2, .ob2, .vra2, .pod2 {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        text-align: center;
        font-size: 18px;
        margin-bottom: 40px;
    }
    .lap2, .sv { display: none; }
    
    .darkpink2 { height: auto; padding-bottom: 80px; }
    .yy, .dd { font-size: 32px; }
    .glowing-image {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 20px auto !important;
        display: block;
        width: 260px !important;
    }
    .sv2 { display: none; }
    
    .shimmer-dot, .sparkle-star { display: none !important; }
    
    .back-to-top img { width: 45px; height: 45px; }
    #urgentCallBtn { width: 180px; height: 50px; }
    .urgent-text { font-size: 16px; }
}

@media (max-width: 480px) {
    .d, .v { font-size: 24px; }
    .logo2 { height: 80px; }
    
    .miss, .ob, .vra, .pod { font-size: 26px; }
    .miss2, .ob2, .vra2, .pod2 { font-size: 16px; }
    
    .yy, .dd { font-size: 24px; }
    .glowing-image { width: 220px !important; }
}