

/* Start:/bitrix/templates/thermoline/template_styles.css?177020973847760*/
  :root {
      --ryt-orange: #FF6B00;
      --ryt-black: #121212;
      --ryt-dark: #0f0f0f;
      --ryt-darker: #0a0a0a;
      --ryt-gray: #333;
      --ryt-light-gray: #aaa;
  }
a {
    color: #ff6b00;
    text-decoration: underline;
}

iframe {
    border: 0;
    border-radius: 6px;
}

  body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      background-color: var(--ryt-black);
      color: #fff;
      line-height: 1.6;
      overflow-x: hidden;
  }

  .text-muted {
      --bs-text-opacity: 1;
      color: #fff !important;
  }

  /* Top Bar */
  .top-bar {
      background-color: #000;
      font-size: 0.875rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Header */
  header.sticky-top {
      background-color: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(8px);
      z-index: 30;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .navbar-brand {
      font-weight: 700;
      font-size: 1.75rem;
      color: var(--ryt-orange) !important;
  }

@media (max-width: 640px) {
    /* .navbar-brand {display: none;} */
}

  .nav-link {
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #fff !important;
      transition: color 0.3s;
        position: relative;
            text-decoration: none;
  }

  .nav-link:hover,
  .nav-link:focus {
      color: var(--ryt-orange) !important;
      
  }
.nav-link-u::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-link-u:hover::after {
    width: 100%;
}

.hover-underline {
    display: inline-block;
    text-decoration: none;
}

.hover-underline:hover {
    text-decoration: underline;
}
  /* Hero */
  .hero {
      height: 80vh;
      min-height: 600px;
      /* display: flex; */
      align-items: center;
      
      /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
          url('/bitrix/templates/thermoline/../thermoline/img/bg_ImgID1.png') center/cover no-repeat; */

      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
          url('/bitrix/templates/thermoline/../thermoline/img/bg/bg-2.png') center/cover no-repeat;



  }

  .hero-title {
      font-size: 3rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
  }

  .hero-title span {
      color: var(--ryt-orange);
  }

  .hero-subtitle {
      font-size: 1.25rem;
      opacity: 0.9;
      max-width: 650px;
  }

  .btn-ryt {
      background-color: var(--ryt-orange);
      color: #000;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: none;
  }

  .btn-ryt:hover {
      background-color: #e05a00;
      transform: translateX(5px);
      box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
  }

  /* Cards */
  .card-hover {
      background: rgba(30, 30, 30, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      height: 100%;
  }

  .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
      border-color: rgba(255, 107, 0, 0.3);
  }

  .card-icon {
      width: 72px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      background: rgba(255, 107, 0, 0.1);
      border-radius: 50%;
      font-size: 1.75rem;
      color: #fff;
  }

  .card-icon.orange {
      background: rgba(255, 107, 0, 0.2);
  }

  .card-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
  }

  /* Section titles */
  .section-title {
      position: relative;
      font-size: 2.25rem;
      margin-bottom: 3rem;
      text-align: center;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--ryt-orange);
  }


        .section-title-left {
            position: relative;
            font-size: 2.25rem;
            text-align: left;
        }
    
        .section-title-left::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 30px;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--ryt-orange);
        }

  /* Values */
  .values-text {
      font-size: 2rem;
      font-weight: 300;
      line-height: 1.4;
      text-align: right;
  }

  .values-text span {
      display: block;
      font-weight: 700;
      font-size: 2.5rem;
      color: var(--ryt-orange);
  }

  /* Footer */
  footer {
      background-color: #080808;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-heading {
      font-size: 1.25rem;
      color: var(--ryt-orange);
      margin-bottom: 1.25rem;
  }

  .footer-link {
      color: #ccc;
      text-decoration: none;
      margin-bottom: 0.5rem;
      display: inline-block;
      transition: color 0.2s;
  }

  .footer-link:hover {
      color: var(--ryt-orange);
  }

  .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 1rem;
      font-size: 0.875rem;
      opacity: 0.7;
  }

  /* Responsive adjustments */
  @media (max-width: 991.98px) {
      .hero-title {
          font-size: 2.5rem;
      }

      .hero-subtitle {
          font-size: 1.1rem;
      }

      .section-title {
          font-size: 2rem;
      }

      .values-text {
          text-align: left;
      }

      .values-text span {
          font-size: 2.25rem;
      }
  }

  @media (max-width: 767.98px) {
      .hero {
          min-height: 500px;
      }

      .hero-title {
          font-size: 2rem;
      }

      .hero-subtitle {
          font-size: 1rem;
      }

      .section-title {
          font-size: 1.75rem;
      }

      .navbar-brand {
          font-size: 1.5rem;
      }

      .values-text {
          font-size: 1.5rem;
      }

      .values-text span {
          font-size: 2rem;
      }
  }

  /* Animation */
  .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.appear {
      opacity: 1;
      transform: translateY(0);
  }

  .navbar-toggler {
      background: #ffffff;
  }

.py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.py-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.py-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

.py-8{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

.py-9{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
}

/** **/


/* Базовое */
.dropdown-menu {
    border-radius: 8px;
    padding: 8px 0;
}

/* Подменю */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
}

/* ===== HOVER ТОЛЬКО НА ДЕСКТОПЕ ===== */
@media (min-width: 992px) {

    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }

}


/* вложенное меню */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
}

/* стрелка вправо */
.dropdown-submenu>a::after {
    content: "›";
    float: right;
    font-size: 18px;
    margin-top: -2px;
}

/* hover для десктопа */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}


/** **/
.fw-ur {
    text-transform: uppercase;
}

.bx-breadcrumb .bx-breadcrumb-item a {
    border-bottom: 0;
    text-decoration: none;
    color: #ff6b00;
}

.bx-breadcrumb .bx-breadcrumb-item {
    float: left;
    margin-bottom: 10px;
    white-space: nowrap;
    line-height: 13px;
    vertical-align: middle;
    margin-right: 10px;
    color: #ffffff;
}

li.nav-item a.nav-link.active {
    color: #ff6b00!important;
}

.img-100{
    width: 100%;
    height: auto;
}

/** **/
.faq {
    margin: 15px 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 500;
}

.faq-label {
    opacity: 0.6;
    font-size: 14px;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #2a2a2a;
    color: #fff;
    border: none;
    padding: 24px 70px 24px 24px;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.faq-question .icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 64px;
    height: 100%;
    background: #ff6a00;
}

.faq-question .icon::before,
.faq-question .icon::after {
    content: '';
    position: absolute;
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-question .icon::before {
    width: 18px;
    height: 2px;
}

.faq-question .icon::after {
    width: 2px;
    height: 18px;
}

.faq-item.active .icon::after {
    display: none;
}

.faq-answer {
    background: #1a1a1a;
    padding: 0 24px;
    font-size: 16px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 24px;
    max-height: 300px;
    opacity: 1;
}

/** **/
.advantages-section {
    margin: 0 auto;
}

.advantages-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 500;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-card {
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 50%);
    z-index: 1;
}

.advantage-card.icon-orange {
    background: #ff7a00;
}

.advantage-card:hover {
    background: #ff7a00;
}

.advantage-card:hover .icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.advantage-card.icon-orange::before {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.3) 50%, rgba(255, 122, 0, 0.6) 50%);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 2;
}

.advantage-card.icon-orange .icon-wrapper {
    background: rgba(255, 255, 255, 0.9);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.advantage-card.icon-orange .icon-wrapper svg {
    fill: #ff7a00;
}

.card-text {
    font-size: 14px;
    line-height: 1.5;
    z-index: 2;
}

/* Иконки SVG — встроенные */
.icon-badge {
    fill: #fff;
}

.icon-package {
    fill: #aaa;
}

.icon-cycle {
    fill: #aaa;
}

.icon-certificate {
    fill: #aaa;
}

.icon-design {
    fill: #aaa;
}

.icon-clock {
    fill: #aaa;
}

.icon-gear {
    fill: #aaa;
}

.icon-shield {
    fill: #aaa;
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/** **/
.contact-block {
    display: flex;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-block {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }
}

/* Левая колонка — текст */
.contact-text {
    flex: 1;
}

.contact-text .tag {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-text p {
    font-size: 14px;
    color: #ccc;
    max-width: 400px;
}

/* Правая колонка — форма */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
        padding: 12px 15px;
        border: 1px solid #333;
        color: #fff;
        font-size: 16px;
        border-radius: 4px;
        transition: border-color 0.2s;
        background: #0c0c0c;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6901;
}

.form-group input::placeholder {
    color: #666;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #ccc;
}

.checkbox-container input[type="checkbox"] {
    accent-color: #ff6901;
    margin-top: 4px;
}

.checkbox-container a {
    color: #fff;
    text-decoration: underline;
    margin-left: 2px;
}

.submit-btn {
    background-color: #ff6901;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #e26104;
}

.submit-btn::after {
    content: "→";
    font-weight: bold;
}

.bg-darker-fos {
    background-color: #0c0c0c;
}

/** **/

.bg-dark-status {
    background-color: #121212;
}
  .stats-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 100%;
      margin: 0 auto;
  }

  .stat-card {
      background-color: #1a1a1a;
      border: 1px solid #333;
      padding: 25px;
      border-radius: 8px;
      flex: 1 1 calc(25% - 20px);
      min-width: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease;
  }

  .stat-card:hover {
      transform: translateY(-5px);
    background-color: #e26104;
    color: #ffffff;
    transition: transform 0.3s ease;

  }

  .stat-card:hover .stat-description{
    color: #ffffff;

  }

  .icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .icon svg {
      width: 100%;
      height: 100%;
      fill: #cccccc;
  }

  .stat-value {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 15px;
      color: #ffffff;
  }

  .stat-description {
      font-size: 0.9rem;
      line-height: 1.4;
      color: #bbbbbb;
  }

  /* Адаптивность */
  @media (max-width: 768px) {
      .stat-card {
          flex: 1 1 calc(50% - 10px);
      }
  }

  @media (max-width: 480px) {
      .stat-card {
          flex: 1 1 100%;
      }

      .stat-value {
          font-size: 2rem;
      }
  }

  /* Иконки в виде SVG */
  .icon-cross {
      background: linear-gradient(45deg, #888, #aaa);
      border-radius: 4px;
      position: relative;
  }

  .icon-cross::before,
  .icon-cross::after {
      content: '';
      position: absolute;
      background: #333;
      border-radius: 2px;
  }

  .icon-cross::before {
      width: 60%;
      height: 20%;
      top: 40%;
      left: 20%;
  }

  .icon-cross::after {
      width: 20%;
      height: 60%;
      top: 20%;
      left: 40%;
  }

  .icon-gear {
      background: linear-gradient(45deg, #888, #aaa);
      border-radius: 50%;
      position: relative;
  }

  .icon-gear::before {
      content: '';
      position: absolute;
      width: 60%;
      height: 60%;
      background: #333;
      border-radius: 50%;
      top: 20%;
      left: 20%;
  }

  .icon-sun {
      background: linear-gradient(45deg, #888, #aaa);
      border-radius: 50%;
      position: relative;
      overflow: hidden;
  }

  .icon-sun::before {
      content: '';
      position: absolute;
      width: 60%;
      height: 60%;
      background: #333;
      border-radius: 50%;
      top: 20%;
      left: 20%;
  }

  .icon-diamond {
      background: linear-gradient(45deg, #888, #aaa);
      clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
      position: relative;
  }

  .icon-diamond::before {
      content: '';
      position: absolute;
      width: 60%;
      height: 60%;
      background: #333;
      top: 20%;
      left: 20%;
      clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }

  /** **/
.img-ryterno {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
/* === ИЗОЛИРОВАННЫЕ СТИЛИ ВИЗИТКИ THERMOLINE === */
.tl-card-wrapper {
    all: unset;
    /* Сбрасываем всё у корневого контейнера */
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.tl-card-business-card {
    all: initial;
    display: block;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #222;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: normal;
    text-align: start;
}

.tl-card-front,
.tl-card-back {
    all: unset;
    display: block;
    padding: 30px 40px;
    box-sizing: border-box;
}

.tl-card-front {
    border-bottom: 10px solid #ff7700;
    text-align: center;
}

.tl-card-title {
    all: unset;
    display: block;
    font-size: 55px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
    color: #ddd;
    line-height: 1.2;
}

.tl-card-subtitle {
    all: unset;
    display: block;
    font-size: 20px;
    color: #aaa;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .tl-card-title {
        font-size: 28px;
    }

    .tl-card-subtitle {
        font-size: 16px;
    }
}

.tl-card-contact-info {
    all: unset;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.tl-card-contact-column {
    all: unset;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-content: center;
    flex-wrap: wrap;    
    margin: auto;
}

.tl-card-contact-item {
    all: unset;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

.tl-card-icon-svg {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tl-card-icon-svg svg {
    width: 100%;
    height: 100%;
    fill: #ff7700;
    display: block;
}

.tl-card-text {
    all: unset;
    display: inline;
    font-size: 20px;
    color: #ccc;
}

.tl-card-back {
    padding: 60px 40px;
    text-align: center;
    background: #222;
}

.tl-card-logo {
    all: unset;
    display: block;
    font-size: 180px;
    font-weight: bold;
    letter-spacing: -5px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 119, 0, 0.3);
    position: relative;
    margin-bottom: 20px;
}

.tl-card-logo::before,
.tl-card-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 4px;
    background: #ff7700;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50%;
}

.tl-card-logo::after {
    width: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.tl-card-logo span {
    display: inline-block;
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.tl-card-title-back {
    all: unset;
    display: block;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ddd;
    margin: 0;
    line-height: 1.2;
}

/* Адаптивность */
@media (max-width: 640px) {
    .tl-card-business-card {
        width: 100%;
    }

    .tl-card-contact-info {
        flex-direction: column;
    }

    .tl-card-contact-column {
        width: 100%;
        all: unset;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-content: flex-start;
        flex-wrap: wrap;
        margin: 10px 0;
    }

    .tl-card-logo {
        font-size: 120px;
    }

    .tl-card-front,
    .tl-card-back {
        padding: 20px;
    }
}
/** **/
.company-details {
    padding: 40px 0px;
}

.details-card {
    max-width: 100%;
    margin: 0 auto;
    background: #222222;
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.details-title {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.details-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.details-list li {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.details-list li:last-child {
    border-bottom: none;
}

.label {
    font-weight: 500;
    color: #d4d4d4;
}

.value {
    color: #fff;
    line-height: 1.6;
}

.value small {
    color: #fff;
}

.value a {
    color: #ff6b00;
    text-decoration: none;
}

.value a:hover {
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 768px) {
    .details-card {
        padding: 24px 20px;
    }

    .details-list li {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .label {
        font-size: 14px;
    }
}

/** **/

.contacts-container {
    max-width: 100%;
    margin: 0 auto;
}

.contacts-title {
    font-size: 36px;
    margin-bottom: 40px;
}

.contacts-card {
    background: #222222;
    border-radius: 16px;
    padding: 30px 34px;
    margin-bottom: 28px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.contacts-card h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.contacts-subtitle {
    color: #ff6b00;
    font-weight: 500;
    margin-bottom: 16px;
}

.contacts-text {
    color: #c1c1c1;
    margin: 12px 0;
}

.icon {
    margin-right: 6px;
}

.phones a {
    display: block;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    margin-bottom: 6px;
}

.phones a:hover {
    color: #fc7c21;
}

.contacts-card a {
    color: #fff;
    text-decoration: none;
}

.contacts-card a:hover {
    text-decoration: underline;
}

.phone-btn {
    margin-top: 16px;
    padding: 12px 26px;
    border-radius: 30px;
    border: none;
    background: #ff6b00;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.phone-btn:hover {
    background: #fc7c21;
}

.region {
    border-top: 1px dashed #e5e7eb;
    padding-top: 16px;
    margin-top: 16px;
}

.region h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.city {
    color: #6b7280;
    margin: 4px 0;
}

/* Адаптив */
@media (max-width: 768px) {
    .contacts-card {
        padding: 22px;
    }

    .contacts-title {
        font-size: 28px;
    }
}

.lfCQiA {
    display: none;
}
.reviews-cta {
    margin: 10px 0 20px 0;
}

.reviews-box {
    max-width: 100%;
    margin: 0 auto;
    background: #222222;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.reviews-title {
    font-size: 32px;
    margin-bottom: 16px;
    color: #fff;
}

.reviews-text {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 28px;
}

.reviews-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    min-width: 240px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Google */
.review-btn.google {
    background: #ea4335;
}

/* Yandex */
.review-btn.yandex {
    background: #ffcc00;
    color: #111;
}

/* Адаптив */
@media (max-width: 576px) {
    .reviews-title {
        font-size: 26px;
    }

    .review-btn {
        width: 100%;
    }
}

/** **/
  .page-box {
    background: #222222;
        border-radius: 16px;
        padding: 40px 42px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        margin-bottom: 50px;
  }

  .reviews-points {
      background: #484848;
      border-radius: 12px;
      padding: 20px 24px;
      margin: 24px 0;
  }

  .external-reviews {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 24px;
  }

  .review-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 26px;
      border-radius: 30px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
  }

  .review-link.google {
      background: #ea4335;
      color: #ffffff;
  }

  .review-link.yandex {
      background: #ffcc00;
      color: #111827;
  }

  .review-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .cta {
      margin-top: 40px;
      padding-top: 24px;
      border-top: 1px dashed #e5e7eb;
  }

  .cta strong {
      color: #fff;
  }

  @media (max-width: 768px) {
      h1 {
          font-size: 30px;
      }

      .page-box {
          padding: 28px 24px;
      }
  }
/** **/
.trust-section {
    background: #222222;
    color: #ffffff;
    border-radius: 16px;
    padding: 40px 42px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.trust-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.trust-title {
    font-size: 36px;
    margin-bottom: 8px;
}

.trust-subtitle {
    color: #9ca3af;
    margin-bottom: 48px;
    font-size: 16px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 40px 24px;
    backdrop-filter: blur(6px);
}

.trust-number {
    font-size: 56px;
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 12px;
}

.trust-text {
    font-size: 16px;
    line-height: 1.4;
    color: #e5e7eb;
}

/* Адаптив */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-number {
        font-size: 48px;
    }

    .trust-title {
        font-size: 28px;
    }
}
/** галерея **/

.gallery-wrapper {
    position: relative;
}

/* ---------- Стрелки ---------- */
.slider-section {
    display: flex;
    justify-content: center;
}
.gallery-wrapper {
    width: 100%;
    max-width: 1200px;
    /* ширина слайдера */
    margin: 0 auto;
    position: relative;
}
/* важно для slick */
.gallery-slider {
    width: 100%;
}
.slick-arrow {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: all .3s ease;
}

.slick-arrow:hover {
    background: #111;
}

.slick-arrow:before {
    font-size: 20px;
    color: #111;
    opacity: 1;
    transition: color .3s ease;
}

.slick-arrow:hover:before {
    color: #fff;
}

.slick-prev {
    left: -24px;
}

.slick-next {
    right: -24px;
}

/* ---------- Dots ---------- */
.slick-dots {
    bottom: -55px;
}
.slick-slide img {
    display: block;
    border-radius: 8px;
}
.slick-dots li {
    width: 22px;
    height: 6px;
    margin: 0 4px;
}

.slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}

.slick-dots li button:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #ddd;
    border-radius: 4px;
    opacity: 1;
    transition: all .3s ease;
}

.slick-dots li.slick-active button:before {
    background: #111;
    width: 30px;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
    .slick-arrow {
        width: 40px;
        height: 40px;
    }

    .slick-prev {
        left: -10px;
    }

    .slick-next {
        right: -10px;
    }
}

/* расстояние между слайдами */
.gallery-slider .slick-slide {
    padding: 0 10px;
    /* ← расстояние между слайдами */
}

/* компенсация padding */
.gallery-slider .slick-list {
    margin: 0 -10px;
}

/** **/
/* ===== Grid ===== */
.certificates-grid {
    margin-top: 30px;
}

/* ===== Card ===== */
.cert-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    animation: fadeUp .6s ease forwards;
}

/* ===== Image ===== */
.cert-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

/* ===== Overlay ===== */
.cert-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, .55) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s ease;
}

/* ===== Icon ===== */
.cert-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    color: #000;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.7);
    transition: transform .4s ease;
}

/* ===== Hover ===== */
.cert-item:hover img {
    transform: scale(1.08);
}

.cert-item:hover .cert-overlay {
    opacity: 1;
}

.cert-item:hover .cert-icon {
    transform: scale(1);
}

/* ===== Animation ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/** **/
.company-history {
    background: #222222;
        border-radius: 16px;
        padding: 30px 34px;
        margin-bottom: 28px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
        color: #fff;
}

.history-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.history-header p {
    font-size: 18px;
    max-width: 800px;
    line-height: 1.6;
}

.history-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.history-block {
    margin-top: 50px;
}

.history-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.history-block p {
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ===== Timeline ===== */
.history-timeline {
    margin-top: 60px;
    position: relative;
    padding-left: 30px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ff6b00;
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: #ff6b00;
    border-radius: 50%;
}

.timeline-item .year {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Акцентный блок */
.history-block.accent {
    background: #ff6b00;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    margin-top: 70px;
}

/* Акцентный блок */
.history-block.accent2 {
    background: #515151;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    margin-top: 70px;
}

/* Adaptive */
@media (max-width: 768px) {
    .history-header h2 {
        font-size: 28px;
    }

    .history-block h3 {
        font-size: 22px;
    }
}
/** **/
#backToTopSquare {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: transparent;
    border: 2px solid #FF6B00;
    /* оранжевая рамка */
    color: white;
    border-radius: 4px;
    /* квадрат с небольшими скруглениями */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    z-index: 1000;
}
.text-orange {
    color: #ff6b00;
}
#backToTopSquare.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTopSquare:hover,
#backToTopSquare:focus {
    background-color: rgba(255, 107, 0, 0.1);
    /* лёгкий оранжевый фон при наведении */
    outline: none;
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.5);
}

#backToTopSquare svg {
    stroke: white;
    stroke-width: 2.5;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    #backToTopSquare {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
}

.dropdown-menu {
    z-index: 1060 !important;
    /* или выше, например 2000 */
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #ff6b00;
}


         .payment-method h2 {
             font-size: 18px;
         }

p.intro {
    text-align: center;
    margin-bottom: 32px;
    font-size: 16px;
    color: #555;
}

.payment-method {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.payment-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.payment-method h2 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 20px;
}

.payment-method p,
.payment-method ul {
    margin-bottom: 12px;
}

.payment-method ul {
    padding-left: 20px;
}

.payment-method li {
    margin-bottom: 6px;
}

.installment {
    background-color: #ff6803;
    padding: 16px 16px 26px 16px;
    border-left: 4px solid #fff;
    border-radius: 6px;
        display: grid;
}

        :root {
            --primary-color: #2c3e50;
            --accent-color: #ff6803;
            --light-bg: #ff6803;
            --text-color: #333;
            --border-color: #ddd;
        }

                .delivery-box {
                    max-width: 100%;
                    padding: 28px 32px;
                    background: linear-gradient(135deg, #f8fafc, #eef2f7);
                    border-radius: 18px;
                    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
                }
        
                .delivery-box h2 {
                    margin-bottom: 18px;
                    font-size: 26px;
                    font-weight: 700;
                    color: #1f2937;
                }
        
                .delivery-box ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }
        
                .delivery-box li {
                    position: relative;
                    padding-left: 34px;
                    margin-bottom: 14px;
                    font-size: 16px;
                    line-height: 1.6;
                    color: #374151;
                }
        
                .delivery-box li::before {
                    content: "✔";
                    position: absolute;
                    left: 0;
                    top: 2px;
                    color: #ff6b00;
                    font-weight: bold;
                    font-size: 18px;
                }
        
                .delivery-box .free {
                    color: #ff6b00;
                    font-weight: 700;
                }

.gates-installation {
    margin: 0 auto;
    color: #fff;
    line-height: 1.7;
}

.gates-installation h1 {
    font-size: 34px;
    margin-bottom: 24px;
}

.gates-installation h2 {
    font-size: 26px;
    margin: 40px 0 16px;
}

.gates-installation h3 {
    font-size: 20px;
    margin: 28px 0 12px;
}

.gates-installation p {
    margin-bottom: 16px;
    font-size: 16px;
}

.check-list,
.time-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.check-list li,
.time-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.time-list li::before {
    content: "⏱";
    position: absolute;
    left: 0;
}

.warning-box {
    background: #fef3c7;
    border-left: 5px solid #ff6b00;
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
        color: #000;
}

.warning-box h3 {
    margin-top: 0;
}

/** **/
.service-gates {
    margin: 0 auto;
    color: #fff;
    line-height: 1.7;
}

.service-gates h1 {
    font-size: 34px;
    margin-bottom: 24px;
}

.service-gates h2 {
    font-size: 26px;
    margin: 40px 0 18px;
}

.service-gates p {
    font-size: 16px;
    margin-bottom: 16px;
}

.important-box {
    background: #fff1f2;
    border-left: 5px solid #ef4444;
    padding: 20px 22px;
    border-radius: 14px;
    margin: 30px 0;
        color: #1f2937;
}

.important-box strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    background: #f8fafc;
    padding: 18px 22px 18px 54px;
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
        color: #1f2937;
}

.benefits-list li::before {
    content: "✔";
    position: absolute;
    left: 20px;
    top: 22px;
    font-size: 18px;
    color: #22c55e;
    font-weight: bold;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 14px;
    font-size: 16px;
}

/** **/
.warranty {
    margin: 0 auto;
    color: #fff;
    line-height: 1.7;
}

.warranty h1 {
    font-size: 34px;
    margin-bottom: 24px;
}

.warranty h2 {
    font-size: 26px;
    margin: 40px 0 18px;
}

.warranty h3 {
    font-size: 20px;
    margin: 26px 0 12px;
}

.warranty p {
    margin-bottom: 16px;
    font-size: 16px;
}

.check-list,
.cross-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.check-list li,
.cross-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.cross-list li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.number-list {
    padding-left: 20px;
}

.important-box {
    background: #fff1f2;
    border-left: 5px solid #ef4444;
    padding: 20px;
    border-radius: 14px;
    margin: 30px 0;
}

.info-box {
    background: #f0f9ff;
    border-left: 5px solid #0ea5e9;
    padding: 20px;
    border-radius: 14px;
    margin: 30px 0;
        color: #121212;
}

.dropdown-item {
        background-color: #020202;
            color: #fff;
                line-height: 34px;
}

        .navbar-expand-lg .navbar-nav .dropdown-menu {
            position: absolute;
            background: #020202;
        }

                .dropdown-menu{
                --bs-dropdown-bg: #020202;
                
                }

/** **/

:root {
    --bg-body: #0d0d0d;
    --bg-card: #1a1a1a;
    --accent: #ff6b00;
    /* Ваш фирменный цвет */
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Сетка продукции */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Карточка */
.card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #252525;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

/* Изображение */
.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

/* Оранжевая плашка поверх фото при ховере */
.card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 107, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: var(--transition);
}

.card:hover .card-img-wrapper::after {
    opacity: 1;
}

/* Текстовый блок */
.card-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-info h3 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--text-main);
}

.card-info p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Ссылка/Кнопка */
.card-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-link::after {
    content: '→';
    transition: var(--transition);
}

.card:hover .card-link::after {
    transform: translateX(5px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .product-grid {
        gap: 20px;
    }
}
/** **/
.product-card-detail {
    background: var(--card-bg);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 15px 15px;
    margin: 0 0 20px 0;
    border-radius: 20px;
    border: 2px solid #242424;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* --- ГАЛЕРЕЯ --- */
.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #333;
}

#mainPhoto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

/* Эффект затухания при смене фото */
.fade-out {
    opacity: 0;
}

.thumbnails {
    display: flex;
    gap: 12px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: var(--transition);
}

.thumb:hover {
    opacity: 0.8;
}

.thumb.active {
    border-color: var(--accent);
    opacity: 1;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* --- ИНФОРМАЦИЯ --- */
.info-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.specs-list {
    width: 90%;
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.specs-list li {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.specs-list li span:first-child {
    color: var(--text-dim);
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-main {
    background: var(--accent);
    color: #ffffffcf;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-main:hover {
    background: #ff852e;
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .product-card-detail {
        grid-template-columns: 1fr;
        width: 95%;
    }
}

/** **/
/* Стили модального окна */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: none;
    /* Скрыто по умолчанию */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #181818;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--accent);
    position: relative;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
    flex-direction: column;
}
.modal-header h2 span {
    color: var(--accent);
}

.modal-header p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-group label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    background: #222;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.modal-form input:focus {
    border-color: var(--accent);
}

.btn-submit {
    background: var(--accent);
    color: #ffffffcf;
    border: none;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #ff852e;
}

.calc-result {
    background: rgba(255, 107, 0, 0.05);
    border: 1px dashed var(--accent);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 10px 0;
}

.calc-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 5px;
}

.calc-price-wrapper {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.currency {
    font-size: 1.2rem;
    margin-left: 5px;
}

.calc-note {
    font-size: 0.7rem;
    color: #666;
    margin-top: 10px;
}


/* End */
/* /bitrix/templates/thermoline/template_styles.css?177020973847760 */
