/* только белая тема */
:root {
    color-scheme: light;          /* отключает автоперекраску UI под тёмную тему */
    --page-bg: #ffffff;           /* фон страницы */
    --page-fg: #111111;           /* основной текст */
    --link: #0a57ff;              /* стандартная ссылка */
    --link-hover: #003bcc;        /* ховер ссылки */
    --muted: #666666;             /* вторичный текст */
    --focus: 2px solid #ffd400;   /* видимый фокус */
    font-synthesis-weight: none;  /* мелкая оптимизация рендера шрифта */
    /* палитра футера */
    --footer-bg: #2c2c2c;     /* тёмный стабильный фон */
    --footer-fg: #ffffff;     /* основной текст в футере */
    --footer-muted: #cccccc;  /* приглушённый текст */
    --footer-link: #ffffff;   /* ссылки в футере */
    --footer-link-hover: #ffd400;
    /* чипы переключения языка — светлые, хорошо видимые на тёмном фоне футера */
    --chip-bg: #ffffff;
    --chip-fg: #333333;
    --chip-border: #999999;
    --chip-active-bg: #ffd400;
    --chip-active-fg: #000000;
}
html, body {
    background: var(--page-bg);
    color: var(--page-fg);
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans",
    "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
    line-height: 1.5;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
/* подвад сайта */
a { color: var(--link); text-decoration: none; }
a:hover, a:focus-visible { color: var(--link-hover); }
:focus-visible { outline: var(--focus); outline-offset: 2px; }

/* Если у пользователя отключены анимации — не мигаем */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* подвал сайта */
footer {
    background: var(--footer-bg);
    color: var(--footer-fg);
    padding: 30px 20px;
    font: inherit; /* не тянем отдельные шрифты = быстрее */
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--footer-fg);
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.footer-container h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ссылки маршрутов */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 40px;
}
.footer-links li { margin: 5px 0; }
.footer-links a {
    color: var(--footer-link);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    transition: color .12s ease;
    outline: none;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--footer-link-hover); }
.footer-links a:focus-visible {
    outline: var(--focus);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Переключатель языка (чипы) */
.footer-lang-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}
.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--chip-border);
    background: var(--chip-bg);
    color: var(--chip-fg) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    min-width: 110px;
    text-align: center;
    cursor: pointer;
    transition: background .12s ease, box-shadow .12s ease;
    outline: none;
}
.lang-btn:hover {
    color: var(--chip-fg) !important;
    background: var(--chip-bg);
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.lang-btn:focus-visible {
    outline: var(--focus);
    outline-offset: 2px;
}
.lang-btn.active {
    background: var(--chip-active-bg);
    color: var(--chip-active-fg) !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,.2);
}
/* Низ футера */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: var(--footer-muted);
}

/* Мобайл */
@media (max-width: 600px) {
    .footer-links { flex-direction: column; gap: 8px; }
    .footer-title { font-size: 16px; margin-bottom: 12px; }
    .footer-links a { font-size: 15px; }
    .lang-btn { min-width: 44%; } /* два чипа в ряд */
}


/* Мобильная адаптация */
@media (max-width: 600px){
    .footer-links{ flex-direction: column; gap: 8px; }
    .footer-title{ font-size: 16px; margin-bottom: 12px; }
    .footer-links a{ font-size: 15px; }
    .lang-btn{ min-width: 44%; } /* два чипа в ряд */
}

/* Опционально: если у пользователя отключены анимации — убираем переходы полностью */
@media (prefers-reduced-motion: reduce){
    .footer-links a,
    .lang-btn{ transition: none !important; }
}

/*Хлебные крошки*/
.breadcrumbs{
    background: #ffed002b;
    border-bottom: 1px solid #cecece;
}
.breadcrumbs-bar {
    padding: 3px 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}
.breadcrumbs-bar a {
    color: #25577E;
    text-decoration: none;
}
.breadcrumbs-bar a:hover {
    text-decoration: underline;
}
.breadcrumbs-bar span {
    color: #000;
}
/* Шапка */
.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: bold;
    font-size: 16px;
}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 5px solid #005495;
    background: #f9d73d;
    padding: 2px 5px;
    position: relative;
    z-index: 1000;
    -webkit-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
    -moz-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
    box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
}
.logo-img {
    height: 40px;
}
/* ПК-меню */
.nav-menu {
    display: flex;
    gap: 15px;
}
.nav-menu a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: 0.2s;
}
.nav-menu a:hover {
    text-decoration: underline;
}
/* Бургер */
.burger {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #5e5d5d;
    display: none;
    font-size: 26px;
    color: #222;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
}
.menu-text {
    font-size: 16px;
    margin-left: 5px;
    font-weight: 600;
}
/* ==== ЗАТЕМНЕНИЕ ==== */
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
}
/* ==== умпешная отправка ==== */
body.no-scroll {
    overflow: hidden;
}

/* Полноэкранный оверлей */
.success-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 9999;
    background: rgba(0,0,0,0.6);
    /* Центрирование через flex (современные) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    /* Чуть-чуть сгладить фон */
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

/* Карточка */
.success-card {
    position: relative;
    width: 100%;
    max-width: 520px;          /* комфортно и на мобилках, и на десктопе */
    padding: clamp(16px, 5vw, 28px);
    border-radius: 16px;
    background: #fff;
    text-align: center;
    box-shadow:
            0 8px 24px rgba(0,0,0,0.25),
            0 4px 12px rgba(0,0,0,0.15);
    animation: cs-fade-in 220ms ease-out;
}

/* Иконка-галочка (CSS-only) */
.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto clamp(12px, 3vw, 16px);
    border-radius: 50%;
    background: #e8f5e9;
    position: relative;
}
.success-icon::before {
    content: "";
    position: absolute;
    left: 21px; top: 18px;
    width: 20px; height: 36px;
    border-right: 6px solid #2e7d32; /* зелёный */
    border-bottom: 6px solid #2e7d32;
    transform: rotate(45deg);
}

/* Тексты — твои классы */
.PText {
    margin: 0 0 8px 0;
    font-weight: 700;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.25;
    color: #111;
}
.PText2 {
    margin: 0 0 16px 0;
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.4;
    color: #333;
    opacity: 0.9;
}

/* Кнопка закрыть */
.success-close {
    display: inline-block;
    padding: 12px 18px;
    font-size: 16px;
    line-height: 1;
    border: none;
    border-radius: 999px;
    background: #111;
    color: #fff;
    cursor: pointer;
    transition: transform 120ms ease, opacity 120ms ease;
}
.success-close:active { transform: scale(0.98); }

/* Негромкая анимация появления */
@keyframes cs-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Фолбэк на случай очень старых браузеров без flex */
@supports not (display: flex) {
    .success-overlay {
        display: block;
    }
    .success-card {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Большинство пользователей — мобильные: мелкие подстройки */
@media (max-width: 420px) {
    .success-card { border-radius: 12px; }
    .success-icon { width: 56px; height: 56px; }
    .success-icon::before {
        left: 18px; top: 16px; width: 18px; height: 32px; border-width: 5px;
    }
}

/* Уважение к настройке "уменьшение анимации" */
@media (prefers-reduced-motion: reduce) {
    .success-card { animation: none; }
    .success-close { transition: none; }
}

/* ==== МОБИЛЬНОЕ МЕНЮ ==== */
/* 📱 Блок телефонов */
.phone-line {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 20px 16px 10px;
    font-family: 'Segoe UI Mono', 'Courier New', monospace;
    font-size: 16px;
    color: #222;
}
.phone-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.phone-item a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 16px;
}
.flag {
    display: inline-block;
    width: 24px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.flag-ua {
    background: linear-gradient(to bottom, #0057b7 50%, #ffd700 50%);
}

.flag-pl {
    background: linear-gradient(to bottom, white 50%, red 50%);
}
.mobile-menu {
    height: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: top 0.35s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}
.menu-content {
    padding-top: 90px;
    flex: 1;
    overflow-y: auto;
}
.mobile-menu a:hover::after,
.mobile-menu a:active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #000;
}
.mobile-menu a {
    display: block;
    text-decoration: none;
    padding: 12px 2px 12px 8px;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    position: relative;
    letter-spacing: 0.5px;
    color: #3a3b3c;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
}
.mobile-menu .menu-contacts {
    margin-top: 20px;
    text-align: center;
}
.mobile-menu.active {
    top: 0;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .burger {
        display: flex;
        align-items: center;
    }
}
body.no-scroll {
    overflow: hidden;
    height: 100%;
}
@media (max-width: 480px) {
    .mobile-menu a {
        font-size: 17px;
    }
}
.messenger-block {
    margin-top: 20px;
}
.messenger-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 7px;
    margin: 20px auto;
    max-width: 376px;
    padding: 0 10px;
}
.messenger-btn {
    flex: 1 1 0;
    height: 90px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 12px;
    text-align: left;
    text-decoration: none;
    color: #222;
    font-size: 11px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    user-select: none;
}
.messenger-btn img {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
}
.messenger-btn strong {
    font-size: 13px;
    display: block;
    line-height: 1;
    padding-bottom: 7px;
}
.messenger-btn span {
    font-size: 10px;
    line-height: 1.2;
    display: block;
}
.messenger-btn:active {
    transform: scale(0.95);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
}
.messenger-btn.whatsapp {
    background: #eaffea;
    border-color: #c8e6c9;
}
.messenger-btn.viber {
    background: #f6eaff;
    border-color: #d6c8e6;
}
.messenger-btn.telegram {
    background: #eaf6ff;
    border-color: #c8dfee;
}
 /*leave */
@media (min-width: 500px) {
    .modal-border {
        top: 55px;
        bottom: auto;
        box-shadow: 0 2px 5px rgb(0 0 0 / 74%);
    }
}
.logo img {
    height: 40px;
}
.side-menu a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: bold;
    font-family: 'Cuprum', sans-serif;
    letter-spacing: 0.5px;
    transition: padding-left 0.2s ease, color 0.2s ease;
}
.side-menu a:hover {
    text-decoration: underline;
}
.side-menu a:hover,
.side-menu a:focus,
.side-menu a:active {
    padding-left: 10px;
    color: #0047ab;
}
.phone-hint {
    color: red;
    font-size: 16px;
    display: none;
}
.form-container {
    background: white;
    width: 90%;
    text-align: center;
    margin: 10px auto;
}
.phone-link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    letter-spacing: 0.5px;
}
.btn-bl {
    width: 100%;
    height: 48px;
    padding: 12px;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 8px;
    background: -webkit-linear-gradient(top, #578ebf, #3f78ab);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    user-select: none;
    touch-action: manipulation;
    position: relative;
    overflow: hidden;
}
.btn-bl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    pointer-events: none;
}
.btn-bl:hover {
    filter: brightness(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-bl:active {
    top: 2px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.4);
    filter: brightness(0.98);
}

.modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 550px;
    margin: 0 auto;
    background: white;
    z-index: 9999;
    flex-direction: column;
    overflow-y: auto;
    display: none;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding-top: env(safe-area-inset-top, 0);
}
.modal-fullscreen.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.modal-header {
    padding: 5px;
    background: #0147D0;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}
.modal-li{
    border-bottom: 1px solid #dbdbdb;
}
.modal-close-btn {
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    /* TODO: удалить после проверки — это правило будет расширено ниже (min touch size) */
}
.contact_mail {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden; }

.search-container {
    position: relative;
    margin: 10px;
}
.modal-h4 {
    padding: 3%;
    font-size: 18px;
    font-weight: 700;
}
.modal-country-list, .modal-contact-list {
    list-style: none;
    padding: 0;
    padding-bottom: 15px;
    margin: 0;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 120px);
}

.modal-country-name, .modal-contact-name {
    font-weight: bold;
    margin-left: 15px;
}

.modal-flag {
    width: 24px;
    height: 16px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-right: 5px; /* TODO: удалить после проверки — ниже будет 8px */
    display: inline-block;
    vertical-align: middle;
}

.modal-country-item:active , .modal-contact-item:active{
    background: #e5e5e5;
}
.modal-country-item, .modal-contact-item {
    padding: 14px;              /* TODO: удалить после проверки — ниже будет min-height и padding обновлён */
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.modal-country-item:hover, .modal-contact-item:hover{
    background-color: #f0f0f0;
}

.phone-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    position: relative;
}
.flag-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 5px;          /* TODO: удалить после проверки — ниже будет расширено (min-height, padding) */
}

.icon-call-me{
    width: 30px;
    height: 30px;
    margin-right: 5px;          /* TODO: удалить после проверки — ниже будет 8px */
}
.flag-ua {
    background: linear-gradient(to bottom, #0057b7 50%, #ffd700 50%);
}
.flag-pl {
    background: linear-gradient(to bottom, white 50%, red 50%);
}
.flag-cz {
    position: relative;
    background: linear-gradient(to bottom, white 50%, red 50%);
    overflow: hidden;
}
.flag-cz::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 16px solid #11457e;
}
.flag-lt {
    background: linear-gradient(to bottom, #fdb913 33.33%, #006a44 33.33% 66.66%, #c1272d 66.66%);
}
.flag-ro {
    background: linear-gradient(to right, #002b7f 33.33%, #fcd116 33.33% 66.66%, #ce1126 66.66%);
}
.flag-lv {
    background: linear-gradient(to bottom, #9e3039 40%, white 40% 60%, #9e3039 60%);
}
.flag-hu {
    background: linear-gradient(to bottom, #cd2a3e 33.33%, white 33.33% 66.66%, #436f4d 66.66%);
}
.flag-sk {
    background: linear-gradient(to bottom, white 33.33%, #0b4ea2 33.33% 66.66%, #ee1c25 66.66%);
}
.flag-de {
    background: linear-gradient(to bottom, black 33.33%, red 33.33% 66.66%, gold 66.66%);
}
.icon-viber { background-image: url('../images/icon/viber2.png'); }
.icon-call { background-image: url('../images/icon/call.png'); }
.icon-whatsapp { background-image: url('../images/icon/whatsapp.png'); }
.icon-telegram { background-image: url('../images/icon/telegram.png'); }
.phone-input {
    border: none;
    outline: none;
    font-size: 16px;            /* TODO: удалить после проверки — ниже будет 18px */
    width: 100%;
    padding: 5px;
    text-align: left;
    background: white
}
.phone-input-error{
    border: 1px solid red;      /* TODO: удалить после проверки — ниже добавлен #pol.phone-input-error */
}
.contact-block{
    background: white;
    text-align: center;
    margin: 18vh auto 0 auto;
    padding: 17px 25px 20px 25px;
}
.label{
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    color: #005495;
    margin-bottom: 10px;
}
@media (min-width: 992px){ .label{ font-size: 18px; } }

@media (min-width: 768px) {
    .contact-block { width: 32%; }
}
@media (min-width: 310px) and (max-width: 768px) {
    .label { padding: 17px 1px 1px 1px; }
    .contact-block { padding: 15% 2% 90% 2%; }
}

/* 1) Блокировка скролла фона при открытых модалках */
body.body--lock {
    overflow: hidden;
    touch-action: none;
}
/* 2) Крупнее и читабельнее инпут телефона (iOS не будет делать зум) */
.phone-input {
    font-size: 18px;
    line-height: 1.4;
}
/* 3) Точная рамка ошибки на контейнер поля */
#pol.phone-input-error {
    border: 1px solid red;
}
/* 4) Кнопка-флаг — увеличиваем тач-зону и убираем лишние стили по умолчанию */
.flag-container {
    min-height: 44px;         /* рекомендация Apple HIG — не меньше 44px */
    padding: 6px 6px 6px 0;
    background: none;
    border: none;
    margin-right: 8px;        /* больше воздуха до инпута */
}
/* 5) Ссылка-кнопка (триггер модалки контактов) — убрать оформление ссылки */
.modal-link-button {
    background: none;
    border: none;
    padding: 0;
}
/* 6) Состояние disabled для основной кнопки (пока номер короткий) */
.btn-bl[disabled] {
    opacity: 0.6;
    filter: grayscale(0.2);
    cursor: not-allowed;
}
/* 7) Липкий нижний блок под кнопку действия (если используешь на странице/в модалке) */
.sticky-action {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0)) 0; /* учёт выреза iPhone */
    box-shadow: 0 -4px 10px rgba(0,0,0,0.06);
}
.sticky-action .btn-bl {
    height: 52px;
    font-size: 18px;
}
/* 8) Увеличиваем кликабельные области в списках модалок */
.modal-country-item,
.modal-contact-item {
    min-height: 48px;       /* >=44px под палец */
    padding: 12px 14px;     /* вертикальные отступы комфортнее */
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}
/* 9) Базовый флаг для списка стран (ВНУТРИ модалки стран) */
.flag {
    width: 24px;
    height: 16px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    flex: 0 0 24px;
}
/* 10) Код страны рядом с названием — чуть бледнее и с отступом */
.modal-country-code {
    margin-left: 6px;
    color: #555;
}
/* 11) Кнопка закрытия модалки — гарантируем минимальную зону касания */
.modal-close-btn {
    min-width: 44px;
    min-height: 44px;
    line-height: 1;
}
/* 12) Флаг возле инпута телефона — больше отступ справа */
.modal-flag {
    margin-right: 8px;
}
/* 13) Иконки контактов — немного больше отступ справа */
.icon-call-me {
    margin-right: 8px;
}
/* 14) Для пользователей с reduce motion — отключаем анимации модалок */
@media (prefers-reduced-motion: reduce) {
    .modal-fullscreen {
        transition: none;
    }
}
/*Контакт*/
.contacts-header {
    text-align: center;
    padding: 20px 15px;
}
.contacts-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}
.contacts-header p {
    font-size: 15px;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
}
/* ====== Мессенджеры ====== */
.messenger-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 20px auto;
    max-width: 500px;
}
.messenger {
    flex: 1 1 150px;
    min-width: 150px;
    border-radius: 10px;
    text-decoration: none;
    color: #222;
    text-align: center;
    padding: 12px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    border: 1px solid #eee;
}
.messenger.whatsapp { background: #f4fff4; }
.messenger.telegram { background: #f4faff; }
.messenger.viber { background: #faf4ff; }
.messenger.whatsapp:hover { background: #e0f8e0; }
.messenger.telegram:hover { background: #d8f0ff; }
.messenger.viber:hover { background: #f0e0ff; }
.messenger img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}
.messenger strong {
    font-size: 16px;
    display: block;
    margin-bottom: 3px;
}
.messenger:active { transform: scale(0.97); }
/* ====== Карточки телефонов, почты, Facebook ====== */
.container-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px auto;
    max-width: 900px;
}
.block {
    width: 300px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.block:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.block img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
}
.contact-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #110404;
}
/* ====== Номера телефонов ====== */
.phone-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 10px;
    margin-bottom: 12px;
    transition: background 0.2s ease;
}
.phone-item:hover {
    background: #eef3ff;
}
.flag {
    width: 24px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.flag-ua {
    background: linear-gradient(to bottom, #0057b7 50%, #ffd700 50%);
}
.flag-pl {
    background: linear-gradient(to bottom, white 50%, red 50%);
}
.phone-item a {
    font-family: "SF Pro Text", "Roboto", Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #25577E;
    text-decoration: none;
    transition: color 0.2s ease;
}
.phone-item a:hover {
    color: #25577E;
    text-decoration: underline;
}
.contact-link {
    display: inline-block;
    color: #25577E;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}
.contact-link:hover {
    color: #25577E;
    text-decoration: underline;
}
/* ====== Адаптив ====== */
@media (max-width: 480px) {
    .messenger-buttons {
        flex-direction: column;
        align-items: center;
    }
    .messenger {
        width: 100%;
        max-width: 300px;
    }
}
/* Экран успеха + анимации */
.rb-success{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:28px 18px;text-align:center}
.rb-success__icon{width:72px;height:72px;margin-bottom:12px}
.rb-success__h{font-size:18px;font-weight:700;margin:6px 0 4px}
.rb-success__p{font-size:14px;margin:0;color:#333}
.rb-fade-in{animation:rbFade .45s ease-out both}
@keyframes rbFade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
.rb-check{stroke:#22a447;stroke-width:4;fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:120;stroke-dashoffset:120;animation:rbDraw .6s ease-out .1s forwards}
@keyframes rbDraw{to{stroke-dashoffset:0}}
/* --- Success card (mobile-first) --- */
.rb-success {
    text-align:center;
    padding:30px 16px;
    animation: rb-fade .35s ease-out both;
}
@keyframes rb-fade { from{ opacity:0; transform:translateY(6px);} to{ opacity:1; transform:none;} }
.rb-success__icon { width:72px; height:72px; margin:0 auto 14px; display:block; }
.rb-success__check{
    fill:none; stroke:#2fc66b; stroke-width:6; stroke-linecap:round; stroke-linejoin:round;
    stroke-dasharray:120; stroke-dashoffset:120; animation: rb-draw .6s .15s ease-out forwards;
}
@keyframes rb-draw { to{ stroke-dashoffset:0 } }
.rb-success__title { font-size:18px; font-weight:700; margin:8px 0 4px; }
.rb-success__text  { font-size:15px; color:#333; margin:0; }
.rb-success__hint  { font-size:13px; color:#777; margin-top:8px; }