    :root {
      --navy:       #07111f;
      --navy-mid:   #0d1e32;
      --navy-light: #132840;
      --gold:       #c9a84c;
      --gold-light: #e8c97a;
      --gold-pale:  #f5e6b8;
      --white:      #f0f4f8;
      --muted:      rgba(240,244,248,.55);
      --radius:     4px;
      --transition: .35s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }

    /* ── Утилиты ── */
    .gold  { color: var(--gold); }
    .line-gold {
      display: inline-block; width: 48px; height: 2px;
      background: var(--gold); margin-bottom: 1.2rem;
    }
    .section-label {
      font-family: 'Jost', sans-serif;
      font-size: .72rem; font-weight: 500;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .4rem;
    }
    .btn-gold {
      background: transparent;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      font-family: 'Jost', sans-serif;
      font-size: .82rem; font-weight: 500;
      letter-spacing: .14em; text-transform: uppercase;
      padding: .82rem 2.4rem;
      border-radius: var(--radius);
      transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .btn-gold::before {
      content: ''; position: absolute; inset: 0;
      background: var(--gold); transform: scaleX(0);
      transform-origin: left; transition: transform var(--transition);
      z-index: 0;
    }
    .btn-gold:hover::before { transform: scaleX(1); }
    .btn-gold span { position: relative; z-index: 1; }
    .btn-gold:hover { color: var(--navy); border-color: var(--gold); }

    .btn-gold-solid {
      background: var(--gold);
      border: 1.5px solid var(--gold);
      color: var(--navy);
      font-family: 'Jost', sans-serif;
      font-size: .82rem; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      padding: .82rem 2.4rem;
      border-radius: var(--radius);
      transition: var(--transition);
    }
    .btn-gold-solid:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }

    /* ── Волновой разделитель ── */
    .wave-divider svg { display: block; }

    /* ═══════════════════════════════════
       NAVBAR
    ═══════════════════════════════════ */
    #mainNav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
      padding: 1.1rem 0;
      transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
    }
    #mainNav.scrolled {
      background: rgba(7,17,31,.92);
      backdrop-filter: blur(14px);
      padding: .65rem 0;
      border-bottom: 1px solid rgba(201,168,76,.18);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 700;
      color: var(--white); text-decoration: none;
      letter-spacing: .04em;
      display: flex; align-items: center; gap: .5rem;
    }
    .nav-logo .logo-anchor { color: var(--gold); }
    .nav-logo:hover { color: var(--white); }

    .nav-center { display: flex; align-items: center; gap: 2rem; }
    .nav-link-custom {
      color: rgba(240,244,248,.75);
      font-size: .8rem; font-weight: 400;
      letter-spacing: .1em; text-transform: uppercase;
      text-decoration: none;
      position: relative; padding-bottom: 3px;
      transition: color var(--transition);
    }
    .nav-link-custom::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 1px; background: var(--gold);
      transition: width var(--transition);
    }
    .nav-link-custom:hover { color: var(--gold); }
    .nav-link-custom:hover::after { width: 100%; }

    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .nav-phone {
      font-size: .88rem; font-weight: 500;
      color: var(--white); text-decoration: none;
      letter-spacing: .03em;
      transition: color var(--transition);
    }
    .nav-phone:hover { color: var(--gold); }
    .nav-social a {
      color: rgba(240,244,248,.6);
      font-size: 1.15rem;
      transition: color var(--transition);
      text-decoration: none;
    }
    .nav-social a:hover { color: var(--gold); }
    .burger-btn {
      background: none; border: 1.5px solid rgba(201,168,76,.4);
      color: var(--white); border-radius: var(--radius);
      padding: .38rem .6rem; font-size: 1.1rem;
      transition: var(--transition); cursor: pointer;
		margin-right: 10px;
    }
    .burger-btn:hover { border-color: var(--gold); color: var(--gold); }

    /* Скрываем центральное меню на мобильном */
    @media (max-width: 991px) { .nav-center, .nav-phone { display: none !important; } }

    /* ── Оффканвас ── */
    .offcanvas {
      background: var(--navy-mid) !important;
      border-left: 1px solid rgba(201,168,76,.2) !important;
      max-width: 320px;
      z-index: 1055 !important; /* выше navbar (1050) */
    }
    /* Затемнение под оффканвасом — поверх всего, включая navbar */
    .offcanvas-backdrop {
      z-index: 1054 !important;
    }
    .offcanvas-header {
      border-bottom: 1px solid rgba(201,168,76,.15);
      padding: 1rem 1.4rem;
      /* Выровнять по высоте navbar */
      min-height: 64px;
      align-items: center;
    }
    .offcanvas-body { padding: 1.6rem 1.4rem; }
    .off-nav-link {
      display: block; padding: .85rem 0;
      border-bottom: 1px solid rgba(240,244,248,.07);
      color: var(--white); text-decoration: none;
      font-size: 1.05rem; font-weight: 400;
      letter-spacing: .06em;
      transition: color var(--transition), padding-left var(--transition);
    }
    .off-nav-link:hover { color: var(--gold); padding-left: .5rem; }
    .off-contacts { margin-top: 2rem; }
    .off-contacts a { color: rgba(240,244,248,.7); text-decoration: none; font-size: .9rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem; transition: color var(--transition);}
    .off-contacts a:hover { color: var(--gold); }
    .btn-close-custom {
      background: none; border: 1.5px solid rgba(201,168,76,.35);
      color: var(--white); border-radius: var(--radius);
      padding: .3rem .55rem; font-size: 1rem; cursor: pointer;
      transition: var(--transition); line-height: 1;
      flex-shrink: 0;
    }
    .btn-close-custom:hover { border-color: var(--gold); color: var(--gold); }

    /* ═══════════════════════════════════
       HERO
    ═══════════════════════════════════ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('../img/main-bg.png') center center / cover no-repeat;
    }
    /* Затемняющий оверлей поверх фото */
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(7,17,31,.55) 0%,
        rgba(7,17,31,.45) 50%,
        rgba(7,17,31,.75) 100%
      );
    }

    /* Звёзды */
    .stars {
      position: absolute; inset: 0;
      background-image:
        radial-gradient(1px 1px at 20% 15%, rgba(255,255,255,.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 8%,  rgba(255,255,255,.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 30%, rgba(255,255,255,.3) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 60% 5%, rgba(201,168,76,.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 25%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 40%, rgba(255,255,255,.25) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 60%, rgba(201,168,76,.3) 0%, transparent 100%);
    }

    /* Световой луч */
    .hero-beam {
      position: absolute; top: -10%; left: 50%;
      width: 1px; height: 70%;
      background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,.12) 50%, transparent 100%);
      transform: translateX(-50%) rotate(-8deg);
      animation: beamPulse 6s ease-in-out infinite;
    }
    @keyframes beamPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

    .hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1rem; }
    .hero-tag {
      display: inline-block;
      border: 1px solid rgba(201,168,76,.45);
      color: var(--gold); font-size: .72rem; font-weight: 500;
      letter-spacing: .22em; text-transform: uppercase;
      padding: .35rem 1.2rem; border-radius: 50px; margin-bottom: 1.8rem;
      animation: fadeDown .8s ease both;
    }
    .hero-title {
      font-size: clamp(2.6rem, 7vw, 5.5rem);
      line-height: 1.05; font-weight: 700;
      margin-bottom: 1.4rem;
      animation: fadeUp .9s .15s ease both;
    }
    .hero-title .line2 { color: var(--gold); display: block; }
    .hero-sub {
      font-size: clamp(.95rem, 2vw, 1.18rem);
      color: var(--muted); max-width: 560px; margin: 0 auto 2.6rem;
      font-weight: 300; line-height: 1.7;
      animation: fadeUp .9s .3s ease both;
    }
    .hero-cta { animation: fadeUp .9s .45s ease both; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .hero-scroll {
      position: absolute; bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .4rem;
      color: rgba(240,244,248,.4); font-size: .68rem;
      letter-spacing: .14em; text-transform: uppercase;
      animation: bounce 2s ease-in-out infinite;
    }
.hero-scroll a{
	color: #C9A84C;
}
    @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
    @keyframes fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
    @keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }

    /* ══════════════════════════════════
       СЕКЦИИ — фоновые эффекты
    ══════════════════════════════════ */

    /* Тёмные секции (--navy): навигационная сетка */
    #hero, #about, #faq, #contacts {
      position: relative;
    }
    #about::before, #faq::before, #contacts::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,.045) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }
    /* Контент поверх сетки */
    #about .container-xl,
    #faq .container-xl,
    #contacts .container-xl { position: relative; z-index: 1; }

    /* Светлые секции (--navy-mid): золотое свечение в углу */
    #advantages, #routes, #reviews {
      position: relative;
      overflow: hidden;
    }
    #advantages::before {
      content: '';
      position: absolute;
      top: -180px; right: -180px;
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(201,168,76,.13) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    #advantages::after {
      content: '';
      position: absolute;
      bottom: -120px; left: -120px;
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    #routes::before {
      content: '';
      position: absolute;
      top: -150px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 400px;
      background: radial-gradient(ellipse, rgba(201,168,76,.09) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    #reviews::before {
      content: '';
      position: absolute;
      bottom: -150px; right: -150px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(201,168,76,.11) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    #reviews::after {
      content: '';
      position: absolute;
      top: -100px; left: -100px;
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(13,34,64,.6) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    /* Контент поверх свечений */
    #advantages .container-xl,
    #routes .container-xl,
    #reviews .container-xl { position: relative; z-index: 1; }
    section { padding: 6rem 0; }
    .section-title {
      font-size: clamp(2rem, 4.5vw, 3rem);
      line-height: 1.15; margin-bottom: 1rem;
    }
    .section-intro {
      font-size: 1rem; color: var(--muted); line-height: 1.75;
      max-width: 560px;
    }

    /* Анимация при прокрутке */
    .reveal {
      opacity: 0; transform: translateY(36px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }
    .reveal-delay-5 { transition-delay: .5s; }

    /* ═══════════════════════════════════
       ПРЕИМУЩЕСТВА
    ═══════════════════════════════════ */
    #advantages { background: linear-gradient(160deg, #0e1e33 0%, #0d1e32 55%, #0f2135 100%); }
    .adv-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(201,168,76,.12);
      border-radius: 8px;
      padding: 2.2rem 1.8rem;
      height: 100%;
      transition: border-color var(--transition), transform var(--transition), background var(--transition);
      position: relative; overflow: hidden;
    }
    .adv-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0; transition: opacity var(--transition);
    }
    .adv-card:hover { border-color: rgba(201,168,76,.35); transform: translateY(-4px); background: rgba(255,255,255,.05); }
    .adv-card:hover::before { opacity: 1; }
    .adv-icon {
      width: 52px; height: 52px;
      border: 1px solid rgba(201,168,76,.3);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--gold); margin-bottom: 1.2rem;
      background: rgba(201,168,76,.06);
    }
    .adv-title { font-family: 'Jost',sans-serif; font-size: 1rem; font-weight: 500; margin-bottom: .5rem; }
    .adv-text  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

    /* ═══════════════════════════════════
       СЛАЙДЕР ОБ УСЛУГЕ
    ═══════════════════════════════════ */
    #about { background: linear-gradient(170deg, #060f1c 0%, #07111f 55%, #080e1c 100%); }
    .about-slider-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      border: 1px solid rgba(201,168,76,.12);
    }
    /* Внешний контейнер фиксированной высоты */
    .slider-viewport {
      position: relative;
      overflow: hidden;
      width: 100%;
    }
    /* Лента */
    .slider-track {
      display: flex;
      width: 100%;
      will-change: transform;
    }
    .slide-item {
      min-width: 100%;
      width: 100%;
      flex-shrink: 0;
      overflow: hidden;
      background: var(--navy-light);
    }
    .slide-img {
      width: 100%; aspect-ratio: 16/8;
      object-fit: cover;
		height: 300px;
      background: linear-gradient(135deg, #0d2240, #1a3a60);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.08); font-size: 6rem;
    }
    .slide-caption { padding: 1.8rem 2rem; background-color: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
    .slide-caption h4 { font-size: 1.45rem; margin-bottom: .6rem; color: var(--gold-pale); }
    .slide-caption p  { font-size: .9rem; color: var(--muted); line-height: 1.7; }

    .slider-controls { display: flex; gap: .8rem; margin-top: 1.4rem; align-items: center; }
    .slider-btn {
      width: 44px; height: 44px; border-radius: 50%;
      border: 1.5px solid rgba(201,168,76,.35);
      background: transparent; color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: var(--transition); font-size: 1rem;
    }
    .slider-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .slider-dots { display: flex; gap: .45rem; margin-left: auto; }
    .slider-dot {
      width: 28px; height: 3px; border-radius: 2px;
      background: rgba(201,168,76,.25); cursor: pointer;
      transition: var(--transition);
    }
    .slider-dot.active { background: var(--gold); }

    /* ═══════════════════════════════════
       МАРШРУТЫ
    ═══════════════════════════════════ */
    #routes { background: linear-gradient(200deg, #0c1c30 0%, #0d1e32 55%, #0b1b2f 100%); }
    .route-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(201,168,76,.1);
      border-radius: 8px; padding: 1.8rem;
      height: 100%; /* равная высота */
      display: flex; flex-direction: column;
      transition: border-color var(--transition);
    }
    .route-card:hover { border-color: rgba(201,168,76,.3); }
    .route-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: .8rem; }
    .route-card h5 { font-family: 'Jost',sans-serif; font-size: .95rem; font-weight: 500; margin-bottom: .5rem; }
    .route-card p  { font-size: .85rem; color: var(--muted); line-height: 1.65; margin: 0; flex: 1; }
    .route-badge {
      display: inline-block; margin-bottom: .6rem;
      background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.25);
      color: var(--gold); font-size: .68rem; letter-spacing: .12em;
      text-transform: uppercase; padding: .18rem .65rem; border-radius: 50px;
    }

    /* ═══════════════════════════════════
       FAQ
    ═══════════════════════════════════ */
    #faq { background: linear-gradient(150deg, #060e1b 0%, #07111f 50%, #060d1a 100%); }
    .faq-accordion .accordion-item {
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(201,168,76,.12) !important;
      border-radius: 6px !important;
      margin-bottom: .75rem; overflow: hidden;
    }
    .faq-accordion .accordion-button {
      background-color: #0F2034; color: var(--white);
      font-family: 'Jost',sans-serif; font-size: .95rem; font-weight: 400;
      padding: 1.2rem 1.5rem;
      box-shadow: none !important;
    }
    .faq-accordion .accordion-button:not(.collapsed) { color: #fff; background-color: #0F2034; }
    .faq-accordion .accordion-button::after {
      filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
      opacity: .5;
    }
    .faq-accordion .accordion-button:not(.collapsed)::after { opacity: 1; }
    .faq-accordion .accordion-body { padding: 0 1.5rem 1.2rem; color: var(--muted); font-size: .88rem; line-height: 1.75; }

    /* ═══════════════════════════════════
       ОТЗЫВЫ
    ═══════════════════════════════════ */
    #reviews { background: linear-gradient(140deg, #0f2135 0%, #0d1e32 50%, #0c1d31 100%); }
    .review-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(201,168,76,.12);
      border-radius: 10px; padding: 2rem 1.8rem;
      height: 100%; position: relative;
    }
    .review-stars { color: var(--gold); font-size: .9rem; margin-bottom: .9rem; letter-spacing: .1em; }
    .review-text { font-size: .9rem; color: rgba(240,244,248,.8); line-height: 1.75; margin-bottom: 1.2rem; font-style: italic; }
    .review-author { font-size: .82rem; font-weight: 500; letter-spacing: .06em; }
    .review-date   { font-size: .75rem; color: var(--muted); }
    .quote-icon { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 2.5rem; color: rgba(201,168,76,.1); font-family: serif; }

    /* ═══════════════════════════════════
       КОНТАКТЫ
    ═══════════════════════════════════ */
    #contacts { background: linear-gradient(160deg, #060f1c 0%, #07111f 60%, #06101d 100%); }
    .contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
    .contact-icon-wrap {
      width: 44px; height: 44px; flex-shrink: 0;
      border: 1px solid rgba(201,168,76,.3);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1rem; background: rgba(201,168,76,.06);
    }
    .contact-label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
    .contact-value { font-size: .95rem; color: var(--white); }
    .contact-value a { color: var(--white); text-decoration: none; transition: color var(--transition); }
    .contact-value a:hover { color: var(--gold); }

    .social-links a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 40px; height: 40px; border-radius: 50%;
      border: 1px solid rgba(201,168,76,.3);
      color: var(--gold); font-size: 1.1rem;
      text-decoration: none; transition: var(--transition);
      margin-right: .5rem;
    }
    .social-links a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

    .map-frame {
      border-radius: 10px; overflow: hidden;
      border: 1px solid rgba(201,168,76,.15);
      height: 380px;
    }
    .map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(30%) contrast(1.05); }

    /* ═══════════════════════════════════
       FOOTER
    ═══════════════════════════════════ */
    footer {
      background: var(--navy-mid);
      border-top: 1px solid rgba(201,168,76,.15);
      padding: 2.4rem 0;
    }
    .footer-logo { font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; font-weight: 700; }
    .footer-links a { color: rgba(240,244,248,.5); text-decoration: none; font-size: .8rem; letter-spacing: .08em; margin: 0 .7rem; transition: color var(--transition); }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: .75rem; color: rgba(240,244,248,.3); }

    /* ═══════════════════════════════════
       ПОПАП
    ═══════════════════════════════════ */
    .modal-content {
      background: var(--navy-mid) !important;
      border: 1px solid rgba(201,168,76,.25) !important;
      border-radius: 10px;
    }
    .modal-header { border-bottom: 1px solid rgba(201,168,76,.15) !important; }
    .modal-footer { border-top:  1px solid rgba(201,168,76,.15) !important; }
    .modal-title { font-family: 'Cormorant Garamond',serif; font-size: 1.6rem; }
    .form-control, .form-select {
      background: rgba(255,255,255,.05) !important;
      border: 1px solid rgba(201,168,76,.2) !important;
      color: var(--white) !important;
      border-radius: var(--radius);
    }
    .form-control::placeholder { color: rgba(240,244,248,.35) !important; }
    .form-control:focus, .form-select:focus {
      border-color: rgba(201,168,76,.55) !important;
      box-shadow: 0 0 0 3px rgba(201,168,76,.08) !important;
      background: rgba(255,255,255,.07) !important;
    }
    .form-label { font-size: .8rem; letter-spacing: .08em; color: rgba(240,244,248,.7); margin-bottom: .35rem; }
    .btn-close { filter: invert(1) !important; }

    /* ── CF7 внутри модалки ── */
    /* Убираем дублирование: если у поля уже есть tip — скрываем второй */
    .wpcf7-form-control-wrap .wpcf7-not-valid-tip ~ .wpcf7-not-valid-tip {
      display: none !important;
    }
    .wpcf7-not-valid-tip {
      color: #ff6b6b;
      font-size: .78rem;
      margin-top: .3rem;
      display: block;
    }
    .wpcf7-response-output {
      display: none; /* скрываем общий блок — используем попап */
    }
    /* Поле с ошибкой */
    .wpcf7-not-valid.form-control,
    .wpcf7-not-valid.form-select {
      border-color: rgba(255, 107, 107, .6) !important;
    }

    /* ─── Номер телефона в хедере ─── */
    @media (max-width: 575px) {
      .nav-social { display: none; }
    }


  /*OWN*/
  .slider-controls {
  padding-left: 10px;
  padding-bottom: 20px;
  padding-right: 10px;
}

  .form-select option {
  background-color: #19293C;
  color: #fff; 
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* инвертирует цвет — станет белым */
}
