/* ====================================== */
/* БАЗОВЫЕ СТИЛИ — ДЛЯ ПК (Desktop ≥ 1200px) */
/* ====================================== */

/* Шрифты */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: transparent;
    background-image: url("/static/img/navb.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Логотип */
.navbar .logo img {
    height: 90px;
}

/* Меню */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 8px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 12px 28px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    display: block;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #ff6b35, #ffc837);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-link:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.nav-link:hover::before {
    left: 0;
}

.nav-link.active {
    background: linear-gradient(120deg, #ff6b35, #ffc837);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

/* Мобильная адаптация */
@media (max-width: 992px) {
    .nav-menu {
        gap: 8px;
        padding: 6px;
    }

    .nav-link {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        border-radius: 16px;
    }

    .nav-link {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    }
}


.site-footer {
    background-color: #fdf8f0; /* нежно-кремовый */
    color: #000000;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem; /* увеличиваем размер шрифта */
    font-weight: 600;   /* делаем текст жирнее */
     border-top: 2px solid #000; /* черная линия толщиной 2px */
    padding-top: 20px;          /* отступ сверху линии */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-left, .footer-center, .footer-right {
    flex: 1 1 250px;
    margin-bottom: 20px;
}

.footer-left .footer-logo {
    height: 130px;
    margin-bottom: 10px;
}

.footer-left p {
    margin: 0;
    font-size: 1.1rem; /* увеличиваем размер шрифта */
    font-weight: 600;   /* жирнее */
}

.footer-center p, .footer-right p {
    margin: 5px 0;
    font-size: 1.1rem; /* увеличиваем */
    font-weight: 600;   /* жирнее */
}

.footer-center a, .footer-right a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;  /* жирнее ссылки */
    transition: color 0.3s;
}

.footer-center a:hover, .footer-right a:hover {
    color: #ffcc00;
}

.footer-socials a img {
    width: 35px; /* чуть больше иконки соцсетей */
    margin-right: 10px;
    transition: transform 0.3s;
}

.footer-socials a img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 1rem; /* чуть больше */
    font-weight: 600; /* жирнее */
}

/* Адаптив */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .footer-socials a img {
        margin: 0 5px;
    }
}


/* Контейнеры */
.contacts-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

/* ---------- Текстовые блоки: выравнивание по ширине и жирный шрифт ---------- */

/* Фон всей страницы Контакты */
.contacts-page {
    background-color: #ffffff; /* светло-голубой */
    padding-top: 20px;  /* чтобы сверху не прилипло */
    padding-bottom: 40px;
}

/* Блок описания */
.contacts-text-block {
    background: #FFF7E6; /* нежно-кремовый */
    padding: 25px 30px;
    border-radius: 700px;
    max-width: 900px;
    margin: 30px auto; /* центрируем */
    font-family: "Roboto", sans-serif; /* красивый, современный шрифт */
    font-size: 19px;
    line-height: 1.7;
    font-weight: 600; /* жирный */
    text-align: justify; /* <-- РАСТЯГИВАЕТ ПО ШИРИНЕ */
    color: #333;
}

/* Чтобы последняя строка тоже выглядела ровно */
.contacts-text-block p {
    text-align: justify;
    text-justify: inter-word;
}

/* Доп: чтобы последние строки не выглядели слишком растянутыми,
   можно слегка выровнять их в конце (поддерживается не во всех браузерах),
   но обычно достаточно hyphens + text-justify. */

/* --- Адаптивность: на узких экранах уменьшаем размер и плотность --- */
@media (max-width: 480px) {
    .contacts-text-block {
        padding: 20px;
        margin: 24px 16px;
    }
    .contacts-text-block p {
        font-size: 16px;
        line-height: 1.7;
        font-weight: 600; /* можно оставить 600 */
    }
}


/* Hero */
.contacts-hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
    border-radius: 12px;
    min-height: 400px;

}

.contacts-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: brightness(0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.contacts-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contacts-hero-desc {
    font-size: 1.3rem;
}

/* Контакты */
/* Общий большой блок */
.contacts-big-block {
    display: flex;
    justify-content: center; /* выравнивание по центру */
    gap: 40px; /* расстояние между карточками */
    flex-wrap: nowrap; /* карточки не переносятся */
    margin-top: 20px;
}

/* Контейнер карточек */
.contacts-info-cards {
    display: flex;         /* flex контейнер */
    flex-direction: row;   /* по горизонтали */
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;       /* чтобы на маленьких экранах переносились */
}


/* Каждая строка-карточка */
/* Общий фон блока контактов */
.contacts-info {
    padding: 50px 20px;
    border-radius: 700px;
    margin: 30px auto;
    max-width: 1100px;

}

/* Текстовый блок */
.contacts-text-block p {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: #1b1b1b;
    margin-bottom: 40px;
}

/* Карточки контактов */
.contacts-info-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contacts-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Hover эффект */
.contact-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    background-color: #fff7eb;
}

/* Иконка в круге */
.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #ffe7c4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.icon-circle img {
    width: 35px;
    height: 35px;
}

/* Ссылки контактов */
.contacts-card a {
    color: #1b528f;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.contacts-card a:hover {
    color: #ffcc00;
}

/* Анимация появления */
.animated-block {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Центрируем директора */
.team-director-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* Карточка директора больше */
.director-card {
    max-width: 380px;
    transform: scale(1.05);
    border: 2px solid #ffd27f;
}

/* Грид сотрудников */
.contacts-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* Карточки */
.contacts-team-member {
    flex: 1 1 260px;
    max-width: 300px;
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contacts-team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* Фото */
.contacts-team-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    .director-card {
        transform: scale(1);
    }

    .contacts-team-member {
        max-width: 100%;
    }

    .contacts-team-img {
        width: 130px;
        height: 130px;
    }
}


/* Лицензии */
.contacts-license-gallery {
    display: flex;
    justify-content: center; /* центрирует по горизонтали */
    align-items: center;      /* центрирует по вертикали (если нужно) */
    gap: 20px;                /* расстояние между картинками */
    flex-wrap: wrap;          /* чтобы переносились на мобилках */
}

.contacts-license-gallery img.license-img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contacts-license-gallery img.license-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===========================
   МОДАЛЬНОЕ ОКНО - ПРЕМИУМ ДЕЛОВОЙ СТИЛЬ
   =========================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    margin: 5% auto;
    background: #ffffff;
    max-width: 540px;
    border-radius: 12px;
    border-left: 6px solid #ff6b35;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 1px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes slideIn {
    from {
        transform: translateY(-40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Заголовок */
.modal-header {
    padding: 32px 36px 26px;
    background: linear-gradient(to right, #ffffff, #fafafa);
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #ff6b35, #ffc837);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Кнопка закрытия */
.close {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 24px;
    color: #666;
    font-weight: 400;
    line-height: 1;
}

.close:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: rotate(90deg);
}

/* Тело модалки */
.modal-body {
    padding: 36px;
    background: #ffffff;
}

/* Поля формы */
.mb-3 {
    margin-bottom: 26px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-label::after {
    content: ' *';
    color: #ff6b35;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fafafa;
    transition: all 0.25s ease;
    box-sizing: border-box;
    font-weight: 400;
}

.form-control:hover {
    border-color: #d0d0d0;
    background: #ffffff;
}

.form-control:focus {
    border-color: #ff6b35;
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Футер модалки */
.modal-footer {
    padding: 24px 36px 32px;
    background: #f8f8f8;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

/* Кнопки */
.btn-secondary {
    padding: 13px 28px;
    background: #ffffff;
    color: #555;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #999;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-primary {
    padding: 13px 36px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8142 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e65a2b 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Дополнительный акцент - индикатор обязательных полей */
.modal-body::before {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
    font-style: italic;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% 16px;
        max-width: calc(100% - 32px);
    }

    .modal-header {
        padding: 28px 24px 22px;
    }

    .modal-title {
        font-size: 20px;
    }

    .close {
        top: 24px;
        right: 24px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .modal-body {
        padding: 28px 24px;
    }

    .modal-footer {
        padding: 20px 24px 28px;
        flex-direction: column-reverse;
    }

    .btn-secondary,
    .btn-primary {
        width: 100%;
        padding: 14px;
    }
}

/* Анимация при отправке формы */
.btn-primary.loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Филиалы */
.contacts-branch-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contacts-branch-card {
    text-align: center;
    cursor: pointer;
    flex: 1 1 250px;
}

.contacts-branch-card img {
    width: 100%;
    max-width: 450px;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contacts-branch-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Карта */
.contacts-map-container {
    width: 100%;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ====================================== */
/* АДАПТИВ ДЛЯ ПЛАНШЕТОВ И МОБИЛЬНЫХ УСТРОЙСТВ */
/* ====================================== */

/* Планшеты (1024px и меньше) */
@media (max-width: 1024px) {
    .contacts-card, .contacts-team-member, .contacts-branch-card {
        flex: 1 1 45%; /* два блока в ряд */
    }

    .contacts-info {
        padding: 40px 15px;
    }

    .contacts-big-block {
        gap: 30px;
    }

    .contacts-text-block p {
        font-size: 1.2rem;
    }
}

/* Смартфоны (768px и меньше) */
@media (max-width: 768px) {
    .contacts-card, .contacts-team-member, .contacts-branch-card {
        flex: 1 1 100%; /* один блок на строку */
    }

    .contacts-branch-card img {
        height: auto; /* авто-высота, чтобы не обрезать картинку */
        max-height: 250px;
    }

    .contacts-license-gallery {
        gap: 15px;
    }

    .contacts-license-gallery img.license-img {
        width: 120px;
        height: auto;
    }

    .contacts-text-block p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .contacts-big-block {
        flex-direction: column;
        gap: 20px;
    }
}

/* Маленькие смартфоны (480px и меньше) */
@media (max-width: 480px) {
    .contacts-hero-title {
        font-size: 1.4rem;
    }

    .contacts-hero-desc {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .contacts-card {
        padding: 20px 15px;
    }

    .contacts-card-icon {
        width: 40px;
        height: 40px;
    }

    .contacts-team-img {
        width: 100px;
        height: 100px;
    }

    .contacts-license-gallery img.license-img {
        width: 90px;
    }

    .contacts-branch-card img {
        height: auto;
        max-height: 180px;
    }

    .contacts-text-block p {
        font-size: 1rem;
    }
}

/* Универсальные улучшения для всех мобильных */
.contacts-big-block, .contacts-info-cards, .contacts-team-grid, .contacts-branch-grid, .contacts-license-gallery {
    justify-content: center;
    align-items: center;
}

.contacts-card, .contacts-team-member, .contacts-branch-card {
    margin: 0 auto; /* центрирование блоков на узких экранах */
}

.contacts-info {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}
/* Общий блок */
.contacts-section {
    padding: 60px 20px;
    background: #f8f9fc;
    text-align: center;
}

/* Заголовок */
.contacts-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

/* Подзаголовок */
.contacts-subtext {
    font-size: 16px;
    color: #4b5563;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* GRID */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}
.contact-item {
    background: white;
    padding: 25px 20px;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #111;
    transition: 0.25s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.10);
}

/* Иконка */
.contact-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 32px;
    height: 32px;
}

/* Текст */
.contact-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
}

.contact-info p {
    margin: 2px 0 0;
    color: #111827;
    font-size: 15px;
}

/* Hero секция */
.partners-hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
    border-radius: 12px;
    min-height: 400px;
}

.partners-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: brightness(0.5);
}

.partners-container.hero-content {
    position: relative;
    z-index: 1;
}

.partners-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.partners-hero-desc {
    font-size: 1.3rem;
    max-width: 900px;
    margin: auto;
}

/* Секция партнёров */
.partners-list {
    background-color: #fdf8f2;
    padding: 60px 20px;
    border-radius: 700px;
    margin-top: 80px;
    margin-bottom: 60px;
}

.partners-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.partner-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Вступительный текст на странице партнеров */
.partners-intro {
    max-width: 900px;          /* ограничение по ширине */
    margin: 0 auto 25px auto;  /* центрируем блок и отступ снизу */
    text-align: center;        /* текст по центру */
    font-size: 1.2rem;         /* увеличиваем шрифт */
    font-weight: 500;          /* делаем текст чуть жирнее */
    line-height: 1.6;          /* комфортный межстрочный интервал */
    color: #1b1b1b;            /* цвет текста (темно-серый для контраста) */
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Адаптив */
@media (max-width: 768px) {
    .partners-grid {
        flex-direction: column;
        align-items: center;
    }

    .partners-hero-title {
        font-size: 2.2rem;
    }

    .partners-hero-desc {
        font-size: 1.1rem;
    }
}
/* Адаптив для мобильных */
@media (max-width: 1024px) {
    .partners-list {
        padding: 50px 15px;
        border-radius: 500px;
        margin-top: 60px;
        margin-bottom: 50px;
    }

    .partners-section-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .partners-intro {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .partner-card {
        width: 220px;
        padding: 15px;
    }

    .partner-img {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .partners-list {
        padding: 40px 10px;
        border-radius: 400px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .partners-section-title {
        font-size: 2rem;
    }

    .partners-intro {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .partners-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .partner-card {
        width: 90%;
        padding: 15px;
    }

    .partner-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .partners-list {
        padding: 30px 10px;
        border-radius: 300px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .partners-section-title {
        font-size: 1.6rem;
    }

    .partners-intro {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .partner-card {
        width: 95%;
        padding: 12px;
    }

    .partner-img {
        width: 100px;
        height: 100px;
    }
}
   /* ===========================
   🌍 СТРАНЫ - MODERN 2025
   =========================== */

/* ===========================
   ЗАГОЛОВКИ РЕГИОНОВ
   =========================== */
.region-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin: 80px 0 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffc837 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.region-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffc837);
    border-radius: 2px;
}



.carousel-inner {
    padding: 20px 0;
}

.carousel-item {
    transition: transform 0.6s ease;
}

/* ===========================
   🌍 КАРТОЧКА СТРАНЫ
   =========================== */
.country-card {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 60px rgba(255, 107, 53, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Декоративный элемент */
.country-card::before {
    content: '✈️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    z-index: 10;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    transition: all 0.3s ease;
}

.country-card:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* ===========================
   КАРТИНКА СТРАНЫ
   =========================== */
.country-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.country-card:hover img {
    transform: scale(1.1);
}

/* ===========================
   ИНФОРМАЦИЯ О СТРАНЕ
   =========================== */
.country-info {
    padding: 28px;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

/* Градиентная линия сверху */
.country-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffc837);
    border-radius: 2px;
}

/* Название страны */
.country-info h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 12px 0 16px 0;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.country-card:hover .country-info h3 {
    background: linear-gradient(135deg, #ff6b35 0%, #ffc837 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Описание */
.country-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Цена */
.country-info p strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 12px;
    position: relative;
}

.country-info p strong::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffc837);
    border-radius: 2px;
}



/* ===========================
   МОБИЛЬНАЯ АДАПТАЦИЯ
   =========================== */

@media (max-width: 992px) {
    .region-title {
        font-size: 40px;
        margin: 60px 0 40px;
    }

    .carousel {
        padding: 30px 60px 80px;
    }

    .country-card {
        max-width: 450px;
    }

    .country-card img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .region-title {
        font-size: 36px;
        margin: 50px 0 30px;
    }

    .carousel {
        padding: 20px 50px 60px;
    }

    .country-card {
        max-width: 100%;
        margin: 0 10px;
    }

    .country-card img {
        height: 220px;
    }

    .country-info {
        padding: 22px;
    }

    .country-info h3 {
        font-size: 22px;
    }

    .country-info p strong {
        font-size: 24px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .region-title {
        font-size: 28px;
        margin: 40px 0 25px;
    }

    .carousel {
        padding: 20px 40px 50px;
    }

    .country-card img {
        height: 200px;
    }

    .country-info h3 {
        font-size: 20px;
    }

    .country-info p {
        font-size: 14px;
    }

    .country-info p strong {
        font-size: 22px;
    }
}

    /* Hero секция */
    .countries-hero {
        position: relative;
        color: white;
        text-align: center;
        padding: 80px 20px;
        overflow: hidden;
        border-radius: 12px;
        min-height: 400px;
    }

    .countries-hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
        z-index: 0;
        filter: brightness(0.5);
        }

    .countries-hero-text {
        position: absolute;
        bottom: 30px;
        left: 40px;
        color: white;
        text-shadow: 0 0 10px black;
    }

    .countries-hero-text h1 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .countries-hero-text p {
        font-size: 1.3rem;
    }
/* ===========================
   🔥 ГОРЯЩИЕ ТУРЫ - MODERN 2025
   =========================== */

.hot-container {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.hot-section-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #ffc837 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Карусель */
#hotToursCarousel {
    position: relative;
    padding: 20px 0;
}

.carousel-inner {
    padding: 20px 0;
}

/* 🔥 Карточка тура */
.hot-card {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}



/* Огонь иконка (анимированная) */
.hot-card::before {
    content: '🔥';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    z-index: 10;
    animation: fireFlicker 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(0.95) rotate(5deg); }
    75% { transform: scale(1.05) rotate(-3deg); }
}

/* 🔥 Картинка */
.hot-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hot-card:hover .hot-img {
    transform: scale(1.1);
}

/* 🔥 Контент */
.hot-info {
    padding: 24px;
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

/* Градиентная линия */
.hot-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffc837);
    border-radius: 2px;
}

/* Название */
.hot-title {
    font-size: 22px;
    font-weight: 800;
    margin: 12px 0 16px 0;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

/* Детали */
.hot-details {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
    background: rgba(255, 107, 53, 0.05);
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.hot-details strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Цена */
.hot-price {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 16px 0;
    position: relative;
    display: inline-block;
}

.hot-price::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ffc837);
    border-radius: 2px;
}

/* Кнопка */
.hot-card .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ffc837 100%);
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    box-shadow:
        0 6px 20px rgba(255, 107, 53, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hot-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hot-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(255, 107, 53, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.hot-card .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hot-card .btn-primary:active {
    transform: translateY(-1px);
}

/* ===========================
   МОБИЛЬНАЯ АДАПТАЦИЯ
   =========================== */

@media (max-width: 768px) {
    .hot-section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .hot-card {
        max-width: 100%;
        margin: 0 10px;
    }

    .hot-img {
        height: 200px;
    }

    .hot-title {
        font-size: 20px;
    }

    .hot-price {
        font-size: 28px;
    }

}
/* Главная страница */
/* Популярные туры */
.popular-tours .tour-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.popular-tours .tour-card:hover {
    transform: translateY(-5px);
}
.popular-tours .tour-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Фишки */
.fun-facts .counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e63946;
}
.reviews .review-card {
    background: #fff;
    transition: transform 0.3s;
}
.reviews .review-card:hover {
    transform: translateY(-5px);
}
/* Фотогалерея */
.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}
.photo-gallery img:hover {
    transform: scale(1.05);
}

/* Советы по путешествиям */
.tip-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


.travel-tips .tip-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;

}
.travel-tips .tip-card:hover {
    transform: translateY(-5px);
}

/* Кнопка связаться с нами */
.contact-us .btn {
    padding: 12px 30px;
    font-size: 18px;
}
/* ========================== */
/* Адаптив для главной (моб) */
/* ========================== */
@media (max-width: 480px) {
    /* Hero */
    .contacts-hero, .countries-hero, .partners-hero {
        padding: 40px 15px;
        min-height: 250px;
    }

    .contacts-hero-title, .countries-hero-text h1, .partners-hero-title {
        font-size: 1.8rem;
    }

    .contacts-hero-desc, .countries-hero-text p, .partners-hero-desc {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Горящие туры */
    .hot-container {
        padding: 20px 10px;
    }

    .hot-card {
        width: 90%;
        margin: 0 auto 20px auto;
    }

    .hot-img {
        height: 150px;
    }

    .hot-title {
        font-size: 18px;
    }

    .hot-details {
        font-size: 13px;
    }

    .hot-price {
        font-size: 20px;
    }

    /* Универсальная заявка */
    .universal-request-section, .request-card {
        padding: 15px 10px;
        width: 95%;
        margin: 0 auto 20px auto;
    }

    .request-title {
        font-size: 20px;
    }

    .request-desc {
        font-size: 14px;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    /* Популярные туры */
    .popular-tours .tour-card {
        width: 90%;
        margin: 0 auto 15px auto;
    }

    .popular-tours .tour-img {
        height: 150px;
    }

    /* Фото галерея */
    .photo-gallery img {
        height: 150px;
    }

    /* Карточки отзывов */
    .reviews .review-card {
        width: 95%;
        margin: 0 auto 15px auto;
    }

    /* Карточки советов */
    .travel-tips .tip-card {
        width: 95%;
        margin: 0 auto 15px auto;
    }
}
/* =========================== */
/* Почему нам доверяют */
/* =========================== */
.trust-section {
    background-color: #fdf8f2;
    padding: 60px 20px;
}

.trust-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.trust-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.trust-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 15px 0;
}

.trust-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #ffe7c4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.icon-circle img {
    width: 35px;
    height: 35px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .trust-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .trust-card {
        width: 90%;
    }
}
.tour-search-section .form-select,
.tour-search-section .form-control {
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.tour-search-section .form-select:focus,
.tour-search-section .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.25);
}

.tour-search-section .btn-primary {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.tour-search-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* загрузка страницы */
/* Preloader overlay */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader: три точки */
.loader span {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 5px;
    background: #007bff; /* Синий цвет */
    border-radius: 50%;
    animation: bounce 1s infinite ease-in-out;
}

.loader span:nth-child(2) {
    animation-delay: 0.2s;
}
.loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
/* скидки!! */
.hot-deal {
    position: relative;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: white;
    border-radius: 15px;
    padding: 60px 20px;
}

.hot-deal .countdown div {
    background: rgba(0,0,0,0.3);
    padding: 15px 25px;
    border-radius: 10px;
    min-width: 70px;
}

.hot-deal button {
    transition: transform 0.2s ease;
}

.hot-deal button:hover {
    transform: scale(1.05);
}
/* банер плавающий */
.floating-badge {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: float 2s ease-in-out infinite alternate;
    text-align: center;
    min-width: 140px;
}

.left-badge {
    left: 10px;
}

.right-badge {
    right: 10px;
}

@keyframes float {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-55%) translateX(0); }
    100% { transform: translateY(-50%) translateX(0); }
}

.floating-badge p {
    margin: 0;
    font-size: 0.85rem;
}
/* куки баннер */
/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 340px;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);

    padding: 22px 24px;
    border-radius: 18px;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255,255,255,0.45);

    font-family: 'Poppins', sans-serif;
    color: #222;
    z-index: 999999;

    animation: fadeUp 0.55s ease forwards;
}

/* Fade effect */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

#cookie-banner h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    font-size: 15px;
}

.cookie-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

/* Buttons */
.cookie-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: 0.25s ease;
}

/* Accept all */
.cookie-btn.accept {
    background: #4a8df6;
    color: #fff;
    font-weight: 600;
}

.cookie-btn.accept:hover {
    background: #2f78f5;
}

/* Save selected */
.cookie-btn.select {
    background: #f2f2f2;
    border: 1px solid #ccc;
}

.cookie-btn.select:hover {
    background: #e7e7e7;
}

/* политика конфиденциальности */
/* privacy.css — стили для страницы Политики конфиденциальности */

:root{
    --bg:#fbfcfe;
    --card:#ffffff;
    --accent:#0a8ddf;
    --muted:#6b7280;
    --text:#111827;
    --radius:14px;
}

.privacy-hero{
    background: linear-gradient(180deg, rgba(10,141,223,0.12), rgba(10,141,223,0.02));
    padding: 48px 0;
    border-bottom: 1px solid rgba(15,23,42,0.04);
}

.privacy-hero-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 18px;
}

.privacy-title{
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-size: 2.2rem;
    color: var(--text);
    margin: 6px 0 8px;
    line-height:1.1;
    font-weight:600;
    text-align:center;
}

.privacy-lead{
    max-width:900px;
    margin: 0 auto;
    text-align:center;
    color:var(--muted);
    font-size:1rem;
}

/* Основной контейнер */
.privacy-container{
    max-width:1200px;
    margin: 36px auto;
    padding: 0 18px 80px;
}

/* Карточка с текстом */
.privacy-card{
    background: var(--card);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
    color:var(--text);
    line-height:1.7;
}

/* Заголовки */
.privacy-card h2{
    margin-top:24px;
    font-size:1.15rem;
    color:var(--accent);
    font-weight:700;
}

.privacy-card h3{
    margin-top:16px;
    font-size:1rem;
    color: #0f1724;
    font-weight:600;
}

/* Списки */
.privacy-card ul{
    margin: 8px 0 12px 20px;
    color:var(--text);
}

.privacy-card li{
    margin-bottom:8px;
}

/* Контакты и вспомогательные */
.contact{
    margin-top:8px;
    font-weight:600;
    color:var(--text);
}

.muted{
    color:var(--muted);
    font-size:0.95rem;
}

.small{
    font-size:0.85rem;
    color:var(--muted);
}

/* Ссылки */
.privacy-card a{
    color:var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed rgba(10,141,223,0.18);
}

.privacy-card a:hover{
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 900px){
    .privacy-card{
        padding: 22px;
    }
    .privacy-title{
        font-size:1.6rem;
    }
    .privacy-lead{ font-size:0.98rem; padding:0 10px; }
}

/* Печать */
@media print{
    body{ background: #fff; color:#000; }
    .privacy-hero, .privacy-card{ box-shadow:none; border-radius:0; }
    .privacy-hero, .privacy-container{ padding:0; margin:0; }
    .privacy-card{ padding: 12px; font-size: 12pt; line-height:1.4; }
}

