.elementor-11 .elementor-element.elementor-element-9c568fd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11 .elementor-element.elementor-element-1e81485{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-65725cc *//* Основний контейнер */
.custom-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 10px 5%;
    font-family: 'Montserrat', sans-serif;
}

/* Контакти зліва */
.top-bar-contact {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
}

.contact-item i {
    color: #00C49F; /* Бірюзовий колір з макету */
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #00C49F;
}

/* Права частина: мови та соцмережі */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.languages {
    display: flex;
    gap: 10px;
}

.languages img {
    width: 20px;
    height: auto;
    cursor: pointer;
    transition: 0.3s;
}

.languages img:hover {
    transform: scale(1.1);
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    color: #ffffff;
    font-size: 14px;
    transition: 0.3s;
}

.socials a:hover {
    color: #00C49F;
}

/* Адаптивність для мобілок */
@media (max-width: 768px) {
    .custom-top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .top-bar-contact {
        flex-direction: column;
        gap: 5px;
    }
}
@media (max-width: 768px) {
    /* Робимо топ-бар вертикальним */
    .custom-top-bar {
        flex-direction: column;
        padding: 15px 10px;
        gap: 15px;
    }

    /* Вирівнюємо контакти по центру */
    .top-bar-contact {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    /* Ховаємо частину тексту на дуже малих екранах, якщо потрібно */
    .contact-item span, .contact-item a {
        font-size: 14px;
    }

    /* Збільшуємо відступ між мовами та соцмережами */
    .top-bar-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-9c568fd */.custom-top-bar {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%) !important;
    border-bottom: 1px solid rgba(0, 196, 159, 0.3); /* Лінія з відтінком бірюзи */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d97fd2c *//* Основний контейнер хедера */

.logo-text-wrapper a {
    display: flex;
    flex-direction: column; /* Текст у два рядки для компактності, або в один */
    line-height: 1.0;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.3s ease;
}

.logo-text-wrapper a:hover {
    transform: scale(1.05); /* Легке збільшення при наведенні */
}

/* Перше слово */
.logo-main {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
}

/* Друге слово (Акцентне) */
.logo-accent {
    font-size: 26px;
    font-weight: 900;
    color: #00C49F; /* Твій бірюзовий колір */
    letter-spacing: 2px;
    margin-left: 5px;
}

/* Третє слово (Менше, знизу або поруч) */
.logo-sub {
    font-size: 12px;
    font-weight: 400;
    color: #aaaaaa;
    letter-spacing: 5.5px; /* Розтягуємо під ширину верхніх слів */
    margin-top: 5px;
    display: block;
}

/* Адаптивність для мобілки */
@media (max-width: 768px) {
    .logo-main, .logo-accent {
        font-size: 18px;
    }
    .logo-sub {
        font-size: 8px;
        letter-spacing: 4px;
    }
}

.main-header {
    background-color: #000000;
    padding: 20px 5%;
    border-top: 1px solid #222; /* Ледь помітна лінія розмежування */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Логотип */
.logo img {
    height: 50px; /* Налаштуй під свій розмір */
    width: auto;
    display: block;
}

/* Меню */
.navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.navigation ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.navigation ul li a:hover {
    color: #00C49F;
}

/* Кнопка */
.call-btn {
    background-color: #00C49F;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.call-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Адаптивність для планшетів та смартфонів */
@media (max-width: 1024px) {
    .navigation {
        display: none; /* Тут зазвичай додається мобільне "бургер" меню */
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Елементи один під одним */
        gap: 20px;
        padding: 20px 0;
    }

    .logo img {
        height: 40px; /* Зменшуємо лого для мобілки */
    }

    /* Якщо ти використовуєш стандартне меню Elementor, 
       воно автоматично перетвориться на "бургер". 
       Якщо ж ти писав його кодом, робимо його горизонтальним скролом або ховаємо */
    .navigation ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navigation ul li a {
        font-size: 14px;
    }

    /* Кнопка на всю ширину або по центру */
    .header-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .call-btn {
        width: 80%; /* Кнопка стає помітнішою для пальця */
        text-align: center;
        padding: 15px;
    }
}
@keyframes pulse-turquoise {
    0% { box-shadow: 0 0 0 0 rgba(0, 196, 159, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 196, 159, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 196, 159, 0); }
}

.call-btn, .call-btn-large {
    animation: pulse-turquoise 2s infinite;
}

@media (max-width: 767px) {
    /* 1. Налаштування загального контейнера хедера */
    .header-container {
        flex-direction: column; /* Елементи один під одним */
        padding: 15px 10px !important;
        gap: 15px !important;
    }

    /* 2. Компактне текстове лого для мобілки */
    .logo-text-wrapper a {
        align-items: center; /* Центруємо назву на мобілці */
    }

    .logo-main, .logo-accent {
        font-size: 18px !important; /* Зменшуємо шрифт */
    }

    .logo-sub {
        font-size: 8px !important;
        letter-spacing: 3px !important;
        text-align: center;
        width: 100%;
    }

    /* 3. Меню: Робимо його горизонтальним списком з прокруткою або центром */
    .navigation ul {
        justify-content: center;
        gap: 12px !important;
        flex-wrap: wrap; /* Дозволяємо перенос, якщо пунктів багато */
    }

    .navigation ul li a {
        font-size: 13px !important;
        text-transform: uppercase;
    }

    /* 4. Кнопка "Call to Us" на весь екран */
    .header-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .call-btn {
        width: 100%; /* Кнопка на всю ширину для зручності */
        max-width: 280px;
        text-align: center;
        padding: 12px 0 !important;
        font-size: 14px !important;
    }

    /* 5. Виправлення Hero-секції (текст поверх фури) */
    .hero-content h1 {
        font-size: 32px !important; /* Щоб заголовок не вилазив */
        text-align: center;
    }

    .hero-content h2 {
        font-size: 20px !important;
        text-align: center;
    }

    .hero-content p {
        font-size: 14px !important;
        text-align: center;
        padding: 0 10px;
    }

    .hero-btns {
        flex-direction: column; /* Кнопки одна під одною */
        align-items: center;
        width: 100%;
    }

    .btn-main, .btn-outline {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}
.main-header {
    border-top: none !important;
}/* End custom CSS */