        /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Inter", sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        p {margin-top: 14px}
.container p {margin: 0px;}
        .ul {    margin-left: 20px;
    padding-left: 10px;
    padding-top: 10px;}
        
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: #353535;
        }
        
        .whtie {color: white;}
        .btn {
            display: inline-block;
            background: #ff7f00;
            color: white;
            padding: 10px 14px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            font-size: 16px;
            transition: background 0.3s, transform 0.3s;
        }
        
        .btn:hover {
            background: #d56a00;
        }

        .mt-0 {margin-top: 0px!important;}
        .mt-1 {margin-top: 10px!important;}
        .mt-2 {margin-top: 20px!important;}
        .mt-3 {margin-top: 30px!important;}
        .mt-4 {margin-top: 40px!important;}

        .mb-0 {margin-bottom: 0px!important;}
        .mb-1 {margin-bottom: 10px!important;}
        .mb-2 {margin-bottom: 20px!important;}
        .mb-3 {margin-bottom: 30px!important;}
        .mb-4 {margin-bottom: 40px!important;}
        
        /* Шапка */
        header {
            background: rgba(53, 53, 53, 1);
            color: white;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: background 0.3s;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            z-index: 1001;
        }
        
        .logo span {
            color: #ff7f00;
        }
        
        /* Навигация для десктопа */
        .desktop-nav {
            display: flex;
            align-items: center;
        }
        
        .desktop-nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        .desktop-nav ul li {
            margin-left: 20px;
        }
        
        .desktop-nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        
        .desktop-nav ul li a:hover {
        }
        
        .header-phone {
            display: flex;
            align-items: center;
            margin-left:35px !important;
            font-weight: bold;
        }
        
        .header-phone i {
            margin-right: 8px;
            color: #ff7f00;
        }
        
        .callback-btn {
            background: #ff7f00;
            margin-left: 20px;
            padding: 6px 12px;
        }
        
        .callback-btn:hover {
            background: #c0392b;
        }
        
        /* Мобильное меню */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }
        
        .mobile-nav {
            position: fixed;
            display: none;
            top: 72px;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #353535;
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
        }
        

        .onas img {width: 200px; border-radius: 6px}
        
        .mobile-nav.active {
            transform: translateY(0);
        }
        
        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-nav ul li {
            margin: 20px 0;
        }
        
        .mobile-nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 20px;
            transition: color 0.3s;
        }
        
        .mobile-nav ul li a:hover {
            color: #ff7f00;
        }
        
        .mobile-header-phone {
            margin-top: 20px;
            font-size: 18px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-header-phone i {
            margin-right: 10px;
            color: #ff7f00;
        }
        
        .mobile-callback-btn {
            margin-top: 30px;
        }
        
        /* Слайдер */
        .slider {
            position: relative;
            height: 70vh;
            overflow: hidden;
            margin-top: 64px;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            background: rgba(0,0,0,0.5);
            padding: 0 20px;
        }
        
        .slide-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: white;
        }
        
        .slide-content p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 700px;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: white;
        }
        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 24px;
            transition: background 0.3s;
            z-index: 10;
        }
        
        .slider-arrow:hover {
            background: rgba(255,255,255,0.4);
        }
        
        .slider-arrow.prev {
            left: 20px;
        }
        
        .slider-arrow.next {
            right: 20px;
        }
        
        /* О нас */
        .about {
            background: #f9f9f9;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Услуги */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 20px;
        }
        
        /* Работы */
        .portfolio {
            background: #353535;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .portfolio-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            cursor: pointer;
        }
        
        .portfolio-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .portfolio-item:hover img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 0px 4px 12px 22px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        /* Модальное окно для увеличения фото */
        .photo-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .photo-modal-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .photo-modal-content img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }
        
        .close-photo-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(0,0,0,0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .photo-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background 0.3s;
        }
        
        .photo-nav:hover {
            background: rgba(0,0,0,0.8);
        }
        
        .photo-prev {
            left: 20px;
        }
        
        .photo-next {
            right: 20px;
        }
        
        /* Контакты */
        .contact h3 {margin: 0px;}
        .contact-container {
            display: flex;
            gap: 40px;
        }
        .contact-container a { color: #333}
        
        .contact-info, .contact-form {
            flex: 1;
            
        }
        .contact-form {margin-top: -60px}
        .contact-form h2 {padding-bottom: 20px}
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            background: #ff7f00;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
        }
        
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .form-group textarea {
            height: 150px;
        }
        
        /* Футер */
        footer {
            background: #353535;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        .footer-logo span {
            color: #ff7f00;
        }
        
        .footer-nav ul {
            display: flex;
            list-style: none;
        }
        
        .footer-nav ul li {
            margin-left: 20px;
        }
        
        .footer-nav ul li a, a {
            color: white;
            text-decoration: none;
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
        }
        .copyright p {font-size: 12px; margin: 0px;}
        
        /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: modalFade 0.3s;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        @keyframes modalFade {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #777;
        }
        
        .close-modal:hover {
            color: #333;
        }
        
        .modal h2 {
            text-align: center;
            margin-bottom: 20px;
        }
        
        /* Сообщения об успехе/ошибке */
        .message {
            padding: 15px;
            margin: 15px 0;
            border-radius: 5px;
            text-align: center;
            display: none;
        }
        
        .success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .slide-content h1 {
                font-size: 36px;
            }
            
            .slide-content p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-form { margin-top: 5px;}
            
            .mobile-nav {
             display:block;
        }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .slide-content h1 {
                font-size: 28px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
            
            .about-content, .contact-container {
                flex-direction: column;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-nav ul {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-nav ul li {
                margin: 5px 10px;
            }
            
            .header-container {
                padding: 5px 0;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 50px 0;
            }
            
            .slide-content h1 {
                font-size: 24px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
                grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
                gap: 8px;
            }
            .portfolio-item img {height: 104px;}
            
            .photo-nav {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }
        .logo a {color:normal; text-decoration: none}

.price {font-weight: 600; margin-top: 16px !important; text-align: center}
.text-center {text-align: center}
.btn-zakaz {font-size: 14px; padding: 6px 17px; text-align: center; margin-top:10px;}
.white {color: #fff;}