/* Підключення шрифтів */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Roboto:wght@700&display=swap');



body, html {
    margin: 0!important;
    background: #fff; /* тимчасово залишається білим */
    top:0;
    left: 0;
    width: 100%!important;
    min-width: 320px;
}

.order-success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
    animation: fadeOut 0s ease 10s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        height: 0;
        padding: 0;
        margin: 0;
    }
}

.hero {
    background: url('../img/roll.png') no-repeat center top;
    background-size: cover;
    background-position: center top;
    padding: 160px 20px 80px 20px;
    min-height: 100vh; /* 👈 Зробимо мінімальну висоту hero на всю висоту вікна! */
    display: flex;
    align-items: center;
    margin-top: -98px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    color: #423F3F;
}

.hero-content h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 56px;
    margin-bottom: 20px;
    color: #8D3436;
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-content .btn {
    display: inline-block;
    background: #8D3436;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}



/* Header Styles */
/* Універсальний контейнер */
.container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

/* Підлаштовуємо header-container */
.header-container {
    display: flex;
    align-items: flex-start; /* 👈 Вирівнюємо елементи вгорі контейнера */
    justify-content: space-between;;
}
.header-center {
    flex: 0 1 auto;
}

.header-right {
    display: flex;
    align-items: center;
}

/* Додаємо щоб елементи не розтягувались */
.header-left,
.header-center,
.header-right {
    flex-shrink: 0; /* 👈 Забороняємо елементам стискатися */
}

/* Підлаштовуємо hero-container */
.hero-container {
    display: flex;
    align-items: center;
}

.site-header {
    width: 100%;
    position: absolute;
    top: 0; /* 👈 опустимо header на 40px вниз */
    left: 0;
    z-index: 100;
    background: transparent;
    padding: 20px 0;
}

/* Логотип */
.header-left img, 
.header-left .custom-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Підкладка меню */
.header-center {
    background: #ffffff;
    border-bottom: 1px solid #8D3436;
    border-left: 1px solid #8D3436; 
    border-right: 1px solid #8D3436; 
    padding: 10px 40px;
    border-radius: 0 0 15px 15px; /* Зменшене заокруглення нижніх кутів */
    display: flex;
    align-items: center;
    height: 66px; /* Висота підкладки */
    margin-top: -16px;
}

/* Саме меню (навігація) */
.header-menu {
    display: flex;
    gap: 60px; /* Відстань між пунктами меню */
    align-items: center;
}

/* Пункти меню */
.header-menu a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #423F3F;
    transition: 0.3s;
}

.header-menu a:hover {
    color: #8D3436;
}

/* Телефон */
.header-right .phone-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #8D3436;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #8D3436;
    border-radius: 30px;
    background: #fff;
    transition: 0.3s;
}

.header-right .phone-link:hover {
    background: #8D3436;
    color: #fff;
}

/* === Burger Button === */
/* Бургер за замовчуванням прихований */
.burger {
    display: none;
    position: absolute;
    right: 5%;
    z-index: 1001;
    cursor: pointer;
    font-size: 32px;
    color: #8D3436;
}

/* Мобільне меню */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #8D3436;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #423F3F;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

body.menu-open .mobile-menu {
    display: flex;
}





/* WORKS START */

.works {
    margin: 30px auto;
    padding: 20px;
    background: #fff;
}

.works-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    color: #8D3436;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #423F3F;
    margin-bottom: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(221px, 1fr));
    gap: 5px;
    margin-bottom: 40px;
}

.gallery-item {
    aspect-ratio: 1 / 1; /* квадратна форма */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-block;
    background: #8D3436;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s;
}

.btn:hover {
    background: #6e2b2b;
    color:#ffffff;
}

/* WORKS END */

/* LIGHTBOX START */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    user-select: none;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: #8D3436;
}

.lightbox-controls {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1002;
}

.lightbox-controls button {
    background: #fff;
    color: #8D3436;
    font-size: 28px;
    padding: 10px 18px;
    border: 2px solid #8D3436;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    z-index: 1002;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Правильний hover */
.lightbox-controls button:hover {
    background: #8D3436; /* Фон стає темно-коричневим */
    color: #fff; /* Текст стає білим */
}
/* LIGHTBOX END */





/* REVIEWS START */



.reviews {
    padding: 60px 20px;
    background: #FFD2D3;
    position: relative;
    z-index: 1;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    color: #8D3436;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #423F3F;
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #423F3F;
    margin-bottom: 15px;
}

.review-author {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #8D3436;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.review-stars {
    font-size: 20px;
    color: #FFD700; /* Золоті зірочки */
    margin: 10px 0;
}
/* REVIEWS END */


/* ORDER START */
.order {
    background: url('../img/bg2.jpg') top;
    padding: 20px;
    background-size: cover;
    background-position: center top;
    padding: 80px 20px 80px 20px;
    min-height: 80vh; /* 👈 Зробимо мінімальну висоту hero на всю висоту вікна! */
    display: flex;
    align-items: center;
}

.order-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffffca;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #C4C4C4;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.order-form textarea {
    resize: vertical;
    min-height: 120px;
}

.order-form .btn {
    background: #8D3436;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s;
}

.order-form .btn:hover {
    background: #6e2b2b;
}
/* ORDER END */




/* contacts start */
.contacts {
    padding: 40px 20px;
    background: #FFD2D3;

    background: url('../img/bg3.jpg') top;
    padding: 20px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
}

.contacts-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contacts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.contact-item {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 220px;
}

.contact-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #8D3436;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #423F3F;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #8D3436;
}

.map-wrapper {
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* contacts end */



/* ADVANTAGES START */
.advantages {
    padding: 60px 20px;
    background: #fff;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 0.8fr));
    gap: 20px;
    margin-top: 30px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.advantage-icon {
    font-size: 50px!important;
    color: #fff;
    background: linear-gradient(135deg, #FFD2D3, #8D3436);
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #423F3F;
    text-align: center;
    line-height: 1.4;
    max-width: 280px;
    margin-bottom: 10px;
}
/* ADVANTAGES END */


/* STEPS START */
.steps {
    padding: 60px 20px;
    background: #FFD2D3;

    background: url('../img/bg3.jpg') top;
    padding: 20px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.step-number {
    font-family: 'Roboto', sans-serif;
    background: #8D3436;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
}

.step-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #423F3F;
}

/* STEPS END */


/* FAQ START */
.faq {
    padding: 40px 20px;
    background: #fff;
/* 
    background-color: #FFD2D3;
    background-image: url('../img/bg4.jpg');
    background-repeat: repeat;
    background-position: center; */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: #FFD2D3;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: #ffc2c4;
}

.faq-question {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #8D3436;
    margin-bottom: 10px;
}

.faq-answer {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #423F3F;
    display: none;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    margin-top: 10px;
}
/* FAQ END */

/* GUARANTEES START */
.guarantees {
    padding: 40px 20px;
    background: #fff;

    background: url('../img/bg5.jpg') top;
    padding: 20px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
}

.guarantees-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFD2D3;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    
}

.guarantee-icon {
    font-size: 64px!important;
    color: #8D3436;
    margin-bottom: 10px;
}

.guarantee-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #423F3F;
    text-align: center;
    line-height: 1.4;
}

.guarantee-note {
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #8D3436;
}
/* GUARANTEES END */



/* VIDEO START */
.video-section {
    padding: 40px 20px;
    /* background: #FFD2D3; */
    /* background: url('../img/bg1.jpg') no-repeat center top;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center; */

    background-color: #FFD2D3;
    background-image: url('../img/bg3.jpg');
    background-repeat: repeat;
    background-position: center;
}

.video-section h2 {
    font-size: 40px;
}


.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    margin-top: 60px;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 співвідношення */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
/* VIDEO END */


/* FILLINGS START */
.fillings {
    background: #fff;
    padding: 60px 20px;
}

.fillings-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fillings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.filling-card {
    background: #FFD2D3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.filling-card:hover {
    transform: translateY(-5px);
}

.filling-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.filling-info {
    padding: 20px;
    text-align: left;
}

.filling-info h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    color: #8D3436;
    margin-bottom: 10px;
}

.filling-info ul {
    list-style: disc inside;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #423F3F;
    margin: 0;
    padding: 0;
}
/* FILLINGS END */




/* SCROLL-TOP START */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #8D3436;
    color: #fff;
    font-size: 24px;
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top:hover {
    background: #6e2b2b;
}

/* Коли активна */
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
/* SCROLL-TOP END */

/* FOOTER START */
.site-footer {
    background: #8D3436;
    color: #fff;
    margin: 0px!important;
    min-width: 100%!important;
}

.footer-top {
    padding: 80px 20px 40px;
    width: 100%;
}

.footer-grid,
.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    /* max-width: 1200px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-bottom {
    background: #6e2b2b;
    padding: 20px 0;
    width: 100%;
}

.footer-bottom-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}   

.footer-col h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFD2D3;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #FFD2D3;
}

.footer-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-logo img {
    max-width: 230px;
}

.footer-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #FFD2D3;
}

.footer-bottom {
    background: #6e2b2b;
    padding: 20px 20px;
}

.footer-bottom-container {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #FFD2D3;
    opacity: 0.8;
}
/* FOOTER END */



@media (max-width: 1024px) {


    .header-menu a {
        font-size: 14px;
    }

    .header-center {
        padding: 10px 20px;
    }
    .header-menu {
        gap: 30px;
    }

    .custom-logo {
        height: 45px!important;
    }

    .phone-link {
        padding: 10px 10px!important;
        font-size: 14px!important;

    }

    /* HERO START */

    .hero {
        padding: 120px 20px 60px;
        background-position: left top;
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-left: 10%;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .hero-content .btn {
        font-size: 18px;
        padding: 12px 26px;
    }

    /* HERO END */



    /* REVIEW START */
    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .review-text {
        font-size: 16px;
    }

    .review-author {
        font-size: 16px;
    }

    .review-avatar {
        width: 60px;
        height: 60px;
    }

    .reviews-grid {
        gap: 20px;
    }
    /* REVIEW END */

/* Contacts start */

.contacts {
padding: 30px 15px;
align-items: stretch;
}

.contacts-grid {
    gap: 10px;
}

.contact-item {
width: auto;
padding: 18px;
}

.contact-title {
font-size: 18px;
}

.contact-link {
font-size: 16px;
word-break: break-word;
}

.map-wrapper {
margin-top: 30px;
height: 300px;
}

.map-wrapper iframe {
height: 100%;
}
/* Contacts end */



}






/* Адаптивність */
@media (max-width: 768px) {
    .hero {
        padding: 100px 15px 40px;
        background-position: 25% top; /* 👈 вирівнюємо фон по лівому краю */
    }

    .phone-link {
        padding: 5px 5px!important;
        font-size: 12px!important;
        margin-right: 60px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-content .btn {
        font-size: 16px;
        padding: 10px 24px;
    }

    .header-center {
        display: none;
    }

    .burger {
        display: block;
    }

    .header-container {
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        padding: 0;
        gap: 10px;
    }

    .header-right .phone-link {
        font-size: 12px;
        padding: 8px 14px;
    }

    .header-left .custom-logo,
    .header-left img {
        height: 48px;
    }


    .header-left {
        max-width: 40%;
    }
    .phone-link {
        box-sizing: border-box;
    }


    /* reviews start */
    .reviews {
        padding: 40px 15px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-item {
        padding: 18px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .review-text {
        font-size: 15px;
    }

    .review-author {
        font-size: 15px;
    }

    .review-stars {
        font-size: 18px;
        margin: 5px 0;
    }
    /* reviews end */



    /* fillings start */
    .fillings {
        padding: 40px 15px;
      }
    
      .fillings-grid {
        grid-template-columns: 1fr; /* Один блок в ряд для мобільних */
        gap: 20px;
      }
    
      .filling-card img {
        height: 160px; /* трішки менше зображення на мобільних */
      }
    
      .filling-info h3 {
        font-size: 18px;
      }
    
      .filling-info ul {
        font-size: 14px;
      }
    /* fillings end */


    /* Contacts start */

    .contacts {
    padding: 30px 15px;
    flex-direction: column;
    align-items: stretch;
    }

    .contacts-grid {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    }

    .contact-item {
    width: 100%;
    max-width: 350px;
    padding: 18px;
    }

    .contact-title {
    font-size: 18px;
    }

    .contact-link {
    font-size: 16px;
    word-break: break-word;
    }

    .map-wrapper {
    margin-top: 30px;
    height: 300px;
    }

    .map-wrapper iframe {
    height: 100%;
    }
    /* Contacts end */


    /* advantages start */
    .advantages {
        padding: 40px 15px;
      }
    
      .advantages-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }
    
      .advantage-item {
        padding: 10px;
        border-radius: 16px;
      }
    
      .advantage-icon {
        font-size: 40px !important;
        padding: 16px;
        margin-bottom: 12px;
      }
    
      .advantage-text {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 0;
      }
    /* advantages end */

      /* STEPS START */
      .steps {
        padding: 40px 15px;
        flex-direction: column;
        align-items: stretch;
        background-position: center top;
      }
    
      .steps-container {
        text-align: center;
      }
    
      .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
      }
    
      .step-item {
        padding: 20px 15px;
        border-radius: 12px;
      }
    
      .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
      }
    
      .step-text {
        font-size: 16px;
      }
      /* STEPS END */

      /* guarangees start */
      .guarantees {
        padding: 40px 15px;
        flex-direction: column;
        align-items: stretch;
        background-position: center top;
      }
    
      .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
      }
    
      .guarantee-item {
        padding: 20px 15px;
        border-radius: 12px;
      }
    
      .guarantee-icon {
        font-size: 48px !important;
        margin-bottom: 10px;
      }
    
      .guarantee-text {
        font-size: 16px;
      }
    
      .guarantee-note {
        font-size: 13px;
        margin-top: 20px;
      }
      /* guarangees end */


      /* ORDER START */
      .order {
        padding: 60px 15px 40px;
        min-height: auto;
        background-position: center top;
        background-size: cover;
        flex-direction: column;
      }
    
      .order-container {
        padding: 20px;
        border-radius: 15px;
      }
    
      .order-form {
        margin-top: 30px;
        gap: 15px;
      }
    
      .order-form input,
      .order-form textarea {
        padding: 12px;
        font-size: 15px;
      }
    
      .order-form textarea {
        min-height: 100px;
      }
    
      .order-form .btn {
        font-size: 16px;
        padding: 12px 24px;
      }
    
      .section-title {
        font-size: 28px;
      }
    
      .section-subtitle {
        font-size: 16px;
      }
      /* ORDER END */


      /* video start */
      .video-section {
        padding: 30px 15px;
        background-position: center top;
      }
    
      .video-section h2 {
        font-size: 24px;
        line-height: 1.4;
      }
    
      .video-wrapper {
        margin-top: 30px;
        padding-bottom: 56.25%; /* зберігаємо 16:9 */
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
      }
    
      .video-wrapper iframe {
        border-radius: 12px;
      }
    
      .video-container {
        padding: 0;
      }
      /* video end */

      /* works start */
      .works {
        padding: 40px 15px;
        margin-top: 0;
        margin-bottom: 0;
      }
    
      .section-title {
        font-size: 28px;
      }
    
      .section-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
      }
    
      .gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 картинки в ряд */
        gap: 10px;
      }
    
      .gallery-item {
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      }
    
      .btn {
        font-size: 16px;
        padding: 12px 24px;
      }
      /* works end */


      .footer-grid {
        grid-template-columns: 1fr; /* Один блок на ряд */
        gap: 30px;
        text-align: center;
        padding: 0;
      }
    
      .footer-logo img {
        max-width: 180px;
        height: auto;
      }
    
      .footer-description {
        font-size: 14px;
        padding: 0 10px;
      }
    
      .footer-col h4 {
        font-size: 18px;
        margin-bottom: 15px;
      }
    
      .footer-col ul li a {
        font-size: 14px;
      }
    
      .footer-bottom-container {
        font-size: 12px;
        padding: 0 10px;
      }
    
      .footer-top {
        padding: 50px 15px 30px;
      }
    
      .footer-bottom {
        padding: 15px 10px;
      }

      /* faq start */
      .faq {
        padding: 30px 15px;
      }
      
      .faq-container {
        max-width: 100%;
        padding: 0;
      }
      
      .faq-list {
        margin-top: 30px;
      }
      
      .faq-item {
        padding: 16px 20px;
      }
      
      .faq-question {
        font-size: 18px;
      }
      
      .faq-answer {
        font-size: 16px;
      }
      /* faq end */
}