
/* Основной баннер */
.hero-banner {
	padding-top: 100px;
	background: linear-gradient(to right, #f8f9fa, #e9ecef);
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero-content {
	padding: 2rem;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.offer-highlight {
	color: #2c7da0;
	font-weight: bold;
}

.benefits-list {
	list-style-type: none;
	padding: 0;
}

.benefits-list li {
	margin-bottom: 10px;
	padding-left: 30px;
	position: relative;
}

.benefits-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #2c7da0;
	font-weight: bold;
}

.btn-primary {
	background-color: #2c7da0;
	border-color: #2c7da0;
	padding: 12px 30px;
	font-weight: bold;
	transition: all 0.3s;
}

.btn-primary:hover {
	background-color: #1a5d7a;
	border-color: #1a5d7a;
	transform: translateY(-2px);
}

.window-img {
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.window-img:hover {
	transform: scale(1.02);
}

.guarantee-badge {
	background: #e9f7fe;
	border-radius: 50px;
	padding: 15px 25px;
	display: inline-block;
	margin-top: 20px;
	border: 2px dashed #2c7da0;
}

/* Адаптивность */
@media (max-width: 768px) {
	.hero-banner {
		padding-top: 80px;
		text-align: center;
	}
	
	.hero-content {
		margin: 0 10px;
	}
	
	.benefits-list {
		text-align: left;
	}
}

       /* Секция преимуществ */
        .benefits-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #e9ecef, #f8f9fa);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2c7da0;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #2c7da0;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .benefits-carousel {
            padding: 30px 0;
        }
        
        .benefit-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(44, 125, 160, 0.1);
        }
        
        .benefit-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            border-color: rgba(44, 125, 160, 0.3);
        }
        
        .benefit-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e9f7fe, #d1edfc);
            border-radius: 50%;
            color: #2c7da0;
            font-size: 36px;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover .benefit-icon {
            background: linear-gradient(135deg, #2c7da0, #1a5d7a);
            color: white;
            transform: scale(1.1);
        }
        
        .benefit-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c7da0;
            font-size: 1.25rem;
        }
        
        .benefit-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Кастомные стили для карусели */
        .carousel-indicators {
            bottom: -60px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #2c7da0;
            opacity: 0.4;
            margin: 0 5px;
            border: none;
        }
        
        .carousel-indicators .active {
            opacity: 1;
        }
        
        .carousel-control-prev, 
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: #2c7da0;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }
        
        .carousel-control-prev {
            left: -25px;
        }
        
        .carousel-control-next {
            right: -25px;
        }
        
        .carousel-control-prev:hover, 
        .carousel-control-next:hover {
            opacity: 1;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .carousel-control-prev {
                left: 10px;
            }
            
            .carousel-control-next {
                right: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .benefit-item {
                margin-bottom: 20px;
            }
            
            .benefits-section {
                padding: 60px 0;
            }
        }
		
		
		
		
		 /* Секция услуг */
        .services-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2c7da0;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #2c7da0;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
            border: 1px solid rgba(44, 125, 160, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            border-color: rgba(44, 125, 160, 0.3);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c7da0;
            font-size: 1.3rem;
        }
        
        .service-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .service-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: #2c7da0;
            margin-bottom: 20px;
        }
        
        .service-price .old-price {
            font-size: 0.9rem;
            color: #999;
            text-decoration: line-through;
            margin-right: 10px;
        }
        
        .service-btn {
            background-color: #2c7da0;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .service-btn:hover {
            background-color: #1a5d7a;
            color: white;
            transform: translateY(-2px);
        }
        
        .service-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #ff6b6b;
            color: white;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .services-section {
                padding: 60px 0;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
        }
		
		
		
		        /* Секция акций */
        .promo-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2c7da0;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #2c7da0;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .promo-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 200px;
            gap: 25px;
        }
        
        .promo-tile {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #2c7da0, #1a5d7a);
            cursor: pointer;
        }
        
        .promo-tile:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .promo-tile-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
            opacity: 0.8;
        }
        
        .promo-tile:hover .promo-tile-bg {
            transform: scale(1.1);
            opacity: 0.9;
        }
        
        .promo-content {
            position: relative;
            z-index: 2;
            padding: 25px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: white;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }
        
        .promo-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ff6b6b;
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 3;
        }
        
        .promo-title {
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        .promo-description {
            font-size: 0.95rem;
            margin-bottom: 15px;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .promo-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            width: fit-content;
            backdrop-filter: blur(5px);
        }
        
        .promo-btn:hover {
            background: white;
            color: #2c7da0;
        }
        
        /* Размеры плиток */
        .tile-large {
            grid-column: span 6;
            grid-row: span 2;
        }
        
        .tile-medium {
            grid-column: span 4;
            grid-row: span 1;
        }
        
        .tile-small {
            grid-column: span 3;
            grid-row: span 1;
        }
        
        .tile-tall {
            grid-column: span 3;
            grid-row: span 2;
        }
        
        .tile-wide {
            grid-column: span 6;
            grid-row: span 1;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .promo-grid {
                grid-template-columns: repeat(6, 1fr);
            }
            
            .tile-large {
                grid-column: span 6;
            }
            
            .tile-medium {
                grid-column: span 3;
            }
            
            .tile-small {
                grid-column: span 3;
            }
            
            .tile-tall {
                grid-column: span 3;
            }
            
            .tile-wide {
                grid-column: span 6;
            }
        }
        
        @media (max-width: 768px) {
            .promo-section {
                padding: 60px 0;
            }
            
            .promo-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 250px;
                gap: 20px;
            }
            
            .tile-large,
            .tile-medium,
            .tile-small,
            .tile-tall,
            .tile-wide {
                grid-column: span 1;
                grid-row: span 1;
            }
        }
        
        .promo-counter {
            display: flex;
            align-items: center;
            margin-top: 10px;
            font-size: 0.85rem;
            opacity: 0.8;
        }
        
        .promo-counter i {
            margin-right: 5px;
        }
		
		
		
		
		        /* Секция портфолио */
        .portfolio-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2c7da0;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #2c7da0;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .portfolio-carousel {
            padding: 30px 0;
        }
        
        .portfolio-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin: 0 10px;
            border: 1px solid rgba(44, 125, 160, 0.1);
        }
        
        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .portfolio-img {
            height: 250px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .portfolio-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-img img {
            transform: scale(1.05);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 125, 160, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-img:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .zoom-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c7da0;
            font-size: 24px;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .portfolio-img:hover .zoom-icon {
            transform: scale(1);
        }
        
        .portfolio-content {
            padding: 25px;
        }
        
        .portfolio-category {
            color: #2c7da0;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .portfolio-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
            font-size: 1.3rem;
        }
        
        .portfolio-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .portfolio-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }
        
        .portfolio-features li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            color: #555;
        }
        
        .portfolio-features li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #2c7da0;
            font-weight: bold;
        }
        
        .portfolio-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .portfolio-date {
            color: #888;
            font-size: 0.9rem;
        }
        
        .portfolio-rating {
            color: #ffc107;
        }
        
        /* Кастомные стили для карусели */
        .carousel-indicators {
            bottom: -60px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #2c7da0;
            opacity: 0.4;
            margin: 0 5px;
            border: none;
        }
        
        .carousel-indicators .active {
            opacity: 1;
        }
        
        .carousel-control-prev, 
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: #2c7da0;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }
        
        .carousel-control-prev {
            left: -25px;
        }
        
        .carousel-control-next {
            right: -25px;
        }
        
        .carousel-control-prev:hover, 
        .carousel-control-next:hover {
            opacity: 1;
        }
        
        /* Модальное окно */
        .modal-content {
            border-radius: 15px;
            border: none;
            overflow: hidden;
        }
        
        .modal-header {
            background: #2c7da0;
            color: white;
            border-bottom: none;
        }
        
        .modal-body {
            padding: 0;
        }
        
        .modal-body img {
            width: 100%;
            height: auto;
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .carousel-control-prev {
                left: 10px;
            }
            
            .carousel-control-next {
                right: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .portfolio-section {
                padding: 60px 0;
            }
            
            .portfolio-item {
                margin-bottom: 20px;
            }
        }
		
		
		
		
		
		/* Блок "Отзывы клиентов" */
.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}
.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0;
}
.testimonial-author p {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0;
}
.testimonial-content {
    color: #555;
    font-style: italic;
    position: relative;
    padding-top: 15px;
}
.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(42, 95, 139, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    z-index: 0;
}
.rating {
    color: #ffc107;
    margin-top: 10px;
    font-size: 0.9rem;
}
.btn-lg {
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Адаптивность для новых блоков */
@media (max-width: 768px) {
    .case-images {
        height: 200px;
    }
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-photo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}



/* Секция о компании */
        .about-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2c7da0;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #2c7da0;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .about-content {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(44, 125, 160, 0.1);
        }
        
        .about-img {
            height: 100%;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .about-img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(44, 125, 160, 0.1), transparent);
        }
        
        .about-text {
            padding: 50px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .about-subtitle {
            color: #2c7da0;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .about-heading {
            font-weight: 700;
            margin-bottom: 25px;
            color: #333;
            font-size: 2.2rem;
            line-height: 1.2;
        }
        
        .about-description {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 35px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e9f7fe, #d1edfc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c7da0;
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .feature-content h4 {
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
            font-size: 1.1rem;
        }
        
        .feature-content p {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.5;
        }
        
        .about-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 35px;
            padding: 25px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            border-left: 4px solid #2c7da0;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c7da0;
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .about-btn {
            background-color: #2c7da0;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            width: fit-content;
        }
        
        .about-btn:hover {
            background-color: #1a5d7a;
            color: white;
            transform: translateY(-2px);
        }
        
        .about-btn i {
            margin-left: 8px;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .about-img {
                min-height: 400px;
            }
            
            .about-text {
                padding: 40px 30px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .about-section {
                padding: 60px 0;
            }
            
            .about-img {
                min-height: 300px;
            }
            
            .about-text {
                padding: 30px 20px;
            }
            
            .about-heading {
                font-size: 1.8rem;
            }
            
            .about-stats {
                flex-direction: column;
                gap: 20px;
            }
        }
		
		
		
		
		       /* Секция контактов */
        .contacts-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2c7da0;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #2c7da0;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .contacts-content {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(44, 125, 160, 0.1);
        }
        
        .map-container {
            height: 100%;
            min-height: 500px;
            background: #e9ecef;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: linear-gradient(135deg, #e9f7fe, #d1edfc);
            color: #2c7da0;
        }
        
        .map-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .map-text {
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .contacts-info {
            padding: 50px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .contacts-heading {
            font-weight: 700;
            margin-bottom: 30px;
            color: #333;
            font-size: 1.8rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
            border-left: 4px solid #2c7da0;
        }
        
        .contact-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e9f7fe, #d1edfc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c7da0;
            font-size: 20px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-content h4 {
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
            font-size: 1.1rem;
        }
        
        .contact-content p {
            color: #666;
            margin: 0;
            line-height: 1.5;
        }
        
        .contact-link {
            color: #2c7da0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .contact-link:hover {
            color: #1a5d7a;
        }
        
        .social-links {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #e9ecef;
        }
        
        .social-heading {
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
            font-size: 1.2rem;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e9f7fe, #d1edfc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c7da0;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: #2c7da0;
            color: white;
            transform: translateY(-3px);
        }
        
        .working-hours {
            margin-top: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            border-left: 4px solid #2c7da0;
        }
        
        .hours-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .hours-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            color: #666;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .contacts-info {
                padding: 40px 30px;
            }
            
            .map-container {
                min-height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .contacts-section {
                padding: 60px 0;
            }
            
            .contacts-info {
                padding: 30px 20px;
            }
            
            .map-container {
                min-height: 300px;
            }
            
            .contact-item {
                padding: 15px;
            }
            
            .social-icons {
                justify-content: center;
            }
        }
		
		
		
		 /* Подвал */
        .footer {
            background: linear-gradient(135deg, #2c7da0, #1a5d7a);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-links h4 {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            font-size: 1.1rem;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-contact h4 {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
            font-size: 1.1rem;
        }
        
        .contact-info {
            margin-bottom: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }
        
        .contact-item i {
            width: 20px;
            margin-right: 10px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .footer-btn {
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-call {
            background: white;
            color: #2c7da0;
        }
        
        .btn-call:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }
        
        .btn-callback {
            background: transparent;
            color: white;
        }
        
        .btn-callback:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: white;
            color: #2c7da0;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .footer-legal {
            display: flex;
            gap: 25px;
        }
        
        .footer-legal a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: white;
        }
        
        .payment-methods {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .payment-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-right: 10px;
        }
        
        .payment-icon {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Модальное окно политики */
        .modal-content {
            border-radius: 15px;
            border: none;
        }
        
        .modal-header {
            background: #2c7da0;
            color: white;
            border-bottom: none;
            border-radius: 15px 15px 0 0;
        }
        
        .modal-body {
            padding: 30px;
            max-height: 60vh;
            overflow-y: auto;
        }
        
        .policy-section {
            margin-bottom: 25px;
        }
        
        .policy-section h5 {
            color: #2c7da0;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .policy-section p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-legal {
                justify-content: center;
            }
            
            .payment-methods {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .footer-buttons {
                flex-direction: column;
            }
            
            .social-links {
                justify-content: center;
            }
        }