/* v16 — Numbered Trail + Company Info: step fade-slide, dot pop, responsive */

/*
 * Bootstrap .d-flex / .d-inline-flex с !important перебивают нативный [hidden].
 * Без этого шаг «success» и прочие скрытые шаги остаются видны при bs-разметке.
 */
.wizard-compact-track .wizard-compact-track__pane[hidden],
.wizard-compact-track .wizard-compact-track__toolbar[hidden],
.wizard-compact-track button.wizard-compact-track__retreat[hidden],
.wizard-compact-track button.wizard-compact-track__commit[hidden],
.wizard-compact-track p.wizard-compact-track__alert[hidden],
.wizard-compact-track .wizard-compact-track__tick[hidden] {
    display: none !important;
}

/* Только активный шаг: иначе fill-mode "both" оставляет opacity:1 у всех .wizard-compact-track__pane и «скрытые» шаги остаются видимыми */
.wizard-compact-track__pane:not([hidden]) {
    animation: wizard-compact-track-pane-reveal-kf 0.35s ease both;
}

@keyframes wizard-compact-track-pane-reveal-kf {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Dot activation pop */
.wizard-compact-track__bead.bg-primary-500 {
    animation: wizard-compact-track-bead-pop-kf 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes wizard-compact-track-bead-pop-kf {
    from { transform: scale(0.7); }
    to   { transform: scale(1); }
}

/* Company panel hover items — prevent text overflow */
.wizard-compact-track .flex-1 {
    min-width: 0;
}

/* Responsive: ensure columns don't overflow on small screens */
@media (max-width: 1023px) {
    .wizard-compact-track__aside {
        width: 100%;
    }
}

.contact-us-flex__min {
    min-width: 0;
}

.contact-us-media__cover {
    object-fit: cover;
}

/* contact-editorial — dt label width responsive (TW md:w-40 has no BS flex util) */
@media (min-width: 768px) {
    .contact-editorial__dt {
        width: 10rem;
        flex-shrink: 0;
    }
}

/* contact-editorial — decorative background symbol (inherited text color + opacity) */
.contact-editorial__decor::before {
    content: '@';
    font-size: 40vw;
    font-weight: 900;
    opacity: 0.04;
    position: absolute;
    top: -10%;
    right: -5%;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.google-map-only__iframe {
    width: 100%;
    min-height: 440px;
}

@media (min-width: 768px) {
    .google-map-only__iframe {
        min-height: 600px;
    }
}

/* iframe-normalized */
.google-map-only__iframe {
    width: 100%;
    max-width: 100%;
    height: 440px;
    min-height: 440px;
    display: block;
    border: 0;
    box-sizing: border-box;
    vertical-align: bottom;
}

@media (min-width: 768px) {
    .google-map-only__iframe {
        height: 600px;
        min-height: 600px;
    }
}


