        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            background: #1a1a1a;
            color: #fff;
            overflow-x: hidden;
        }

        /* --- НОВЫЕ СТИЛИ ДЛЯ ПЕРЕКЛЮЧЕНИЯ ЯЗЫКОВ --- */
        /* По умолчанию скрываем все, кроме румынского (можно изменить на .lang-ru, если русский по умолчанию) */
        body.lang-ro .lang-ru,
        body.lang-ro .lang-en { display: none; }

        body.lang-ru .lang-ro,
        body.lang-ru .lang-en { display: none; }

        body.lang-en .lang-ro,
        body.lang-en .lang-ru { display: none; }

        /* Span - это inline-элемент, что идеально для текста.
           Для блочных элементов, если нужно, можно добавить отдельные правила.
        */
        body.lang-ro .lang-ro,
        body.lang-ru .lang-ru,
        body.lang-en .lang-en {
            display: inline; /* Используем inline, т.к. это текст */
        }
        
        /* Для элементов, которые должны быть блоками (как заголовки или p) */
        body.lang-ro .lang-ro.block,
        body.lang-ru .lang-ru.block,
        body.lang-en .lang-en.block {
            display: block;
        }
        /* --- КОНЕЦ НОВЫХ СТИЛЕЙ --- */


        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 60px;
            background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            backdrop-filter: blur(10px);
            text-decoration: none;
        }
        

        .menu-wrapper {
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-icon-link {
            display: inline-block;
            text-decoration: none;
            color: inherit;
        }

        .logo-icon-link:hover,
        .logo-icon-link:visited {
            text-decoration: none;
            color: inherit;
        }

        .logo-text-link,
        .logo-text-link:visited,
        .logo-text-link:hover,
        .logo-text-link:active {
            text-decoration: none !important;
            color: #fff !important; /* Принудительно белый цвет для самой ссылки */
            border-bottom: none;
        }

        .logo-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #0066ff, #00ccff);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            font-weight: bold;
            box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
            animation: pulse 2s ease-in-out infinite;
            background-image: url('../img/logo1.jpg');
            background-size: cover;
            background-position: center;
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
            }
        }

        .logo-text {
            text-decoration: none;
            font-size: 20px;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #00ccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border-bottom: none;
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 5px;
            background: #2a2a2a;
            padding: 8px;
            border-radius: 25px;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
        }

        .lang-btn {
            padding: 8px 16px;
            border: none;
            background: transparent;
            cursor: pointer;
            font-weight: 700;
            color: #666;
            transition: all 0.3s;
            border-radius: 20px;
            font-size: 13px;
        }

        .lang-btn:hover {
            color: #00ccff;
            transform: scale(1.05);
        }
		
        .lang-btn.active {
            color: #ffffff;
            background: linear-gradient(135deg, #0066ff, #00ccff);
            box-shadow: 0 3px 10px rgba(0, 102, 255, 0.4);
        }

        .header-info {
            display: flex;
            gap: 35px;
            align-items: center;
            font-size: 14px;
        }

        .header-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            background: rgba(255,255,255,0.05);
            border-radius: 25px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .header-info-item:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,102,255,0.2);
        }

        .header-info-item span:first-child {
            transition: filter 0.3s;
        }

        .header-info-item:hover span:first-child {
            filter: grayscale(0);
        }

        .phone {
            font-weight: bold;
            font-size: 16px;
            text-decoration: none;
            color: #ffffff;
            transition: color 0.3s;
        }

        .phone:hover {
            color: #00ccff;
        }

        .menu-btn {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #333, #444);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .menu-btn:hover {
            background: linear-gradient(135deg, #0066ff, #00ccff);
            box-shadow: 0 6px 25px rgba(0, 102, 255, 0.5);
        }

        .menu-btn.active {
            background: linear-gradient(135deg, #0066ff, #00ccff);
        }

        .menu-btn .menu-icon {
            transition: transform 0.3s;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 20px;
            background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
            border-radius: 20px;
            padding: 15px 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
            z-index: 2000;
        }

        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #2a2a2a;
        }

        .dropdown-item {
            padding: 15px 25px;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background: linear-gradient(90deg, rgba(0, 102, 255, 0.2), transparent);
            padding-left: 30px;
            color: #00ccff;
        }

        .dropdown-item span:first-child {
            font-size: 20px;
        }

        .hero {
            background: linear-gradient(135deg, #f8f6f3 0%, #e8e4df 100%);
            border-radius: 40px;
            margin: 0 40px 40px;
            padding: 60px 80px 40px;
            position: relative;
            overflow: hidden;
            min-height: 820px;
            display: flex;
            flex-direction: column;
        }

        .hero-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            z-index: 10;
            margin-bottom: 40px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-left h1 {
            font-size: 110px;
            font-weight: 900;
            color: #1a1a1a;
            line-height: 0.9;
            margin-bottom: 0;
            letter-spacing: -4px;
            text-shadow: 2px 2px 0 rgba(0, 102, 255, 0.1);
        }

        .hero-left h1 .line2 {
            display: block;
            background: linear-gradient(135deg, #0066ff, #00ccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-right {
            text-align: right;
            animation: fadeInRight 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .clinic-network {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.3;
        }

        .contact-number {
            font-size: 42px;
            color: #0066ff;
            font-weight: 700;
            margin-bottom: 25px;
            transition: transform 0.3s;
        }

        .contact-number:hover {
            transform: scale(1.05);
        }

        .locations {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
        }

        .location-item {
            background: #fff;
            padding: 12px 22px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1a1a1a;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            animation: slideIn 0.6s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .location-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,102,255,0.15);
        }

        .location-badge {
            background: #0066ff;
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }

        .location-badge.hours {
            background: #1a1a1a;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 10px 16px;
            min-width: 140px;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            font-size: 12px;
        }

        .hours-label {
            color: rgba(255,255,255,0.8);
            font-weight: 600;
            display: flex;
            gap: 4px;
        }

        .hours-value {
            font-weight: 700;
        }

        .opening-badge {
            color: #ff1493;
            font-weight: bold;
            font-size: 13px;
            margin-top: 5px;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        /* Кнопка "Связаться с нами" для мобильной версии - скрыта по умолчанию */
        .mobile-contact-btn {
            display: none;
            text-decoration: none;
        }

        /* Декоративные элементы для мобильной версии - скрыты по умолчанию */
        .hero .mobile-decor {
            display: none;
            position: absolute;
            z-index: 1;
            pointer-events: none;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
        
        .mobile-decor-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 204, 255, 0.15));
            animation: float 4s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-20px) scale(1.1);
                opacity: 0.8;
            }
        }
        
        .mobile-decor-blob {
            position: absolute;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 204, 255, 0.1));
            animation: blob 6s ease-in-out infinite;
        }
        
        @keyframes blob {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            25% {
                transform: translate(10px, -10px) scale(1.05);
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
            50% {
                transform: translate(-5px, 5px) scale(0.95);
                border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
            }
            75% {
                transform: translate(-10px, -5px) scale(1.02);
                border-radius: 70% 30% 40% 60% / 30% 60% 70% 40%;
            }
        }

        .slides-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 0;
        }

        .slide.active {
            opacity: 1;
            pointer-events: auto;
        }

        .promo-section {
            background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
            border-radius: 35px;
            padding: 50px;
            max-width: 520px;
            box-shadow: 0 25px 70px rgba(0, 102, 255, 0.35);
            position: absolute;
            bottom: 60px;
            left: 80px;
            z-index: 5;
            transition: all 0.4s;
        }

        .slide .promo-section {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide.active .promo-section {
            opacity: 1;
            transform: translateY(0);
            animation: floatPromo 3s ease-in-out infinite;
        }

        @keyframes floatPromo {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .promo-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(0, 102, 255, 0.45);
        }

        .promo-section h2 {
            font-size: 38px;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .promo-section .discount {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        }

        .promo-section p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .cta-button {
            background: #fff;
            color: #0066ff;
            border: none;
            padding: 16px 36px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(255,255,255,0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(255,255,255,0.4);
            background: #f0f0f0;
        }

        .cta-button:active {
            transform: translateY(-1px) scale(1.02);
        }

        .pet-image {
            width: 100%;
            max-width: 800px;
            height: 820px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center bottom;
            position: absolute;
            top: 10px;
            left: 57%;
            transform: translateX(-50%);
            z-index: 3;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
        }

        .slide .pet-image {
            opacity: 0;
            transform: translateX(-50%) scale(0.9);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .slide.active .pet-image {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }

        .carousel-controls {
            position: absolute;
            bottom: 100px;
            right: 40px;
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            background: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .carousel-btn:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 25px rgba(0,102,255,0.3);
            background: #0066ff;
            color: #fff;
        }

        .carousel-btn:active {
            transform: scale(1.05);
        }

        .carousel-dots {
            position: absolute;
            bottom: 30px;
            right: 120px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(26, 26, 26, 0.25);
            cursor: pointer;
            transition: all 0.4s;
        }

        .dot:hover {
            background: rgba(0, 102, 255, 0.5);
            transform: scale(1.2);
        }

        .dot.active {
            background: #0066ff;
            width: 32px;
            border-radius: 5px;
        }

        /* Stiluri comune pentru secțiuni */
        .services-preview,
        .staff-preview,
        .prices-preview,
        .contacts-section {
            padding: 80px 40px;
            text-align: center;
            background: #1a1a1a;
        }

        .services-preview h2,
        .staff-preview h2,
        .prices-preview h2,
        .contacts-section h2 {
            font-size: 48px;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #fff, #00ccff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .services-grid,
        .staff-grid,
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Card Servicii */
        .service-card {
            background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
            padding: 70px 30px;
            border-radius: 30px;
            transition: all 0.4s;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #0066ff, #00ccff);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #00ccff;
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: #ccc;
            line-height: 1.6;
            font-size: 15px;
            position: relative;
            z-index: 1;
        }

        .service-card:hover p {
            color: #fff;
        }
		
		/* Card Personal */
        .staff-card {
            background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
            border-radius: 30px;
            transition: all 0.4s;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            padding: 0;
        }
        
        .staff-card:hover {
            transform: translateY(-10px);
            border-color: #00ccff;
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        }

        .staff-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .staff-card .staff-info {
            padding: 25px 30px;
            text-align: left;
        }

        .staff-card h3 {
            font-size: 22px;
            margin-bottom: 8px;
            color: #fff;
        }

        .staff-card p {
            color: #00ccff;
            line-height: 1.6;
            font-size: 15px;
            font-weight: 500;
        }

		/* Card Prețuri */
        .prices-preview {
            background: #252525; /* Un fundal puțin diferit */
        }

        .price-card {
            background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
            border-radius: 30px;
            padding: 30px;
            text-align: left;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            border-color: #00ccff;
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
        }

        .price-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #fff;
        }

        .price-card p {
            color: #ccc;
            line-height: 1.6;
            font-size: 14px;
            flex-grow: 1; /* Împinge prețul în jos */
            margin-bottom: 20px;
        }

        .price-card .price-value {
            font-size: 24px;
            font-weight: 700;
            color: #00ccff;
            text-align: right;
            margin-top: auto;
        }

        /* Secțiune Contacte */
        .contacts-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: flex-start;
        }

        .contacts-info h3 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        .contacts-info p {
            font-size: 16px;
            color: #ccc;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-item .icon {
            font-size: 28px;
            color: #00ccff;
            margin-top: 5px;
        }

        .contact-item div {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-item strong {
            font-size: 18px;
            color: #fff;
            font-weight: 600;
			text-align: left;
        }

        .contact-item a, .contact-item span {
            font-size: 16px;
            color: #eee;
            text-decoration: none;
            transition: color 0.3s;
			text-align: left;
        }

        .contact-item a:hover {
            color: #00ccff;
			text-align: left;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            transition: all 0.3s;
        }
        
        .social-btn .social-icon {
            font-size: 20px;
        }

        .social-btn.whatsapp {
            background: #25D366;
        }
        .social-btn.whatsapp:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .social-btn.viber {
            background: #665CDB; /* Culoare corectă viber */
        }
        .social-btn.viber:hover {
            background: #4C3F99;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 95, 202, 0.3);
        }

        .contacts-map iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border-radius: 20px;
        }

        /* Footer */
        .footer {
            padding: 40px 20px;
            background: #252525;
            text-align: center;
            color: #888;
            font-size: 14px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Decorative Elements */
        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0,102,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 3s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0,204,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        /* ########## ADAPTABILITATE (RESPONSIVE) ########## */

        @media (max-width: 1200px) {
            .hero {
                padding: 60px;
            }
            .hero-left h1 {
                font-size: 90px;
            }
            .pet-image {
                max-width: 600px;
                height: 600px;
                top: 180px;
            }
            .promo-section {
                max-width: 480px;
            }
        }

        @media (max-width: 1024px) {
            .header-info {
                display: none;
            }
            .hero {
                padding: 40px;
                min-height: auto;
            }
            .hero-top {
                flex-direction: column;
                gap: 30px;
            }
            .hero-right {
                text-align: left;
                animation: none;
            }
            .pet-image {
                top: 200px;
                max-width: 500px;
                height: 500px;
            }
            .promo-section {
                max-width: 450px;
                padding: 40px;
            }
            
            .services-grid,
            .staff-grid,
            .prices-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contacts-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 20px 30px;
                flex-wrap: wrap;
                gap: 15px;
            }
            .logo {
                order: 1;
            }
            .menu-wrapper {
                order: 3;
            }
            .hero {
                margin: 0 20px 20px;
                padding: 40px 30px 350px;
                justify-content: flex-start;
            }
            .hero::before {
                width: 200px;
                height: 200px;
                top: -50px;
                right: -50px;
            }
            .hero-top {
                align-items: center;
                text-align: center;
            }
            .hero-right {
                display: none;
            }
            .slides-container,
            .carousel-controls,
            .carousel-dots {
                display: none;
            }
            .hero::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0%;
                transform: translateX(-20%);
                width: 100%;
                max-width: 100%;
                height: 400px;
                background-image: url('../img/try2.png');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                border: none !important;
                outline: none !important;
                box-shadow: none !important;
                border-radius: 0;
                filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
                z-index: 10;
            }
            
            /* Кнопка "Связаться с нами" для мобильной версии в header */
            .mobile-contact-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                flex: 1;
                margin: 0 15px;
                padding: 12px 20px;
                background: linear-gradient(135deg, #0066ff, #00ccff);
                color: #fff;
                text-decoration: none;
                border-radius: 20px;
                font-size: 14px;
                font-weight: 700;
                box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
                transition: all 0.3s;
                text-align: center;
                white-space: nowrap;
                order: 2;
            }

            .mobile-contact-btn:hover,
            .mobile-contact-btn:active {
                transform: translateY(-2px) scale(1.02);
                box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
                background: linear-gradient(135deg, #0052cc, #00b3e6);
            }

            .header-info {
                display: none;
            }

            .lang-switcher {
                display: flex;
                order: 4;
                width: 100%;
                justify-content: center;
                margin-top: 10px;
            }

            /* Декоративные элементы для мобильной версии */
            .hero .mobile-decor {
                display: block;
            }
            
            .mobile-decor-circle:nth-child(1) {
                width: 80px;
                height: 80px;
                bottom: 50px;
                left: 10%;
                animation-delay: 0s;
            }
            
            .mobile-decor-circle:nth-child(2) {
                width: 60px;
                height: 60px;
                bottom: 120px;
                right: 15%;
                animation-delay: 1s;
                background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(0, 102, 255, 0.2));
            }
            
            .mobile-decor-circle:nth-child(3) {
                width: 100px;
                height: 100px;
                bottom: 200px;
                left: 5%;
                animation-delay: 2s;
                background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 204, 255, 0.1));
            }
            
            .mobile-decor-circle:nth-child(4) {
                width: 50px;
                height: 50px;
                bottom: 80px;
                right: 8%;
                animation-delay: 1.5s;
            }
            
            .mobile-decor-circle:nth-child(5) {
                width: 70px;
                height: 70px;
                bottom: 250px;
                right: 5%;
                animation-delay: 0.5s;
                background: linear-gradient(135deg, rgba(0, 204, 255, 0.15), rgba(0, 102, 255, 0.15));
            }
            
            .mobile-decor-circle:nth-child(6) {
                width: 40px;
                height: 40px;
                bottom: 150px;
                left: 20%;
                animation-delay: 2.5s;
            }
            
            .mobile-decor-blob:nth-child(7) {
                width: 120px;
                height: 120px;
                bottom: 100px;
                right: 10%;
                animation-delay: 0s;
            }
            
            .mobile-decor-blob:nth-child(8) {
                width: 90px;
                height: 90px;
                bottom: 180px;
                left: 8%;
                animation-delay: 3s;
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
            .promo-section {
                display: none;
            }
            .services-grid,
            .staff-grid,
            .prices-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .services-preview,
            .staff-preview,
            .prices-preview,
            .contacts-section {
                padding: 60px 20px;
            }
            .services-preview h2,
            .staff-preview h2,
            .prices-preview h2,
            .contacts-section h2 {
                font-size: 36px;
                margin-bottom: 40px;
            }
            .service-card {
                padding: 40px 25px;
            }
            .social-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 20px;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 15px;
            }
            .logo {
                order: 1;
            }
            .menu-wrapper {
                order: 3;
            }
            .logo-text {
                font-size: 18px;
            }
            .logo-icon {
                width: 45px;
                height: 45px;
            }
            .menu-btn {
                width: 45px;
                height: 45px;
            }
            .lang-switcher {
                display: flex;
                order: 4;
                width: 100%;
                justify-content: center;
                margin-top: 10px;
            }
            .hero {
                margin: 0 15px 15px;
                padding: 40px 30px 300px;
                justify-content: flex-start;
            }
            .hero::before {
                width: 120px;
                height: 120px;
                top: -30px;
                right: -30px;
            }
            .hero-left h1 {
                font-size: 80px;
            }
            .contact-number {
                font-size: 28px;
            }
            .clinic-network {
                font-size: 22px;
            }
            .services-preview h2,
            .staff-preview h2,
            .prices-preview h2,
            .contacts-section h2 {
                font-size: 28px;
            }
            .social-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
            .hero::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0%;
                transform: translateX(-20%);
                width: 100%;
                max-width: 100%;
                height: 350px;
                background-image: url('../img/try2.png');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
                border: none !important;
                outline: none !important;
                box-shadow: none !important;
                border-radius: 0;
                filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
                z-index: 10;
            }

            /* Кнопка "Связаться с нами" для мобильной версии 480px */
            .mobile-contact-btn {
                margin: 0 10px;
                padding: 10px 15px;
                font-size: 12px;
            }
            
            .mobile-decor-circle:nth-child(1) {
                width: 60px;
                height: 60px;
                bottom: 30px;
                left: 10%;
            }
            
            .mobile-decor-circle:nth-child(2) {
                width: 45px;
                height: 45px;
                bottom: 80px;
                right: 15%;
            }
            
            .mobile-decor-circle:nth-child(3) {
                width: 70px;
                height: 70px;
                bottom: 120px;
                left: 5%;
            }
            
            .mobile-decor-circle:nth-child(4) {
                width: 35px;
                height: 35px;
                bottom: 50px;
                right: 8%;
            }
            
            .mobile-decor-circle:nth-child(5) {
                width: 50px;
                height: 50px;
                bottom: 150px;
                right: 5%;
            }
            
            .mobile-decor-circle:nth-child(6) {
                width: 30px;
                height: 30px;
                bottom: 100px;
                left: 20%;
            }
            
            .mobile-decor-blob:nth-child(7) {
                width: 90px;
                height: 90px;
                bottom: 70px;
                right: 10%;
            }
            
            .mobile-decor-blob:nth-child(8) {
                width: 70px;
                height: 70px;
                bottom: 120px;
                left: 8%;
            }
        }

        /* --- СТИЛИ ДЛЯ МОДАЛЬНОГО ОКНА --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: #2a2a2a;
            padding: 30px 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 85vh;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255,255,255,0.1);
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
            opacity: 1;
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            color: #fff;
            cursor: pointer;
            transition: transform 0.3s;
            line-height: 1;
        }
        .modal-close-btn:hover {
            transform: scale(1.2);
            color: #00ccff;
        }

        .modal-title {
            font-size: 28px;
            color: #00ccff;
            margin-bottom: 20px;
            text-align: left;
            padding-right: 30px;
        }

        .modal-scroll-content {
            overflow-y: auto;
            padding-right: 15px;
        }
        
        .modal-scroll-content::-webkit-scrollbar {
            width: 8px;
        }
        .modal-scroll-content::-webkit-scrollbar-track {
            background: #1f1f1f;
            border-radius: 4px;
        }
        .modal-scroll-content::-webkit-scrollbar-thumb {
            background: #555;
            border-radius: 4px;
        }
        .modal-scroll-content::-webkit-scrollbar-thumb:hover {
            background: #00ccff;
        }

        .modal-scroll-content h3 {
            font-size: 20px;
            color: #fff;
            margin-top: 20px;
            margin-bottom: 10px;
            border-bottom: 1px solid #444;
            padding-bottom: 5px;
        }
        .modal-scroll-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .modal-scroll-content li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #3a3a3a;
            color: #ccc;
            font-size: 15px;
        }
        .modal-scroll-content li:last-child {
            border-bottom: none;
        }
        .modal-scroll-content li span:first-child {
            padding-right: 20px;
        }
        .modal-scroll-content li span:last-child {
            font-weight: 700;
            color: #fff;
            white-space: nowrap;
            font-size: 16px;
        }
        
        .modal-scroll-content .note {
            font-size: 14px;
            color: #999;
            padding: 10px 0;
            border-bottom: 1px solid #3a3a3a;
        }
        
        .full-price-btn-wrapper {
            text-align: center;
            margin-top: 40px;
        }