/* ================================
   Базовые стили и сброс
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', 'Geometria', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #212121;
    background-color: #fff;
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col-md-2, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-10,
.col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9,
.col-xs-3, .col-xs-6, .col-xs-9, .col-xs-12 {
    position: relative;
    width: 100%;
    padding: 0 15px;
}
.col-xs-12 { width: 100%; }
.col-xs-9 { width: 75%; }
.col-xs-6 { width: 50%; }
.col-xs-3 { width: 25%; }
@media (min-width: 768px) {
    .col-sm-3 { width: 25%; }
    .col-sm-4 { width: 33.33333%; }
    .col-sm-5 { width: 41.66667%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.33333%; }
    .col-sm-8 { width: 66.66667%; }
    .col-sm-9 { width: 75%; }
}
@media (min-width: 992px) {
    .col-md-2 { width: 16.66667%; }
    .col-md-4 { width: 33.33333%; }
    .col-md-5 { width: 41.66667%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.33333%; }
    .col-md-8 { width: 66.66667%; }
    .col-md-10 { width: 83.33333%; }
}
.text-center { text-align: center; }
.btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #ff9800;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
    cursor: pointer;
    border: none;
}
.btn:hover {
    background-color: #c77700;
}
.display_flex {
    display: flex;
    align-items: center;
}
/* ================================
   HEADER
   ================================ */
header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.navbar-fixed {
    background-color: #000;
}
.navbar_fh {
    height: 80px;
    display: flex;
    align-items: center;
}
.logo img {
    max-height: 40px;
}
.nav_list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.nav_list li {
    margin-right: 20px;
}
.nav_list li a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}
.nav_list li a:hover {
    color: #ff9800;
}
.phone_cnt {
    text-align: right;
}
.phone_cnt a {
    display: block;
    color: #fff;
}
.phonenum {
    font-size: 20px;
    font-weight: bold;
}
.phonenum i {
    margin-right: 6px;
}
.back_call {
    font-size: 14px;
    color: #ff9800 !important;
    text-transform: uppercase;
    font-weight: bold;
}
.back_call:hover {
    color: #c77700 !important;
}
/* Скрываем кнопку мобильного меню на десктопе */
.mobile-menu-wrapper {
    display: none;
}
.navbar-toggle {
    background: transparent;
    border: 1px solid #fff;
    padding: 9px 10px;
    border-radius: 4px;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    margin: 4px 0;
}
/* ================================
   МОБИЛЬНОЕ МЕНЮ
   ================================ */
@media (max-width: 767px) {
    .mobile-menu-wrapper {
        display: block;
        margin-left: auto;
        flex-shrink: 0;
    }
    .navbar-collapse {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #000;
        padding: 20px;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    .navbar-collapse.show {
        display: block;
    }
    .nav_list {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .nav_list li {
        margin: 5px 0;
    }
    .phone_cnt {
        text-align: left;
    }
}
/* ================================
   PREVIEW
   ================================ */
#preview {
    background-image: url('../images/bg1.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 170px;
    padding-bottom: 80px;
}
h1 .first_str { font-size: 28px; }
h1 .second_str { font-size: 48px; font-weight: bold; text-transform: uppercase; }
h1 .third_str { font-size: 35px; font-weight: bold; text-transform: uppercase; }
.blue_text { color: #42a5f5; }
.works_cnt {
    margin-bottom: 12px;
}
.works {
    display: inline-block;
    background: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    color: #151515;
    font-weight: bold;
    margin-right: 10px;
    margin-bottom: 10px;
}
.works .fa {
    color: #42a5f5;
    margin-right: 8px;
}
.discount_cnt {
    background: rgba(21,21,21,0.8);
    padding: 30px 42px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
}
.discount_cnt h3 {
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.discount_cnt .subheading {
    font-size: 24px;
    margin-bottom: 20px;
}
select.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: none;
    background: #fff;
    appearance: none;
    background-image: url('../images/select_appearance.png');
    background-repeat: no-repeat;
    background-position: right 14px center;
}
/* ================================
   SERVICES
   ================================ */
#services {
    padding: 60px 0;
}
/* Стили для заголовков h2: полоски сверху и снизу, текст по центру */
h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 40px 0 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Полоска сверху */
h2::before {
    content: '';
    width: 80px;
    height: 3px;
    background: #42a5f5;
    margin-bottom: 20px;
    display: block;
}
/* Полоска снизу */
h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #42a5f5;
    margin-top: 20px;
    display: block;
}
/* Абзац, идущий сразу после h2, выравниваем по центру */
h2 + p {
    text-align: center;
    margin-bottom: 40px;
}
.service {
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 30px;
}
.service h3 {
    padding: 24px 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    min-height: 94px;
}
.service_img {
    height: 233px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 16px;
}
.service_price {
    padding: 10px 18px;
    display: inline-block;
    background-color: #709f40;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.service ul {
    list-style: none;
    padding: 0 20px 10px;
}
.service ul li {
    margin-bottom: 8px;
    font-size: 13px;
}
.btn_center {
    text-align: center;
    padding-bottom: 20px;
}
/* ================================
   ORDER (спецпредложение)
   ================================ */
#order {
    position: relative;
    background-image: url('../images/bg_dynamic.png');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}
.order_layer {
    position: absolute;
    background-image: url('../images/order_layer.png');
    background-size: cover;
    height: 100%;
    width: 50%;
    right: 0;
    top: 0;
}
.order_text {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 64px 0;
}
#order .btn_center {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 20%;
}
@media (max-width: 767px) {
    .order_layer { display: none; }
    #order .btn_center { position: static; }
}
/* ================================
   OUR WORKS
   ================================ */
.orange-block {
    background-color: #00aeff;
    color: white;
    padding: 0;
    height: 548px;
}
.orange-block .btn {
    float: right;
    margin-top: 12px;
}
.je-imgs {
    height: 548px;
}
.je-imgs, .je-imgs [class*="col-"] {
    padding: 0 !important;
}
.je-text {
    padding: 40px 40px 40px 55px;
}
@media(min-width: 768px) {
    .je-text {
        height: 100%;
    }
    .je-text-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 15px 10px;
        background-color: #00aeff;
    }
}
.je-img {
    height: 274px;
    background-size: cover;
    background-position: center;
}
.je-img a {
    display: block;
    height: 100%;
}
.je-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}
.je-table tr th, .je-table tr td {
    padding-bottom: 30px;
    vertical-align: top;
    font-size: 14px;
}
.je-table th {
    color: #085b8e;
    font-weight: bold;
    text-align: right;
    padding-right: 30px;
}
.je-table td {
    color: #fff;
}
.je-price {
    font-size: 24px;
    font-weight: bold;
}
@media (max-width: 1199px) {
    .orange-block { height: 624px; }
    .je-img { height: 312px; }
}
@media (max-width: 991px) {
    .orange-block { height: 680px; }
    .je-text { padding: 20px; }
    .je-img { height: 170px; }
}
@media (max-width: 767px) {
    .orange-block, .je-imgs { height: auto; }
}
/* ================================
   SUGGEST
   ================================ */
#suggest {
    background-color: #eceff1;
    padding: 60px 0;
}
.offer_cnt {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 360px;
    margin: 0 auto 30px;
    font-size: 16px;
}
.offer_img {
    height: 256px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}
.offer_cnt h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}
.offer_cnt .subheading {
    color: #bdbdbd;
    font-weight: bold;
    margin-bottom: 20px;
}
.offer_cnt ul {
    list-style: none;
    padding-left: 0;
}
.offer_cnt ul li {
    margin-bottom: 16px;
}
.offer_cnt ul li:before {
    content: '\25CF';
    color: #00aeff;
    margin-right: 8px;
}
/* ================================
   ABOUT COMPANY
   ================================ */
#about_company {
    padding: 60px 0;
}
.all_advantages {
    margin-top: 24px;
}
.advantage_cnt {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}
.advantage_img {
    width: 40px;
    margin-right: 8px;
    text-align: center;
}
.advantage_cnt .first_str {
    color: #00aeff;
    font-weight: bold;
}
.advantage_cnt .second_str {
    color: #616161;
}
.about_company_text {
    font-size: 16px;
    color: #616161;
    line-height: 28px;
}
/* ================================
   OUR CLIENTS
   ================================ */
#our_clients {
    padding: 60px 0;
}
.logo_style {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.owl-carousel .owl-item img {
    width: auto;
    max-width: 173px;
}
/* ================================
   CONTACTS
   ================================ */
#contacts {
    padding-bottom: 60px;
}
.blue_div {
    background-color: #42a5f5;
    position: relative;
    color: #fff;
}
.contact_info {
    margin: 50px 0 40px;
}
.contact_info p {
    margin-bottom: 20px;
}
#map {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 56%;
    padding-left: 15px;
}
.back_call_cnt {
    background-color: #2f74ac;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 40px;
}
.back_call_cnt h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}
.back_call_cnt .subheading {
    color: inherit;
    margin: 0 0 16px;
}
input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
input[type="text"]:focus, input[type="tel"]:focus {
    outline: none;
    border-color: #ff9800;
}
.form-group {
    margin-bottom: 15px;
}
.consent-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}
.consent-group input {
    width: auto;
    margin: 0;
}
.consent-group label {
    font-weight: normal;
    font-size: 14px;
    margin: 0;
}
@media (max-width: 991px) {
    #map {
        width: 50%;
    }
}
@media (max-width: 767px) {
    #map {
        position: static;
        width: 100%;
        height: 200px;
        padding: 0;
    }
}
/* ================================
   FOOTER
   ================================ */
footer {
    background-color: #0f0f0f;
    color: #757575;
    padding: 16px 0 6px;
    font-size: 14px;
}
footer .bold {
    font-weight: bold;
    text-transform: uppercase;
}
.footer_left, .footer_center, .footer_right {
    text-align: center;
}
@media (min-width: 768px) {
    .footer_left { text-align: left; }
    .footer_right { text-align: right; }
}
/* ================================
   MODAL
   ================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}
.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-modal:hover {
    color: #ff9800;
}
.modal h3 {
    text-align: center;
    margin-bottom: 10px;
}
.modal .subheading {
    text-align: center;
    margin-bottom: 20px;
}
.thanks-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
}
.alert {
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* ================================
   OWL CAROUSEL стили
   ================================ */
.owl-carousel {
    display: none;
    width: 100%;
    position: relative;
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-stage {
    display: flex;
}
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
}
.owl-prev { left: -40px; }
.owl-next { right: -40px; }
.owl_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #00aeff;
    border-radius: 50%;
}
.owl_btn .fa {
    color: #00aeff;
    font-size: 20px;
}
@media (max-width: 767px) {
    .owl-prev { left: 0; }
    .owl-next { right: 0; }
}
/* ================================
   ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ТЕКСТА СОГЛАСИЯ
   ================================ */
.consent-text {
    margin-top: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-left: 3px solid #ff9800;
    font-size: 12px;
    max-height: 200px;
    overflow-y: auto;
}
.consent-text p {
    margin: 5px 0;
}
.consent-text h4 {
    font-size: 14px;
    margin: 8px 0 4px;
}
.consent-link {
    cursor: pointer;
    text-decoration: underline;
    color: #ff9800;
}
.consent-link:hover {
    color: #c77700;
}
/* ================================
   АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ
   ================================ */
@media (max-width: 767px) {
    body { font-size: 13px; }
    .container { padding: 0 12px; }
    h1 .second_str, h1 .third_str { font-size: 28px; }
    h1 .first_str { font-size: 18px; }
    .works_cnt .works { font-size: 14px; padding: 5px 12px; margin-right: 5px; margin-bottom: 8px; }
    .discount_cnt { padding: 15px; }
    .discount_cnt h3 { font-size: 20px; }
    .discount_cnt .subheading { font-size: 18px; }
    .service h3 { font-size: 16px; min-height: auto; padding: 15px 0; }
    .service_img { height: 180px; }
    .service_price { font-size: 12px; padding: 5px 10px; bottom: 10px; right: 10px; }
    .service ul li, .service p { font-size: 12px; }
    .je-table th, .je-table td { font-size: 11px; padding-bottom: 15px; word-break: break-word; }
    .je-table th { padding-right: 10px; }
    .je-heading { font-size: 18px; margin-bottom: 15px; }
    .je-text { padding: 15px !important; }
    .je-price { font-size: 18px; }
    .offer_cnt { padding: 15px; }
    .offer_img { height: 180px; }
    .offer_cnt h3 { font-size: 18px; }
    .offer_cnt .subheading { font-size: 12px; }
    .advantage_cnt { margin-bottom: 20px; }
    .advantage_cnt .first_str { font-size: 12px; }
    .about_company_text { font-size: 14px; line-height: 1.4; }
    .contact_info { margin: 30px 0 20px; }
    .back_call_cnt { padding: 15px; margin-bottom: 20px; }
    .consent-text { font-size: 10px; max-height: 150px; }
    footer { font-size: 11px; text-align: center; }
}
@media (max-width: 480px) {
    .service_price { font-size: 10px; }
    .je-table th, .je-table td { display: block; width: 100%; text-align: left; padding-bottom: 5px; }
    .je-table th { text-align: left; background: rgba(0,0,0,0.05); padding: 5px; }
}