:root{
  --bg:#0b1624;
  --text:#fff;
  --muted:rgba(255,255,255,.72);
  --gold:#caa45a;
  --gold2:#e0c078;
}

.par-main{ min-height: 40vh; }

/* HEADER */
.par-header{
  position: absolute;
  width: 100%;
  background: transparent;
  top:0;
  z-index:999;
  font-family: "Inter", sans-serif;
}
.par-header__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 14px;
  display:flex;
  gap:12px;
  align-items:center;
}

.par-logo{ display:flex; align-items:center; gap:10px; }
.par-logo__img{
  height:90px;
  width:auto;
}

.par-header__info{
  flex:1;
  min-width: 0;
}
.par-header__line{
  display:flex;
  gap:8px;
  align-items:center;
  font-weight:900;
  font-size:12px;
  color:#232f44;
}
.par-dot{ color:#e33131; font-weight:900; }
.par-small{ opacity:.9; }

.par-header__contacts{
  margin-top:4px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.par-contact{
  font-weight:800;
  font-size:12px;
  color:#0f2136;
  opacity:.92;
  text-decoration:none;
}

/* BURGER */
.par-burger{
  width:46px;
  height:42px;
  border-radius:12px;
  border:1px solid #e7eef7;
  background:#fff;
  display:grid;
  place-content:center;
  gap:5px;
  cursor:pointer;
}
.par-burger span{
  width:20px;
  height:2px;
  background:#1a2a3f;
  border-radius:2px;
  display:block;
}

/* NAV */
.par-nav{
  display:none;
  background:transparent;
  border-top:1px solid #e9eef6;
}
.par-nav.is-open{ display:block; }

.par-nav__inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 14px 16px;
}

.par-menu{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.par-menu a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  background:#f5f7fb;
  text-decoration:none;
  font-weight:400;
  color:#fff;
  font-size: 15px;
}

.par-nav__cta{
  margin-top:12px;
  display:grid;
  gap:10px;
}

/* buttons */
.par-btn{
  display:flex;
  justify-content:center;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius: 4px !important;
  font-weight:900;
  text-decoration:none;
}
.par-btn--gold{
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color:#1a1206;
}
.par-btn--dark{
  background:#0b1624;
  color:#fff;
}

.par-nav .par-btn {
    background: linear-gradient(180deg, #0a1726, #0d1c2f);
    color: var(--gold2);
    border: 1px solid var(--gold2);
}

/* FOOTER */
.par-footer{
  background: #0b1624;
  color:#fff;
  padding-top: 34px;
  margin-top: 40px;
  font-family: "Inter", sans-serif;
}
.par-footer__inner{
  max-width:1200px;
  margin:0 auto;
  padding: 0 14px 22px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.par-footer__brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.par-footer__logo{ height:46px; width:auto; }
.par-footer__title{ font-weight:1000; letter-spacing:.04em; }
.par-footer__sub{ opacity:.75; font-weight:700; font-size:13px; margin-top:2px; }

.par-footer__contacts{
  margin-top:14px;
  display:grid;
  gap:8px;
  font-weight:800;
  opacity:.9;
}
.par-footer__contacts a{ color:#fff; text-decoration:none; opacity:.9; }

.par-footer__right{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.par-footer__col{
  display:grid;
  gap:8px;
}
.par-footer__head{
  font-weight:1000;
  opacity:.8;
  margin-bottom:4px;
}
.par-footer__col a,
.par-footer__col span{
  color:#fff;
  text-decoration:none;
  opacity:.85;
  font-weight:800;
  font-size:14px;
}

.par-footer__bottom{
  border-top:1px solid rgba(255,255,255,.10);
  padding: 14px;
  text-align:center;
  opacity:.7;
  font-weight:800;
  font-size:12px;
}

@media (min-width: 980px){
  /* На десктопе лучше оставить меню горизонтально */
  .par-burger{ display:none; }
  .par-nav{ display:block; border:0; }
  .par-nav__inner{
    padding-top: 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
  }
  .par-menu{
    grid-auto-flow: column;
    grid-template-columns: unset;
    display:flex;
    gap:10px;
  }
  .par-menu a{ background:transparent; }
  .par-nav__cta{
    margin-top:0;
    display:flex;
    gap:10px;
  }

  .par-footer__inner{
    grid-template-columns: 1.1fr .9fr;
    align-items:start;
  }
}

body {
    margin: 0;
}

.phone_icon {
    width: 20px;
}

.par-menu {
    margin-left: auto;
    margin-right: 30px;
}

.par-btn {
    font-family: "Inter", sans-serif;
}

.par-hero .par-btn {
    font-size: 20px;
    padding: 20px;
    padding-right: 30px;
    padding-left: 30px;
}

.call-now-icon {
    width: 20px;
}

.call-btn {
    gap: 15px !important;
    padding: 20px !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
}

.call-btn span {
    font-size: 12px;
    color: var(--gold2);
}

.call-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.par-hero__title--nowrap {
    white-space: nowrap;
}

.par-hero__desc {
    font-family: "Trebuchet MS", sans-serif;
    line-height: 35px;
    font-size: 25px !important;
    max-width: 33ch !important;
    
}

.par-hero__list {
    gap: 16px !important;
}

.par-hero__list li {
    font-family: "Inter", sans-serif;
}

.par-hero {
    padding-bottom: 50px !important;
}

.services-btn {
    color: #fff !important;
    padding: 15px 35px !important;
}

.par-why__title span{
    color: var(--gold);
}

.par-why__title {
        font-size: clamp(24px, 3vw, 33px) !important;
        font-family: "Cinzel", sans-serif;
}

.par-why .par-hero__actions {
    margin-top: 30px;
}

.par-why .par-btn {
    font-size: 20px;
    padding: 20px;
    padding-right: 30px;
    padding-left: 30px;
}

.par-why__dot {
        width: 23px !important;
    height: 22px !important;
}

.par-why__sub {
        font-size: 21px !important; 
}

.our_services_title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.our_services_title::before {
    content:"";
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.our_services_title::after {
    content:"";
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.why_our-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.why_our-title:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    opacity: 0.8;
}

.par-area__kicker {
    color: var(--gold) !important;
    font-size: 16px !important; 
}

.par-area__left {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.par-area__list {
    margin-top: 25px !important;
}

.par-area__list li {
    font-family: "Inter", sans-serif;
    
}

.par-area__btn {
    margin-top: 30px !important;
}

.par-area .container {
    align-items: center !important;
}

.par-review__text {
    font-size: 17px !important;
}

.par-area__left .par-btn {
    padding: 20px 35px !important;
}

/* Стили для формы (CSS) */
  .request-section {
    background-color: #0f2136; /* Темно-синий фон как на сайте */
    padding: 60px 20px;
    font-family: 'Roboto', sans-serif; /* Или шрифт вашего сайта */
    color: #fff;
    display: flex;
    justify-content: center;
  }

  .form-container {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05); /* Легкая подложка */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .form-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .form-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #aab8c5;
    font-size: 16px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-input, 
  .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #455a73;
    background-color: #1a2c42;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box; /* Важно для отступов */
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-input::placeholder,
  .form-textarea::placeholder {
    color: #7a8ba3;
  }

  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: #d4af37; /* Золотой акцент */
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
  }

  .form-textarea {
    resize: vertical;
    min-height: 100px;
  }

  .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(180deg, #e3c46e 0%, #d4af37 100%); /* Золотой градиент */
    border: none;
    border-radius: 6px;
    color: #1a2639; /* Темный текст на кнопке */
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, #ebd187 0%, #e0bd49 100%);
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  /* Сообщение об успехе/ошибке */
  .form-status {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    display: none;
  }
  .status-success { color: #4cd964; }
  .status-error { color: #ff3b30; }

  /* Адаптив для мобильных */
  @media (max-width: 480px) {
    .form-container {
      padding: 25px;
    }
    .form-title {
      font-size: 22px;
    }
  }

  #request {
    padding-top: 0;
    padding-bottom: 0;
  }

  .par-footer {
    margin-top: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  textarea {
    resize: none !important;
  }
  .par-footer__right {
    margin-left: auto;
  }

.par-logo-mob {
    display: none;
}

 /* ----- ТОЛЬКО МОБИЛЬНЫЕ СТИЛИ (до 980px) ----- */
@media (max-width: 979px) {

  /* Фикс хедера, чтобы меню выпадало ровно */
  .par-header__inner {
    position: relative;
    justify-content: space-between; /* Лого слева, бургер справа */
  }

  /* Скрываем меню по умолчанию */
  .par-nav {
    display: block; /* Перебиваем display:none, управляем через opacity */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b1624; /* Тот самый темно-синий цвет */
    padding: 30px 20px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 998;
    
    /* Анимация появления */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  /* Состояние открытого меню */
  .par-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Внутри меню - вертикальный список */
  .par-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Скрываем лого внутри меню (оно и так есть сверху) */
  .par-nav__inner .par-logo {
    display: none; 
  }

  /* Ссылки меню */
  .par-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .par-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .par-menu a {
    display: block;
    padding: 18px 0;
    color: #fff !important; /* Белый текст */
    font-size: 18px;
    font-weight: 600;
    background: transparent !important; /* Убираем фон, если был */
  }

  /* Кнопка телефона внизу меню */
  .par-nav__cta {
    width: 100%;
    margin-top: 10px;
  }
  
  .par-nav__cta .par-btn {
    width: 100%;
    justify-content: center;
    border: 1px solid #d4af37;
    color: #d4af37;
    background: transparent;
  }

  /* --- АНИМАЦИЯ БУРГЕРА --- */
  .par-burger {
    z-index: 999;
    position: relative;
    border: none;
    background: transparent; /* Убираем рамки, оставляем чистый бургер */
    box-shadow: none;
  }
  
  .par-burger span {
    transition: 0.3s;
    background: #0f2136; /* Цвет палочек на светлом фоне хедера */
  }

  /* Крестик при открытии */
  .par-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .par-burger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .par-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .par-nav {
    padding: 0;
  }
  .par-nav__cta .par-btn {
    width: 200px;
        margin: 0 auto;
  }
  .par-burger span {
    background: #fff;
  }
  .par-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .par-footer__right {
    margin-left: 0;
    display: flex;
    text-align: center;
  }
  .par-footer__contacts {
    text-align: center;
  }
  .par-footer__brand {
    justify-content: center;
  }
  .par-nav__inner {
    padding: 18px 14px 28px;

  }
  .par-logo-mob {
    display: block;
  }
  .par-header__inner {
    flex-direction: row-reverse;
  }
  .par-logo-mob .par-logo__img {
    width: 205px;
    height: auto;
  }
  .par-hero__title {
        font-size: clamp(27px, 5vw, 56px) !important;
  }
  .par-hero__desc {
    line-height: 29px !important;
    font-size: 21px !important;
  }
  .par-hero__actions {
    justify-content: center !important;
  }
}
