/* Base styles */
:root {
    --color-main: #f5a623;
    --color-main-dark: #e6950e;
    --color-main-light: #f7b74a;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-light: #f9f9f9;
    --color-border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-main);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-main);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--color-main-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-main);
    color: var(--color-main);
}

.btn-outline:hover {
    background-color: var(--color-main);
    color: #fff;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 25px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
	line-height:normal;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.nav ul {
    display: flex;
}

.nav li {
    margin-left: 30px;
    position: relative;
}

.nav a {
    font-weight: 500;
}

.dropdown-menu {
	display: block !important;
    flex-wrap: nowrap !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu ul {  /* если будут вложенные списки */
    display: block;
}

.dropdown-menu li {
display: block !important;
    margin: 0;
	width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: var(--color-bg-light);
}

.header-contacts {
    display: flex;
    align-items: center;
}

.phone {
    font-weight: 600;
    margin-right: 20px;
}

.burger-menu {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/* Hero section */
.hero {
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-features {
    margin-bottom: 20px;
}

.hero-features span {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
}

.hero-subtext {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Services section */
.services {
    padding: 30px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.services-slider {
    margin: 0 -15px 40px;
}

.service-item {
    padding: 0 15px;
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
}

.service-content {
    background-color: var(--color-bg-light);
    padding: 25px;
    border-radius: 0 0 8px 8px;
    border: 1px solid var(--color-border);
    border-top: none;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* About section */
.about {
    padding: 30px 0;
    background-color: var(--color-bg-light);
}

.about-text {
    /*max-width: 800px;*/
    margin: 0 auto 50px;
}

.about-videos {
    /*max-width: 1000px;*/
    margin: 0 auto;
}

.video-item {
    margin-bottom: 50px;
}

.video-item h4 {
    font-size: 1.3rem;
    color: var(--color-main);
}

.video-item p {
    margin-bottom: 15px;
    font-style: italic;
}

.video-item video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Equipment section */
.equipment {
    padding: 30px 0;
}

.equipment h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.equipment-slider {
    margin: 0 -15px;
}

.equipment-item {
    padding: 0 15px;
}

.equipment-image {
    height: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.equipment-content {
    text-align: center;
}

.equipment-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Projects section */
.projects {
    padding: 30px 0;
    background-color: var(--color-bg-light);
}

.projects h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.projects-image {
    margin-bottom: 50px;
}

.projects-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.projects-slider {
    margin: 0 -15px;
}

.project-item {
    padding: 0 15px;
}

.project-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px 8px 0 0;
}

.project-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 0 0 8px 8px;
    border: 1px solid var(--color-border);
    border-top: none;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Blog section */
.blog {
    padding: 100px 0;
}

.blog h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.blog-slider {
    margin: 0 -15px 40px;
}

.blog-item {
    padding: 0 15px;
}

.blog-content {
    background-color: var(--color-bg-light);
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    border: 1px solid var(--color-border);
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Contacts section */
.contacts {
    padding: 30px 0;
/*background-color: var(--color-bg-light); */
}

.contacts h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--color-main);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-item a {
    font-weight: 500;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-main);
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-main-dark);
    transform: translateY(-3px);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.2);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 30px;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: var(--color-main);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.footer-nav a {
    font-weight: 500;
    opacity: 0.8;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--color-main);
    color: #fff;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.copyright p {
    margin-bottom: 10px;
}

/* Cookie notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-notice p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-notice button {
    background-color: var(--color-main);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 20px;
}

.cookie-notice button:hover {
    background-color: var(--color-main-dark);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-main);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-main-dark);
    transform: translateY(-3px);
}

/* Slider styles */
.slick-slider {
    position: relative;
	padding:0px 60px 0px 60px;
}

.slick-list {
    overflow: hidden;
}

.slick-track {
    display: flex;
}

.slick-slide {
    outline: none;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.slick-arrow:hover {
    background-color: var(--color-main);
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots button {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    font-size: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: var(--color-main);
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-nav ul {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .header-contacts .btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-features span {
        font-size: 1rem;
    }
    
    .services-slider,
    .equipment-slider,
    .projects-slider,
    .blog-slider {
        margin: 0 -10px;
    }
    
    .service-item,
    .equipment-item,
    .project-item,
    .blog-item {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-features span {
        display: block;
        margin-bottom: 5px;
    }
    
    .footer-nav ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notice button {
        margin-left: 0;
        margin-top: 10px;
    }
}
.slick-next::after {
    content: ">>";
}

.slick-next {
    font-size: 0; /* Скрываем оригинальный текст */
}

.slick-next::after {
    font-size: 14px; /* Возвращаем размер шрифта */
}
.slick-prev::after {
    content: "<<";
}

.slick-prev{
    font-size: 0; /* Скрываем оригинальный текст */
}

.slick-prev::after {
    font-size: 14px; /* Возвращаем размер шрифта */
}