@charset "UTF-8";
:root {
  --index: calc(1vw + 1vh);
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  /* исправлено */
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  color: var(--color-text);
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
  color: var(--color-text-g);
}

legend {
  display: block;
}

html {
  overflow-x: hidden;
}

body {
  background-color: #f8f9fa;
}

body::-webkit-scrollbar {
  width: 14px; /* ширина scrollbar */
}
body::-webkit-scrollbar-track {
  background-color: #1D1D1B; /* цвет дорожки */
  padding: 30px; /* добавляем отступ */
}
body::-webkit-scrollbar-thumb {
  background-color: #E0B364; /* цвет плашки */
  border-radius: 20px; /* закругления плашки */
  border: 3px solid #1D1D1B; /* padding вокруг плашки */
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #fdb63c; /* цвет при наведении */
}

.contact-section {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-section .contact-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  position: relative;
  color: #1D1D1B;
}
.contact-section .contact-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #E0B364;
  display: block;
  margin-top: 10px;
}
.contact-section form input,
.contact-section form textarea {
  border: 1px solid #f5f5f5;
  padding: 10px;
  font-size: 0.9rem;
  border-radius: 4px;
}
.contact-section form input:focus,
.contact-section form textarea:focus {
  outline: none;
  border-color: #E0B364;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}
.contact-section form button {
  background-color: #E0B364;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 15px;
  /*   &:active {
    background-color: $color-accent-act;
  } */
}
.contact-section form button:hover {
  background-color: #fdb63c;
  color: #fff;
}
.contact-section img {
  border-radius: 5px;
}
.contact-section img:not(:last-child) {
  margin-bottom: 10px;
}
.contact-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.contact-section .form-control {
  background-color: #efefef;
  border-radius: 15px;
}

.contact-section form input:focus,
.contact-section form textarea:focus {
  outline: none;
  border-color: rgb(255, 251, 0);
  box-shadow: 0 0 5px rgba(70, 73, 27, 0.5);
}

.mode-btn {
  margin-right: 5px;
  padding: 10px 20px;
  border: 1px solid #ccc;
  /*  background-color: #f8f9fa; */
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.mode-btn.active {
  background-color: #E0B364;
  color: #fff;
  border-color: #E0B364;
}

.mode-btn:hover {
  background-color: #fdb63c;
  color: #fff;
}

.block-content {
  display: none;
}

.placeholder {
  cursor: none;
  background-color: #f8f9fa;
  opacity: 1;
}

/* Скрываем на мобильных */
@media (max-width: 767.98px) {
  .not-mob {
    display: none !important;
  }
}
/* Адаптивное изображение (уже частично реализовано через Bootstrap) */
.responsive-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ————— Оверлей ————— */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeInOverlay 0.3s ease;
}

/* Плавное появление оверлея */
@keyframes fadeInOverlay {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.6);
  }
}
/* ————— Окно модалки ————— */
.modal-window {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 540px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  animation: scaleIn 0.25s ease;
}

/* Анимация появления окна */
@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* ————— Заголовок и иконка ————— */
.modal-header {
  margin-bottom: 20px;
}

.modal-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 22px;
  color: #333;
  margin: 0;
}

/* ————— Текст внутри ————— */
.modal-content {
  line-height: 1.5;
}

.modal-text {
  font-size: 16px;
  color: #555;
  margin: 12px 0;
}

/* ————— Крестик закрытия ————— */
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #444;
}

.modal-window {
  padding: 0;
  margin: 0;
  margin-left: 15px;
  margin-right: 15px;
}/*# sourceMappingURL=contact.css.map */