:root {
    --bg-color: #031740;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-color: var(--bg-color);
}

body, .navbar {
    font-family: 'Inter', sans-serif !important;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Основний фон хедера з градієнтом як на скрині */
.main-header-bg {
    background: #050a12;
    background: linear-gradient(90deg, #0a1d3a 0%, #050a12 30%);
    padding: 15px 0;
}

.transparent-navbar {
    background-color: transparent !important;
    padding-top: 20px;
    z-index: 1000;
    border: none !important;
    box-shadow: none !important;
}

/* Якщо ви хочете, щоб хедер був чітко поверх картинки */
.position-absolute {
    position: absolute !important;
    top: 0;
    left: 0;
}

/* Колір посилань */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    padding-left: 15px;
    padding-right: 15px;
}

    .navbar-dark .navbar-nav .nav-link:hover {
        color: #4a9eff;
    }

/* Стилізація мовного перемикача */
.lang-switcher {
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 4px 15px;
    color: white;
    font-size: 0.85rem;
    white-space: nowrap;
}

    .lang-switcher a {
        color: white;
        text-decoration: none;
        opacity: 0.6;
    }

        .lang-switcher a.active {
            opacity: 1;
            font-weight: bold;
        }

/* Налаштування для мобільної версії (колапсу) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #050a12;
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .lang-wrapper {
        justify-content: center;
        margin-top: 15px;
    }
}

.btn-lang {
    background: none;
    border: none;
    color: white;
    opacity: 0.6;
    padding: 0;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-lang.active {
        opacity: 1;
        font-weight: bold;
    }

    .btn-lang:hover {
        opacity: 1;
        color: #4a9eff;
    }

@media (max-width: 991.98px) {
    .navbar-collapse .nav-link {
        color: #ffffff !important; /* Робимо текст білим */
        text-align: left; /* Або center, залежно від вашого бажання */
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Легке розділення пунктів */
    }

    /* Прибираємо лінію у останнього пункту */
    .navbar-collapse .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}
/* Контейнер для запобігання розтягуванню */
.lang-custom-wrapper {
    display: flex;
    justify-content: flex-end; /* Вирівнювання вправо на десктопах */
}

.lang-switcher {
    border: 1px solid rgba(255, 255, 255, 0.4); /* Світла тонка рамка */
    border-radius: 20px; /* Овальна форма */
    padding: 2px 12px;
    width: fit-content; /* Важливо: щоб не розтягувалося на весь екран */
    background: rgba(255, 255, 255, 0.05); /* Легкий фон */
}

.btn-lang {
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 2px 5px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

    .btn-lang.active {
        opacity: 1;
        font-weight: 700;
    }

    .btn-lang:hover {
        opacity: 1;
        color: #4a9eff;
    }

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
    font-size: 13px;
    user-select: none;
}

/* Адаптація для мобільного меню (колапсу) */
@media (max-width: 991.98px) {
    .lang-custom-wrapper {
        justify-content: flex-start; /* Вирівнювання вліво у мобільному списку */
        margin-top: 15px;
        padding-left: 10px;
    }
}
/* Робимо текст посилань білим */
.nav-link-custom {
    color: #ffffff !important; /* Примусово білий колір */
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.3s ease, color 0.3s ease;
}

    .nav-link-custom:hover {
        opacity: 1;
        color: #4a9eff !important; /* Блакитний колір при наведенні */
    }

/* Відступ від меню до перемикача мов */
@media (min-width: 992px) {
    .me-lg-4 {
        margin-right: 2.5rem !important; /* Регулюйте цей параметр для потрібного відступу */
    }
}

/* Виправлення видимості в колапсі (мобільне меню) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #050a12; /* Темний фон для випадаючого списку */
        padding: 15px;
        border-radius: 10px;
    }

    .nav-link-custom {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Прибираємо стандартний стиль Bootstrap */
.custom-toggler.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
    box-shadow: none;
}

/* Контейнер для ліній */
.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

    /* Стиль ліній */
    .hamburger-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #ffffff; /* Білий колір як у тексту */
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

        /* Середня лінія трохи коротша для цікавого вигляду */
        .hamburger-icon span:nth-child(2) {
            width: 70%;
            align-self: flex-end; /* Притиснута до правого краю */
        }

/* Анімація при відкритті (клас .collapsed додається Bootstrap автоматично) */
.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.navbar-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 100%; /* Повертаємо повну ширину для хрестика */
}

/* Колір при наведенні */
.custom-toggler:hover .hamburger-icon span {
    background-color: #4a9eff; /* Ваш фірмовий блакитний */
}

@media (max-width: 991.98px) {
    /* Основний контейнер меню */
    .navbar-collapse {
        background: rgba(10, 29, 58, 0.85) !important; /* Напівпрозорий глибокий синій */
        backdrop-filter: blur(15px); /* Ефект матового скла */
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1); /* Тонка світла рамка */
        border-radius: 20px;
        margin-top: 15px;
        padding: 25px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        animation: slideInMenu 0.4s ease-out; /* Плавна поява */
    }

    /* Список елементів */
    .navbar-nav {
        gap: 10px;
    }

    /* Стиль посилань у списку */
    .nav-link-custom {
        font-size: 16px !important;
        font-weight: 500;
        letter-spacing: 0.5px;
        padding: 12px 20px !important;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        /* Ефект при натисканні/наведенні у мобільному меню */
        .nav-link-custom:active,
        .nav-link-custom:focus {
            background: rgba(74, 158, 255, 0.15); /* Блакитний відблиск */
            color: #4a9eff !important;
            padding-left: 25px !important; /* Легке зміщення вправо */
        }

    /* Стиль перемикача мов у колапсі */
    .lang-custom-wrapper {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center !important;
        width: 100%;
    }
}

/* Анімація появи */
@keyframes slideInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-footer {
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, #050a12 25%);
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-info-list li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-info-list strong {
    opacity: 1;
    color: #ffffff;
}

.footer-link {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

    .footer-link:hover {
        opacity: 1;
        color: #4a9eff;
    }

.social-icons img {
    transition: transform 0.3s ease;
}

    .social-icons img:hover {
        transform: scale(1.1);
    }

.footer-copyright {
    font-size: 13px;
    opacity: 0.6;
}

/* Адаптація для мобільних пристроїв */
@media (max-width: 991.98px) {
    .main-footer {
        text-align: center;
    }

    .footer-info-list {
        margin-top: 20px;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }
}

.padding-footer {
    padding: 100px 0 50px 0;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-color); /* Базовий колір фону */
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Замініть шлях на вашу картинку */
    background-size: cover;
    background-position: center;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, var(--bg-color) 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, var(--bg-color) 70%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    padding-top: 60px;
}

/* Стилі заголовка */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Тінь для кращої читабельності */
    margin-bottom: 25px;
}

.hero-subtitle {
    max-width: 750px;
    font-size: 1.15rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Кнопки "Glassmorphism" */
.btn-glass {
    padding: 14px 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-glass:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: #4a9eff;
        transform: translateY(-2px);
        color: #ffffff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

.content-section {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding-top: 100px;
    padding-bottom: 100px;
}

.content-wrapper {
    /* Легка акцентна лінія зліва, як у преміальних брендів */
    border-left: 2px solid rgba(74, 158, 255, 0.3);
    padding-left: 30px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    max-width: 900px;
}

    /* Перший абзац робимо трохи виразнішим */
    .content-text.highlighted {
        font-size: 1.25rem;
        color: #ffffff;
        font-weight: 500;
    }

/* Адаптація для мобільних */
@media (max-width: 768px) {
    .content-wrapper {
        padding-left: 15px;
    }

    .display-3 {
        font-size: 2.5rem;
    }
}

.spacer-section {
    width: 100%;
    background-color: var(--bg-color);
    padding: 0;
    margin: 0;
}

.divider-image {
    position: relative;
    height: 140px; /* Оптимальна висота для такої смуги */
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Внутрішні тіні, щоб фото м'яко входило в колір фону */
    box-shadow: inset 0 15px 25px var(--bg-color), inset 0 -15px 25px var(--bg-color);
}

.divider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.divider-content {
    position: relative;
    z-index: 2; /* Текст має бути над оверлеєм */
    text-align: center;
    padding: 0 20px;
}

.divider-slogan {
    color: #ffffff;
    font-size: clamp(1.2rem, 4vw, 2rem); /* Адаптивний розмір */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Варіант роздільника з кнопкою */
.cta-variant {
    height: 220px; /* Трохи більше висоти для комфортного розташування */
}

.btn-cta {
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap; /* Щоб текст кнопки не переносився */
    background: rgba(74, 158, 255, 0.2); /* Блакитний відтінок для кнопки */
}

/* Адаптивність для мобільних */
@media (max-width: 768px) {
    .cta-variant {
        height: auto;
        padding: 50px 0;
    }

    .divider-content {
        flex-direction: column;
        text-align: center;
    }
}

.anchor-section {
    padding: 100px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title-center {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    /* Тінь для тексту, як у макеті */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

/* Плавний скрол для всієї сторінки */
html {
    scroll-behavior: smooth;
}

/* Контейнер для фото */
.expertise-section .position-relative {
    perspective: 1000px; /* Додає легкий об'єм */
}

.expertise-section {
    overflow: hidden;
}

/* Напівпрозора картка для тексту */
.expertise-card {
    background: rgba(30, 37, 65, 0.4); /* Вариант вашого #1E2541 з прозорістю */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.explore-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s;
}

/* Контейнер для фото з обмеженням висоти */
.expertise-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* Тримає пропорції блоку */
    margin-bottom: 2rem;
}

    /* Спільні стилі для всіх фото у стеку */
    .expertise-img-container img {
        position: absolute;
        border-radius: 20px;
        object-fit: cover;
        box-shadow: 0 15px 35px rgba(0,0,0,0.5);
        transition: transform 0.3s ease;
    }

/* Задня ліва */
.img-stack-1 {
    width: 50%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Центральна (головна) */
.img-stack-2 {
    width: 55%;
    height: 65%;
    top: 15%;
    left: 22%;
    z-index: 3;
}

/* Нижня права */
.img-stack-3 {
    width: 50%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* АДАПТИВНІСТЬ */

/* Планшети (зменшуємо розкид) */
@media (max-width: 991px) {
    .img-stack-2 {
        left: 15%;
        width: 60%;
    }

    .img-stack-1 {
        width: 45%;
    }

    .img-stack-3 {
        width: 45%;
    }
}

/* Телефони (робимо їх простішими) */
@media (max-width: 767px) {
    .expertise-img-container {
        aspect-ratio: auto;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* На мобільних показуємо тільки одну головну або робимо легкий напуск */
    .img-stack-1, .img-stack-3 {
        display: none;
    }

    .img-stack-2 {
        position: relative;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
}

.feature-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Фіксована висота для вирівнювання */
}

.feature-icon-img {
    max-height: 100%;
    width: auto;
    /* Ефект легкого світіння навколо картинки-іконки */
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.4));
    transition: transform 0.3s ease;
}

.feature-glass-card:hover .feature-icon-img {
    transform: scale(1.1); /* Легке збільшення іконки при наведенні на картку */
}

/* Картка з матовим склом (залишаємо без змін) */
.feature-glass-card {
    background: rgba(30, 37, 65, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Картка з ефектом матового скла */
.feature-glass-card {
    background: rgba(30, 37, 65, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    /* М'яка тінь для об'єму */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Контейнер іконки з градієнтом */
.feature-icon-box {
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #8595D8 0%, #4A9EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(74, 158, 255, 0.3));
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Легкий ефект при наведенні (без скролу) */
.feature-glass-card:hover {
    border-color: rgba(133, 149, 216, 0.4);
    background: rgba(30, 37, 65, 0.35);
}

.services-grid-section {
    background: linear-gradient(to bottom, transparent 0%, #050a12 10%, #050a12 90%, transparent 100%);
    padding-bottom: 5rem;
}

.service-glass-card {
    background: rgba(30, 37, 65, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px; /* Дуже закруглені кути як на макеті */
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

    .service-glass-card:hover {
        background: rgba(30, 37, 65, 0.4);
        transform: translateY(-5px);
        border-color: rgba(74, 158, 255, 0.3);
    }

.service-img-container {
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-img-container img {
        max-height: 100%;
        filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.2));
    }

.service-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 25px;
    min-height: 3rem; /* Для вирівнювання заголовків у ряд */
}

.btn-read-more {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .btn-read-more:hover {
        background: #ffffff;
        color: #030816;
        border-color: #ffffff;
    }

/* Карусель на всю ширину */
.carousel-section {
    padding-left: 0;
    padding-right: 0;
}

.carousel-img-wrap {
    height: 600px; /* Можна збільшити для ефекту повноти */
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* Круглі кнопки-індикатори */
.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    border: none !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 8px !important;
    transition: all 0.3s ease;
}

.custom-indicators .active {
    background-color: #4a9eff !important; /* Ваш акцентний синій */
    transform: scale(1.2);
}

.process-section {
    background: linear-gradient(to bottom, transparent 0%, #050a12 10%, #050a12 90%, transparent 100%);
    position: relative;
}

.process-timeline {
    position: relative;
    padding-left: 60px; /* Місце для лінії */
    max-width: 900px;
    margin: 0 auto;
}

    /* Вертикальна лінія */
    .process-timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #4a9eff 0%, rgba(74, 158, 255, 0) 100%);
    }

.process-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
}

/* Кружечок з номером */
.process-number {
    position: absolute;
    left: -60px;
    width: 42px;
    height: 42px;
    background: #030816;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.process-content {
    display: flex;
    align-items: center;
    background: rgba(30, 37, 65, 0.2);
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-image {
    width: 80px;
    flex-shrink: 0;
    margin-right: 25px;
}

    .process-image img {
        width: 100%;
        filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.3));
    }

.process-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-glass-form {
    background: rgba(255, 255, 255, 0.03); /* Майже нульова видимість фону */
    backdrop-filter: blur(15px); /* Ефект розмиття фону сторінки */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Тонка межа */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.contact-input {
    background: rgba(255, 255, 255, 1) !important; /* Білий фон інпутів як на макеті */
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    color: #030816;
}

    .contact-input::placeholder {
        color: #a0a0a0;
    }

.btn-submit {
    background: #a0a8b8; /* Сірий колір кнопки з макета */
    color: #ffffff;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background: #ffffff;
        color: #030816;
    }

/* Валідація: підсвітка червоним при помилці */
.contact-input.is-invalid {
    border: 2px solid #ff4d4d !important;
}

.field-validation-error {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Рамка інпуту при помилці */
.input-validation-error {
    border: 2px solid #ff4d4d !important;
    background-color: #fff5f5 !important;
}

/* Стиль при успішній валідації (опційно) */
.valid.contact-input {
    border: 2px solid #28a745 !important;
}

.text-success-emphasis {
    color: #4ade80 !important; /* Яскраво-зелений неон */
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    /* Ефект легкого світіння тексту */
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

/* Додатково: зміна стану кнопки під час відправки */
.btn-submit:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Основна секція з великим відступом */
.privacy-section {
    padding-top: 150px; /* Великий відступ зверху */
    padding-bottom: 100px;
    min-height: 100vh;
}

/* Покращена скляна картка */
.privacy-glass-card {
    background: rgba(30, 37, 65, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px; /* Як у секції послуг */
    padding: 60px;
}

/* Декоративна лінія під заголовком */
.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a9eff, #8595d8);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Стилізація контенту */
.intro-box {
    background: rgba(74, 158, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #4a9eff;
}

    .intro-box p {
        color: #ffffff !important;
        font-size: 1.1rem;
        margin: 0;
    }

.privacy-item {
    margin-bottom: 40px;
}

    .privacy-item h3 {
        color: #ffffff;
        font-weight: 700;
        font-size: 1.4rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .privacy-item h3 span {
            color: #4a9eff; /* Неоновий синій номер */
            font-size: 1.1rem;
            margin-right: 15px;
            font-family: monospace;
        }

    .privacy-item p {
        color: rgba(255, 255, 255, 0.7) !important;
        line-height: 1.8;
        padding-left: 43px; /* Вирівнювання тексту під заголовок */
    }

/* Адаптивність */
@media (max-width: 768px) {
    .privacy-section {
        padding-top: 100px;
    }

    .privacy-glass-card {
        padding: 30px;
    }

    .privacy-item h3 {
        font-size: 1.2rem;
    }

    .privacy-item p {
        padding-left: 0;
    }
}

/* Налаштування ширини скролбару */
::-webkit-scrollbar {
    width: 8px; /* Робимо його тонким та акуратним */
    background-color: #030816; /* Глибокий темний фон, як у ваших секціях */
}

/* Доріжка, по якій рухається повзунок */
::-webkit-scrollbar-track {
    background: #030816;
    border-left: 1px solid rgba(255, 255, 255, 0.05); /* Легка межа для візуального розділення */
}

/* Сам повзунок */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4a9eff 0%, #1e2541 100%); /* Градієнт від неонового синього до темно-синього */
    border-radius: 10px; /* Повністю круглі краї, як у ваших карток та кнопок */
    border: 2px solid #030816; /* Відступ навколо повзунка для ефекту "паріння" */
}

    /* Повзунок при наведенні */
    ::-webkit-scrollbar-thumb:hover {
        background: #4a9eff; /* Стає яскравішим при взаємодії */
        box-shadow: 0 0 10px rgba(74, 158, 255, 0.5); /* Ефект неонового світіння */
    }

/* Стиль для Firefox (обмежені можливості кастомізації) */
* {
    scrollbar-width: thin;
    scrollbar-color: #4a9eff #030816;
}