
body {
    margin: 0px;
    padding: 0px;
    background-color: #000;
}


.hero_header {
            background-image: url('/img/hero.jpg');
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero_inner {
            position: relative;
            z-index: 20;
            text-align: center;
            padding: 20px;
        }

        .hero_title {
            font-family: 'Annabelle', sans-serif;
            font-size: 128px;
            color: #FFED1D;
            text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
            font-weight: 300;
            letter-spacing: 2px;
            text-align: center;
            margin: 0px;
            position: relative;
            z-index: 10;
        }

        .hero_paragraph {
            font-family: 'Neue', sans-serif;
            font-size: 42px;
            color: #FFED1D;
            text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
            font-weight: 300;
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 2px;
            margin: 0px;
            padding-top: 20px;
        }

        .hero_description {
            font-family: 'Neue', sans-serif;
            font-size: 24px;
            margin: auto;
            text-align: center;
            color: #FFFFFF;
            text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
            font-weight: 300;
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 2px;
            font-weight: 400;
            margin: 0px;
            padding-top: 20px;
            max-width: 800px;
        }

        .hero_line {
            margin-top: 20px;
        }

        .hero_contact {
            font-family: 'Neue', sans-serif;
            font-size: 48px;
            color: #FFED1D;
            text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
            font-weight: 300;
            text-transform: uppercase;
            text-align: center;
            margin: 0px;
            padding-top: 30px;
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: center;
        }

        .hero_third_contact {
            font-family: 'Neue', sans-serif;
            font-size: 32px;
            color: #FFFFFF;
            text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
            font-weight: 300;
            text-align: center;
            margin: 0px;
            padding-top: 30px;
            display: flex;
            gap: 10px;
            align-items: center;
            justify-content: center;
        }

        .hero_button {
            text-align: center;
            margin-top: 34px;
            cursor: pointer;
            opacity: 100%;
            transition: all 0.3s ease;
            position: relative;
            z-index: 10;
        }

        .hero_button:hover {
            opacity: 70%;
        }

        /* Контейнер для искр */
        .fire-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        /* Стили для искр */
        .spark {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            animation: sparkAnimation 2s infinite ease-out;
        }

        /* Анимация для искр */
        @keyframes sparkAnimation {
            0% {
                opacity: 0;
                transform: translateY(0) scale(0.5);
            }
            20% {
                opacity: 1;
            }
            80% {
                opacity: 0.7;
            }
            100% {
                opacity: 0;
                transform: translateY(-100px) scale(1.2);
            }
        }

         

        @keyframes fireFlicker {
            0%, 100% {
                opacity: 0.5;
                transform: scaleY(0.95);
            }
            50% {
                opacity: 0.9;
                transform: scaleY(1.05);
            }
        }


.col {
    margin-top: -50px;
    z-index: 999;
    position: relative;
}

.about_header {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: -25px;
    overflow: hidden; /* чтобы псевдоэлемент не выходил за пределы */
}

.about_header::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/about.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    animation: flicker 2.5s infinite;
}

.about_header > * {
    position: relative;
    z-index: 1;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    45%, 55% { opacity: 0.5; }
    50% { opacity: 0.2; }
}

.about_title {
    font-family: 'Annabelle', sans-serif;
    font-size: 128px;
    color: #FFED1D;
    text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin: 0px;
    position: relative;
    z-index: 10;
    padding-top: 81px;
}

.about_inner {
    text-align: center;
    justify-content: center;
    margin: auto;
}

.about_paragraph {
     font-family: 'Neue', sans-serif;
            font-size: 24px;
            color: #FFFFFF;
            text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
            font-weight: 300;
            text-align: start;
            margin: auto;
            padding-top: 30px;
            width: 1679px;
}

.about_inner:last-child {
    display: flex;
    max-width: 1679px;
    margin-top: 67px;
    justify-content: space-between;
}


.col_1 {
    margin-top: 30px;
    z-index: 999;
    position: relative;
}


.services_header {
    position: relative;
    width: 100%;
    height: 100%;
        background-image: url(/img/services.svg);
    margin-top: -30px;
    background-size: cover;
    overflow: hidden; /* чтобы псевдоэлемент не выходил за пределы */
}

.services_header::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/about.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    animation: flicker 2.5s infinite;
}

.services_header > * {
    position: relative;
    z-index: 1;
}



.services_container-1 {
    text-align: center;
}

.services_title {
    font-family: 'Annabelle', sans-serif;
    font-size: 128px;
    color: #FFED1D;
    text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin: 0px;
    position: relative;
    z-index: 10;
    padding-top: 81px;
}

.services_container {
    margin-top: 73px;
    max-width: 1723px;
    padding: 0 149px;
    text-align: center;
    margin: auto;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}


.services_container:last-child {
    margin-bottom: 100px;
}

.services_box {
    width: 437px;
    margin-top: 50px;
}

.services_paragraph {
    font-family: Neue , sans-serif;
    font-size: 42px;
    color: #FFED1D;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    line-height: 42px;
    margin: 0px;
    padding-top: 40px;
    padding-bottom: 40px;

}

.services_text {
    font-family: Neue , sans-serif;
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    margin: 0px;
    padding-bottom: 40px;
}

.services_button {
    cursor: pointer;
}

.services_button img {
    opacity: 100px;
    transition: all 0.3s ease;
}

.services_button img:hover {
    opacity: 70%;
    transition: all 0.3s ease;
}


.col_2 {
    margin-top: -30px;
    z-index: 99;
    position: relative;
}











.reviews_header {
    position: relative;
    width: 100%;
    height: 100%;
        background-image: url(/img/services.svg);
    margin-top: -30px;
    background-size: cover;
    overflow: hidden; /* чтобы псевдоэлемент не выходил за пределы */
}

.reviews_header::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/about.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    animation: flicker 2.5s infinite;
}

.reviews_header > * {
    position: relative;
    z-index: 1;
}
.reviews_container-1 {
    text-align: center;
    margin: auto;
    justify-content: center;
}

.reviews_title {
    font-family: 'Annabelle', sans-serif;
    font-size: 128px;
    color: #FFED1D;
    text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin: 0px;
    position: relative;
    z-index: 10;
    padding-top: 81px;
}

.reviews_container-1 img {
    margin-top: 20px;
}


.reviews_container {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 37px;
    padding-top: 50px;
    margin: auto;
    text-align: center;
}

.reviews_inner {
    width: 484px;
}

.reviews_name {
    font-family: Neue , sans-serif;
    font-size: 64px;
    color: #FFED1D;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    line-height: 42px;
    margin: 0px;
    padding-top: 35px;
    padding-bottom: 35px
}

.reviews_description {
    font-family: Neue , sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
    width: 425px;
    font-weight: 300;
    margin: auto;
}

.footer_header {
    background-color: #20202058;
    display: flex;
    justify-content: center;
    margin-top: 50px;

}

.footer_title {
    text-align: center;
    font-family: inter;
    font-size: 36px;
    text-align: center;
    color: #fff;
    padding-top: 58px;
    padding-bottom: 57px;
}



.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 9999;transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

.modal-content {
    background-color: #000;
  padding: 20px; transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 12px;
  transform: scale(0.8);
  opacity: 0; z-index: 9999;
  width: 655px;
  background-image: url(/img/modal.png);
  background-size: cover;
  animation: scaleUp 0.3s forwards;
  position: relative;
}

.modal.hide .modal-content {
  animation: scaleDown 0.3s forwards;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}

/* Анимации */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

@keyframes scaleUp {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scaleDown {
  to {
    transform: scale(0.8);
    opacity: 0;
  }
}

.modal.hide {
  animation: fadeOut 0.3s forwards;
}

.modal.hide .modal-content {
  animation: scaleDown 0.3s forwards;
}


.modal_title {
    font-family: Annabelle , sans-serif;
    font-size: 40px;
    font-weight: 400;
    text-align: start;
    color: #FFED1D;
    text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
    letter-spacing: 2px;
    margin: auto;    width: 300px;
    padding-top: 20px;
}

.modal_text{
    color: #FFFFFF;
    text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
    font-family: Neue , sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    text-align: start;
    margin: auto;
    padding-top: 20px;
    width: 300px;
}

.modal_contact {
    font-family: 'Neue', sans-serif;
    font-size: 24px;
    color: #FFED1D;
    text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
    font-weight: 300;
    text-transform: uppercase;
    text-align: start;
    margin: auto;
    padding-top: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 300px;
    text-decoration: none;
    margin-top: -20px;
}

.modal_third_contact {
    font-family: 'Neue', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
    font-weight: 300;
    text-transform: uppercase;
    text-align: start;
    margin: auto;
    padding-top: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 350px;
    text-decoration: none;
    margin-top: -15px;
}





















.chat-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
  }

  /* Кнопка сообщения */
  .chat-button {
    width: 50px;
    height: 50px;
    background-color: #0088cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
  }

  .chat-button:hover {
    background-color: #005f8a;
  }

  /* Иконка сообщения (svg) */
  .chat-button svg {
    width: 24px;
    height: 24px;
    fill: white;
  }

  /* Блок соцсетей */
  .social-links {
    display: none;
    margin-bottom: 10px;
    background: #FFFFFF;
    font-family: neue;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
    flex-direction: column;
  }

  .social-links.show {
    display: flex;
  }

  /* Кнопки соцсетей */
  .social-links a, .social-links button {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    cursor: pointer;
    border: none;
    width: 220px;
    font-size: 14px;
  }

  .social-links a:hover, .social-links button:hover {
    background: #FFED1D;
  }

  /* Последний элемент без бордера */
  .social-links a:last-child, .social-links button:last-child {
    border-bottom: none;
  }

  /* Иконки соцсетей (просто эмодзи для простоты) */
  .social-links .icon {
    font-size: 18px;
  }




























.form-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.form {
    background: #000;
    padding: 20px;
    border-radius: 12px;
    background-size: cover;
    max-width: 500px;
    width: 90%;
    transform: translateY(-30px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    position: relative;
}

.form.show {
    transform: translateY(0);
    opacity: 1;
}

.form-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    color: #FFED1D;
    cursor: pointer;
}


.form_title {
    color: #FFED1D;
    font-size: 50px;
    text-align: center;
     text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
     letter-spacing: 2px;
    font-family: Annabelle;
    margin: 0px;
}


.form_paragraph {
    color: #FFFFFF;
    font-size: 20px;
    text-shadow: 3px 3px 2px rgba(0,0,0,0.6);
    font-family: Neue;
    margin: 0px;
    padding-top: 20px;
}


.form_content {
    box-sizing: border-box;
}

.form_content select {
    width: 100%;
    height: 40px;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    padding-left: 20px;
    border-radius: 5px;
    background-color: inherit;
    border: 1px solid #FFED1D;
    color: #FFED1D;
    outline: none;

}

.form_content input {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    margin-bottom: 15px;
    padding-left: 20px;
      background-color: inherit;
    border: 1px solid #FFED1D;
    color: #FFED1D;
    border-radius: 5px;
}

.form_content textarea {
    width: 100%;
    box-sizing: border-box;
    height: 100px;
    padding-top: 10px;
    padding-left: 10px;
      background-color: inherit;
    border: 1px solid #FFED1D;
    color: #FFED1D;
    border-radius: 5px;
}

.form_content button {
    width: 100%;
    height: 50px;
    border: 0px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
    background-color: #FFED1D;
    font-size: 20px;
    font-family: neue;
    transition: all 0.3s ease;
}


.form_content button:hover {
    background-color: #998d0c;
}

.form_content button:focus {
    background-color: #4c4606;
}