.elementor-275 .elementor-element.elementor-element-93bfae1{--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;}/* Start custom CSS for html, class: .elementor-element-2ff667a *//* --- СЕКЦІЯ ГЕРОЯ (INTERIOR) --- */
.interior-hero-section {
    position: relative;
    /* Посилання на ваше фото фону */
    background-image: url('https://coreexec.com/wp-content/uploads/2026/02/service1.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 650px; /* Висота секції */
    display: flex;
    align-items: center; /* Центрування по вертикалі */
    color: #fff;
    overflow: hidden;
}

/* Затемнення (щоб текст читався) */
.interior-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 40% затемнення */
    z-index: 1;
}

/* Контейнер контенту */
.interior-content {
    position: relative;
    z-index: 2;
    max-width: 700px; /* Обмеження ширини тексту */
    padding-left: 20px; /* Невеликий відступ зліва */
}

/* Помаранчевий бейдж */
.interior-badge {
    display: inline-block;
    background-color: var(--brand-orange); /* Ваш помаранчевий колір */
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 15px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Заголовок */
.interior-title {
    font-family: var(--font-primary);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Легка тінь тексту */
}

/* Опис */
.interior-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 600px;
}

/* Кнопка */
.interior-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff9d4d 0%, #f37021 100%);
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.4);
}

.interior-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.6);
    color: #fff;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ --- */
@media (max-width: 991px) {
    .interior-hero-section {
        height: 550px;
    }

    .interior-title {
        font-size: 38px;
    }

    .interior-badge {
        font-size: 11px;
    }
    
    .interior-content {
        padding-left: 0;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0751bef *//* --- СЕКЦІЯ --- */
.expert-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden; /* Щоб помаранчевий фон не вилазив за межі */
}

.expert-grid {
    display: flex;
    align-items: center; /* Центрування по вертикалі */
    gap: 60px;
}

/* --- ЛІВА КОЛОНКА --- */
.expert-content {
    flex: 1;
}

.expert-subtitle {
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.expert-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.expert-desc p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Кнопка (Outline Style) */
.expert-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #ddd; /* Тонка сіра рамка */
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.expert-btn-outline:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    background-color: #fff;
}

/* --- ПРАВА КОЛОНКА (ЗОБРАЖЕННЯ) --- */
.expert-image-wrapper {
    flex: 1;
    position: relative;
    padding-right: 20px; /* Місце для зсуву фону вправо, якщо треба */
    min-height: 400px;
    display: flex;
    justify-content: flex-end; /* Притискаємо фото вправо */
}

/* Помаранчевий фон позаду */
.expert-orange-bg {
    position: absolute;
    top: 20px; /* Зсув вниз */
    right: -100px; /* Виходить за межі екрану вправо, як на макеті */
    width: 80%; /* Ширина помаранчевого блоку */
    height: 100%;
    background-color: var(--brand-orange);
    z-index: 1;
}

/* Саме фото */
.expert-img-box {
    position: relative;
    z-index: 2; /* Поверх помаранчевого */
    width: 90%; /* Фото трохи вужче за контейнер */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expert-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ --- */
@media (max-width: 991px) {
    .expert-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .expert-orange-bg {
        width: 100%;
        right: -20px;
        top: 20px;
        height: 90%;
    }
    
    .expert-img-box {
        width: 100%;
    }
    
    .expert-title {
        font-size: 32px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-63fa85a *//* --- СЕКЦІЯ --- */
.oversight-section {
    padding: 100px 0;
    background-color: #fff; /* Кремовий/Білий фон */
}

.oversight-grid {
    display: flex;
    align-items: flex-start; /* Вирівнювання по верху */
    gap: 80px;
}

/* --- ЛІВА КОЛОНКА (КОЛАЖ) --- */
.oversight-images-col {
    flex: 1;
    position: relative;
    min-width: 45%;
}

.oversight-collage {
    position: relative;
    height: 600px; /* Загальна висота композиції */
    width: 100%;
}

/* Помаранчевий фон */
.oversight-orange-bg {
    position: absolute;
    bottom: 0;
    left: 20%; /* Зміщений вправо */
    width: 60%;
    height: 70%;
    background-color: var(--brand-orange);
    z-index: 1;
}

/* Загальні стилі картинок */
.ov-img {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ov-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Картинка 1 (Сходи, зліва зверху) */
.ov-img-1 {
    top: 0;
    left: 0;
    width: 45%;
    height: 55%;
    z-index: 2;
}

/* Картинка 2 (Коридор, справа) */
.ov-img-2 {
    top: 15%; /* Трохи нижче першої */
    right: 0;
    width: 48%;
    height: 45%;
    z-index: 2;
}

/* Картинка 3 (Плиточник, зліва знизу) */
.ov-img-3 {
    bottom: 5%;
    left: 10%;
    width: 50%;
    height: 40%;
    z-index: 3; /* Найвище */
    border: 5px solid #fff; /* Біла рамка для відділення */
}

/* --- ПРАВА КОЛОНКА (ТЕКСТ) --- */
.oversight-content-col {
    flex: 1;
    padding-top: 20px;
}

.oversight-subtitle {
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.oversight-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
    margin: 0 0 40px 0;
}

/* --- АКОРДЕОН (Окремі стилі) --- */
.oversight-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid #ddd; /* Тонка лінія знизу */
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    list-style: none; /* Прибираємо стандартний трикутник */
    transition: color 0.3s;
}

/* Прибираємо стандартний маркер Chrome/Safari */
.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header:hover {
    color: var(--brand-orange);
}

/* Тонка стрілочка справа */
.arrow-thin {
    font-size: 14px;
    color: #333;
    transition: transform 0.3s ease;
}

/* Поворот стрілки при відкритті */
details[open] .arrow-thin {
    transform: rotate(90deg);
    color: var(--brand-orange);
}

.accordion-body {
    padding-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

/* Стиль для простого тексту всередині */
.simple-text {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Помаранчеві галочки (Service Point) - з попередніх кроків */
.service-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.point-icon {
    color: var(--brand-orange);
    font-size: 16px;
    margin-top: 2px;
}

.point-content p {
    margin: 0;
    font-size: 15px;
    color: #555;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ --- */
@media (max-width: 991px) {
    .oversight-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .oversight-collage {
        height: 400px; /* Менша висота на мобільному */
    }
    
    .oversight-title {
        font-size: 32px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b2b2f8c *//* --- СЕКЦІЯ --- */
.solver-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.solver-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- ЛІВА КОЛОНКА (ТЕКСТ) --- */
.solver-content {
    flex: 1;
    padding-right: 20px;
}

.solver-subtitle {
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.solver-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.solver-desc p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* --- ПРАВА КОЛОНКА (КОЛАЖ) --- */
.solver-image-wrapper {
    flex: 1;
    position: relative;
    min-height: 500px; /* Висота блоку з картинками */
}

.solver-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.solver-img {
    position: absolute;
    overflow: hidden;
    /* Тінь для відділення картинок одна від одної */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

.solver-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Картинка 1 (Плани) - Менша, зліва */
.img-plans {
    width: 55%;
    height: 70%;
    top: 15%; /* Центруємо по вертикалі відносно правої */
    left: 0;
    z-index: 1;
}

/* Картинка 2 (Робочий) - Висока, справа */
.img-worker {
    width: 45%;
    height: 100%; /* На всю висоту */
    top: 0;
    right: 0;
    z-index: 2;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ --- */
@media (max-width: 991px) {
    .solver-grid {
        flex-direction: column;
        gap: 50px;
    }

    .solver-image-wrapper {
        min-height: 400px;
        width: 100%;
    }

    .solver-title {
        font-size: 32px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-869a426 *//* --- СЕКЦІЯ --- */
.dreams-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.dreams-grid {
    display: flex;
    align-items: flex-start; /* Вирівнювання по верху */
    gap: 80px;
}

/* --- ЛІВА КОЛОНКА (ФОТО) --- */
.dreams-image-wrapper {
    flex: 1;
    position: relative;
    min-height: 500px;
    padding-top: 40px; /* Відступ зверху для фону */
    padding-right: 40px; /* Відступ справа для фону */
}

/* Помаранчевий фон */
.dreams-orange-bg {
    position: absolute;
    top: 0; /* Притиснутий до верху */
    right: 0; /* Притиснутий до права */
    width: 70%; /* Ширина помаранчевого блоку */
    height: 80%; /* Висота */
    background-color: var(--brand-orange);
    z-index: 1;
}

/* Фото */
.dreams-img-box {
    position: relative;
    z-index: 2; /* Поверх фону */
    width: 85%; /* Фото займає 85% ширини колонки */
    margin-right: auto; /* Вирівнювання вліво */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.dreams-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- ПРАВА КОЛОНКА (ТЕКСТ) --- */
.dreams-content {
    flex: 1;
}

.dreams-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 25px 0;
}

.dreams-desc p,
.dreams-footer-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* --- АКОРДЕОН --- */
.dreams-accordion {
    margin-bottom: 30px;
    border-top: 1px solid #eee; /* Лінія зверху першого елемента */
}

.dreams-item {
    border-bottom: 1px solid #eee; /* Лінія знизу кожного елемента */
}

.dreams-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    transition: color 0.3s;
}

.dreams-header::-webkit-details-marker {
    display: none;
}

.d-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Іконка галочки */
.d-check-icon {
    color: var(--brand-orange);
    font-size: 16px;
}

/* Іконка плюса */
.d-plus-icon {
    font-size: 14px;
    color: #999;
    transition: transform 0.3s ease;
}

/* Поворот плюса при відкритті (перетворюється на хрестик, якщо повернути на 45, або просто крутиться) */
details[open] .d-plus-icon {
    transform: rotate(45deg); 
    color: var(--brand-orange);
}

.dreams-body {
    padding-bottom: 20px;
    padding-left: 30px; /* Відступ під текст */
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.dreams-body p {
    margin: 0;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ --- */
@media (max-width: 991px) {
    .dreams-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .dreams-image-wrapper {
        width: 100%;
        padding: 0;
        min-height: auto;
        margin-bottom: 20px;
    }

    .dreams-orange-bg {
        width: 90%;
        height: 90%;
        top: -15px;
        right: -15px;
    }
    
    .dreams-img-box {
        width: 100%;
    }
    
    .dreams-title {
        font-size: 32px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-58d93e4 *//* --- СЕКЦІЯ --- */
.vision-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.vision-grid {
    display: flex;
    align-items: center; /* Центрування по вертикалі */
    gap: 60px;
}

/* --- ЛІВА КОЛОНКА --- */
.vision-content {
    flex: 1;
}

.vision-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.vision-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* Список */
.vision-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.v-icon {
    color: var(--brand-orange);
    font-size: 18px;
    margin-top: 3px; /* Вирівнювання іконки відносно тексту */
    flex-shrink: 0;
}

.v-text strong {
    display: block;
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.v-text p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* --- ПРАВА КОЛОНКА (ЗОБРАЖЕННЯ) --- */
.vision-image-wrapper {
    flex: 1;
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: flex-start; /* Фото притиснуте вліво в своєму блоці */
}

/* Помаранчевий фон */
.vision-orange-bg {
    position: absolute;
    top: 20px;
    right: -100px; /* Виходить за межі екрану вправо */
    width: 90%;
    height: 90%;
    background-color: var(--brand-orange);
    z-index: 1;
}

/* Фото */
.vision-img-box {
    position: relative;
    z-index: 2;
    width: 90%;
    margin-right: 40px; /* Відступ справа, щоб було видно помаранчевий фон */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.vision-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ --- */
@media (max-width: 991px) {
    .vision-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .vision-image-wrapper {
        width: 100%;
        min-height: auto;
    }
    
    .vision-orange-bg {
        width: 100%;
        right: -20px;
    }
    
    .vision-img-box {
        width: 100%;
        margin-right: 0;
    }
    
    .vision-title {
        font-size: 32px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a34b862 *//* --- ОБГОРТКА --- */
.cta-section-wrapper {
    width: 100%;
    padding: 80px 0; /* Відступи зверху і знизу для простору анімації */
    display: flex;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

/* --- БАНЕР (Що анімується) --- */
.cta-banner {
    width: 100%;
    max-width: 100%; /* Спочатку він може бути меншим через JS */
    /* ГРАДІЄНТ: Темно-сірий -> Помаранчевий */
    background: linear-gradient(90deg, #2a2a2a 0%, #2a2a2a 30%, #a64d16 60%, #e0691e 100%);
    padding: 80px 10%; /* Внутрішні відступи */
    
    /* Початковий стан (змінюється скриптом) */
    transform: scale(0.92); 
    border-radius: 20px;
    transition: transform 0.1s linear, border-radius 0.1s linear; /* Плавність для скрипта */
}

.cta-inner-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- ТЕКСТ --- */
.cta-content {
    flex: 1;
    color: #fff;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.cta-desc {
    font-size: 16px;
    opacity: 0.9;
    max-width: 400px;
    line-height: 1.5;
    margin: 0;
}

/* --- ПРАВА ЧАСТИНА (КНОПКИ) --- */
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Стиль "Glassmorphism" для кнопок */
.cta-box {
    display: block;
    background: rgba(255, 255, 255, 0.1); /* Напівпрозорий білий */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Тонка рамка */
    padding: 20px 30px;
    min-width: 280px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(5px); /* Ефект розмиття фону під кнопкою */
}

.cta-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px); /* Легкий зсув вліво */
}

.cta-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.cta-value {
    display: block;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px; /* Відступ підкреслення */
    text-decoration-thickness: 1px;
}

/* --- МОБІЛЬНА АДАПТАЦІЯ --- */
@media (max-width: 991px) {
    .cta-banner {
        transform: none !important; /* Вимикаємо анімацію масштабу на мобільних */
        border-radius: 0 !important;
        padding: 60px 20px;
        background: linear-gradient(180deg, #2a2a2a 0%, #e0691e 100%); /* Градієнт зверху вниз */
    }

    .cta-inner-grid {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }

    .cta-title {
        font-size: 36px;
    }
    
    .cta-actions {
        width: 100%;
    }
    
    .cta-box {
        width: 100%;
    }
}/* End custom CSS */