/*
 Theme Name:   MyTheme Child
 Template:     astra
 Version:      1.0
*/


html, body, header, footer {
    width: 100%;
    min-width: 320px;
    font-family: 'Roboto', sans-serif;
}

.bwc-chat-header, .bwc-chat, .bwc-get-call, #bwc-wrap, .bwc-chat-in-active {
	background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%)!important;	
}



/* HEADER BEGIN */

.main-nav a.active {
    color: #fcb045;
    font-weight: 700;
  }

.site-header {
    width: 100%;
    padding: 20px 0;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #fcb045;
}

.header-phone .phone-button {
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.header-phone .phone-button:hover {
    opacity: 0.85;
}

.main-nav a,
.phone-button {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}


.lang-dropdown {

    position: relative;
    z-index: 100;
    font-family: 'Roboto', sans-serif;
    margin-left: 10px;
}

/* .lang-dropdown select {
    background-color: #000;
    color: white;
    border: 1px solid #444;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
} */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent; 
  color: white; 
  padding: 0;
  margin-left: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 16px 0 0;

  background-image: url("data:image/svg+xml,%3Csvg width='15' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='white' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px 6px;
}

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

.burger {
    width: 30px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.burger span {
    height: 3px;
    background: white;
    border-radius: 2px;
    width: 100%;
    display: block;
}

.main-nav {
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.lang-switcher {
    margin-top: 10px;
}

.lang-switcher a {
    display: inline-block;
    padding: 6px 12px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #444;
    border-radius: 4px;
    margin: 0 5px;
}

.lang-switcher a:hover,
.lang-switcher .current-lang {
    background-color: #222;
}
/* HEADER END */





/* HERO-SECTION BEGIN */

.hero-section {
    position: relative;
    color: white;
    padding: 100px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 60vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s;
    display: inline-block;
    border: none; /* прибирає рамку */
    outline: none; /* прибирає синій контур після кліку (на деяких браузерах) */
}

.hero-button:hover {
    opacity: 0.85;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    z-index: 3;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-down span {
    margin-bottom: 20px;
    display: block;
    width: 30px;
    height: 30px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(-45deg);
    transition: transform 0.3s, border-color 0.3s;
}

/* Hover-ефект */
.scroll-down:hover span {
    transform: rotate(-45deg) translateY(4px);
    border-color: #fcb045;
}

/* Анімація bounce */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, 10px);
    }
    60% {
        transform: translate(-50%, 5px);
    }
}

/* HERO-SECTION END */
/* PROJECTS BEGIN */
.projects-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.project-filters button {
    padding: 10px 25px;
    background-color: transparent;
    color: #333;
    border: 2px solid #ccc;
    border-radius: 999px; /* робить ідеальну капсулу */
    cursor: pointer;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s;
    white-space: nowrap;
}

.project-filters button.active,
.project-filters button:hover {
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    color: white;
    border: none;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

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

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

.project-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
    margin-top: 0;
}

.project-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.project-info .btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    background: #000;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
    margin-right: 10px;
}

.project-info .btn:hover {
    background: #fcb045;
}

.project-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 1.5em;
    line-height: 1.5em;
    white-space: normal;
  }
  .project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #833ab4; /* фіолетовий */
    text-decoration: none;
    font-weight: 500;
    margin-right: 15px;
    transition: color 0.3s;
  }
  
  .project-link:hover {
    color: #fd1d1d;
  }
  
  .project-link span[data-lucide] {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
    stroke: currentColor;
  }
/* PROJECTS END */
/* MODAL BEGIN */
.project-modal {
    position: fixed;
    max-height: 100vh;
    overflow-y: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
    background: white;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.modal-content .btn {
    margin: 5px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.project-card {
    cursor: pointer;
}
.modal-gallery-wrapper {
    margin-bottom: 20px;
}

.modal-main-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
}

.modal-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    justify-content: center;
}

.modal-gallery-thumbs img {
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

.modal-gallery-thumbs img.active {
    opacity: 1;
    border: 2px solid #fcb045;
}

.modal-gallery-thumbs img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.modal-content .btn {
    display: inline-block;
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin: 5px;
    transition: 0.3s;
}

.modal-content .btn:hover {
    background: #fcb045;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: white;
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 5;
    opacity: 0.7;
    transition: 0.2s;
    border-radius: 30px;
}

.gallery-nav:hover {
    opacity: 1;
}

.gallery-nav.left {
    left: 10px;
}

.gallery-nav.right {
    right: 10px;
}

.modal-gallery-wrapper {
    position: relative;
}

.fullscreen-gallery {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    flex-direction: column;
}

.fullscreen-gallery img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close-fullscreen {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}
.modal-price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}
.project-price {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}
/* MODAL END */


/* ADVANTAGES START */
.advantages-grid .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    color: #833ab4; /* фірмовий колір */
}

.advantages-section {
    background-color: #f9f9f9;
    padding: 10px;
    text-align: center;
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #000;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
}

.advantage-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.advantage-card .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 5px;
    color: #833ab4; /* основний градієнтний фіолет */
}

.advantage-card h3 {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #000;
}

.advantage-card p {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #555;
    line-height: 1.5;
}

/* ADVANTAGES END */
/* FOOTER BEGIN */
.site-footer {
    background-image: url('/wp-content/uploads/2025/05/building_dark.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    position: relative;
    color: white;
    padding: 60px 20px 30px;
    text-align: left;
    z-index: 1;
    box-sizing: border-box;
  }
  
  .site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 0;
  }
  
  .site-footer .container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-column {
    flex: 1 1 250px;
    min-width: 220px;
  }
  
  /* Логотип */
  .footer-logo img {
    height: 40px;
    margin-bottom: 15px;
  }
  
  /* Заголовки */
  .footer-column h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #fcb045;
  }
  
  /* Контактна інформація */
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
    font-size: 15px;
    margin-top: 0!important;
  }
  
  .footer-contacts li {
    margin-bottom: 8px;
  }
  
  .footer-contacts a {
    color: white;
    text-decoration: none;
  }
  
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  
  /* Навігація */
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  li::marker {
    content: "";
}
  
  .footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
  }
  
  .footer-nav a:hover {
    color: #fcb045;
  }
  
  /* Соцмережі */
  .footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 15px;
  }
  
  .footer-icon.lucide-icon svg {
    stroke: white;
    fill: none;
    width: 24px;
    height: 24px;
    transition: stroke 0.3s;
  }
  
  .footer-icon.lucide-icon:hover svg {
    stroke: #fcb045;
  }
  
  .footer-icon.telegram-icon svg {
    fill: white;
    width: 24px;
    height: 24px;
    transition: fill 0.3s;
  }
  
  .footer-icon.telegram-icon:hover svg {
    fill: #fcb045;
  }

  
  .footer-icon.instagram-icon:hover svg {
    fill: #fcb045;
  }
  .footer-icon.facebook-icon svg {
    fill: white;
    width: 24px;
    height: 24px;
    transition: fill 0.3s;
  }
  
  .footer-icon.facebook-icon:hover svg {
    fill: #fcb045;
  }

  .footer-contact a {
    color: white !important; /* перезаписує стандартний синій */
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: #fcb045 !important;
    text-decoration: underline;
  }
  
  .footer-icon.lucide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: white;
    transition: color 0.3s;
  }
  
  .footer-icon.lucide-icon:hover {
    color: #fcb045;
  }
  
  /* Карта */
  .footer-map {
    flex: 1 1 350px;
    min-height: 260px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Нижній рядок */
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #f6f6f6;
  }
  
  .footer-bottom p {
    color: #626262 !important;
    font-size: 14px;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .footer-column {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
  }
  
  .footer-column.visible {
    opacity: 1;
    transform: translateY(0);
  }

  footer h2 {
    margin-top: 0!important;
  }


  .footer-contacts {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-left: 4px solid #fcb045;
    margin-top: 15px;
    margin-bottom: 20px;
    transition: background 0.3s ease;
  }
  
  .footer-contacts:hover {
    background-color: rgba(255, 255, 255, 0.08);
  }
  
  .footer-contacts li {
    margin-bottom: 8px;
    font-size: 15px;
    color: white;
  }
  
  .footer-contacts a {
    color: white;
    text-decoration: none;
  }
  
  .footer-contacts a:hover {
    color: #fcb045;
    text-decoration: underline;
  }

/* FOOTER END */

/* WHAT'S INCLUDED SECTION BEGIN*/
.project-includes {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
  }
  
  .project-includes .section-title {
    font-size: 36px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    /* margin-bottom: 20px; */
  }
  
  .project-includes .includes-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px;
  }
  
  .includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box;
    align-items: stretch;	  
    margin-bottom: 40px;
  }
  
  .includes-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .includes-item:hover {
    transform: translateY(-5px);
  }
  
  .includes-icon {
    margin-bottom: 15px;
  }
  

  
  .includes-item p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    font-family: 'Montserrat', sans-serif;
  }


  .includes-item svg.lucide {
    width: 40px;
    height: 40px;
    stroke: #fcb045;
    stroke-width: 1.8;
    transition: stroke 0.3s, transform 0.3s;
    margin-bottom: 15px;
  }
  
  .includes-item:hover svg.lucide {
    stroke: #fd7232;
    transform: scale(1.1);
  }
  

  .include-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 2;
    pointer-events: none;
  }
  .include-wave-bottom svg {
    width: 100%;
    height: 100%;
  }
/* WHAT'S INCLUDED SECTION END*/
/* VIDEO-REVIEWS BEGIN */
.video-reviews {
    padding: 40px 20px 50px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .video-reviews .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .video-item {
    cursor: pointer;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  
  .video-item:hover {
    transform: translateY(-5px);
    /* background-color: #000; */

  }
  
  .video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16/9;
  }
  
  .video-thumb img,
  .video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  
  .video-thumb:hover .video-play-icon {
    opacity: 1;
  }

  .video-thumb:hover {
    opacity: 0.8;
  }
  
  .video-item h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #222;
  }
  
  .video-item p {
    font-size: 14px;
    color: #555;
  }
  
  /* Modal */
  .video-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
  }
  
  .video-modal-content {
    background: #000;
    max-width: 800px;
    width: 90%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .video-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 2;
  }
  
  .video-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }
  
  .video-embed-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
/* VIDEO-REVIEWS END */
/* MODAL FORM BEGIN */
.modal-form {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
  }
  
  .modal-form-content {
    background: #111;
    padding: 40px 30px;
    max-width: 420px;
    width: 90%;
    position: relative;
    border-radius: 16px;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  }
  
  .modal-form-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
  }


.modal-form-close:hover {
    color: #fcb045;
  }

  /* Контейнер форми */
.wpcf7 form {
    background-color: #111;
    padding: 30px;
    border-radius: 12px;
    color: white;
    max-width: 500px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
  }
  
  /* Поля вводу */
  .wpcf7 input[type="text"],
  .wpcf7 input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #444;
    background-color: #1c1c1c;
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
    box-sizing: border-box;
  }
  
  /* Плейсхолдер */
  .wpcf7 input::placeholder {
    color: #888;
  }
  
  /* Кнопка */
  .wpcf7-submit {
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
  }
  
  /* Hover кнопки */
  .wpcf7-submit:hover {
    opacity: 0.85;
  }
  


  /* Повідомлення про помилки / успіх */
  .wpcf7-response-output {
    margin-top: 15px; /* Зменшена відстань після кнопки */
    padding: 12px;
    border-radius: 6px;
    background-color: #222;
    border: 1px solid #444;
    color: #fcb045;
    font-size: 14px;
  }
  
  /* Повідомлення про помилки під полями */
  span.wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: -10px;
    display: block;
  }

  .modal-form-content {
    animation: fadeInUp 0.4s ease;
  }

  .wpcf7-form.init {
    padding: 0;
  }

  .modal-form-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
    font-family: 'Roboto', sans-serif;
    text-align: center;
  }


@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* MODAL FORM END */
/* SCROLL TO TOP BUTTON BEGIN*/
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: #000; /* чорна кнопка */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: opacity 0.3s, transform 0.3s;
  }
  
  .scroll-to-top:hover {
    transform: scale(1.1);
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
    stroke: white;
  }

  /* SCROLL TO UP END */
  /* ABOUT SECTION BEGIN */
.about-section {
  position: relative;
  padding: 50px 20px 130px 20px;
  color: white;
  background-color: #0f0f0f;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}



.about-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(15,15,15,1) 0%, rgba(255,255,255,0) 100%);
  z-index: 2;
}

.about-gradient-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: 2;
  pointer-events: none;
}

.about-gradient-svg svg {
  width: 100%;
  height: 100%;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
}

.about-section .section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  color: #fcb045;
}

.about-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 16px;
  color: #bbb;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  background: #1a1a1a;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: #fcb045;
  stroke-width: 1.8;
  margin-bottom: 15px;
  transition: stroke 0.3s;
}

.feature-item:hover .feature-icon svg {
  stroke: #fd7232;
}

.feature-item p {
  color: #eee;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.4;
}

/* CTA button */
.about-cta {
  margin-top: 40px;
}

.btn-gradient {
  background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.about-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
  pointer-events: none;
}
.about-wave-bottom svg {
  width: 100%;
  height: 100%;
}

/* ABOUT SECTION END */

/* STAGES BEGIN */
.stages-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.stages-section .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

.stages-section .stages-description {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.stage-item {
  background: white;
  border-radius: 10px;
  padding: 20px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

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


.stage-item:hover .stage-item svg {
  stroke: #fd7232;
}

.stage-item svg {
  width: 32px;
  height: 32px;
  stroke: #fcb045;
  stroke-width: 1.8;
  transition: stroke 0.3s;
}

.stage-item h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.stage-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* STAGES END */

/* FAQ SECTION BEGIN */
.faq-section {
  position: relative; /* обовʼязково */
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden; /* щоб псевдоелемент не виходив */
}
.faq-section::after {
  content: '';
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #0f0f0f 100%);
  z-index: 1;
  pointer-events: none;
}

.faq-section .section-title {
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 50px;
  color: #333;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.faq-question {
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  font-size: 18px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '–';
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-wave-top {
  position: absolute;
  /* top: 2; */

  /* top: 10%; */
  width: 100%;
  left: 0;
  height: 150px;
  z-index: 0;
  pointer-events: none;
  box-sizing: border-box;
  
}

.faq-wave-top svg {
  width: 100%;
  height: 100%;
}

.faq-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #161515 100%);
  z-index: 1;
  pointer-events: none;
}
/* FAQ SECTION END */

/* CONTACT FORM SECTION BEGIN */
.contact-form-section {
  position: relative;
  background-color: #0f0f0f;
  color: white;
  padding: 80px 20px;
  overflow: hidden;
  z-index: 1;
  background-image: url('/wp-content/themes/mytheme-child/assets/img/ground.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 0;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.contact-form-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
  text-align: left; /* важливо */
}

.form-block {
  flex: 1 1 450px;
  max-width: 500px;
}

.form-block h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  color: #fcb045;
  text-align: left;
}

.form-block p {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 16px;
  text-align: left;
}

/* Contact Form 7 */
.wpcf7 form {
  background-color: transparent;
  padding: 0;
  border-radius: 12px;
  color: white;
  font-family: 'Roboto', sans-serif;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #444;
  background-color: #1c1c1c;
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
}

.wpcf7 input::placeholder {
  color: #888;
}

.wpcf7-submit {
  background: linear-gradient(90deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s;
  display: inline-block;
}

.wpcf7-submit:hover {
  opacity: 0.85;
}

.wpcf7-response-output {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  background-color: #222;
  border: 1px solid #444;
  color: #fcb045;
  font-size: 14px;
}

span.wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: -10px;
  display: block;
}

.gradient-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
  pointer-events: none;
}

.gradient-decoration svg {
  width: 100%;
  height: 100%;
}
/* CONTACT FORM SECTION END */






/* TEXT REVIEWS BEGIN */
.text-reviews-section {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}

.text-reviews-section .section-title {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

.text-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  gap: 15px;
  text-align: left;
  transition: transform 0.3s;
}

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

.review-photo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fcb045;
}

.review-content {
  flex: 1;
}

.review-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  max-height: 16em;
  transition: max-height 0.3s ease;
}

.review-text.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.read-more {
  color: #fcb045;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
  transition: color 0.3s;
}

.read-more:hover {
  color: #fd1d1d;
}

.review-stars .star {
  color: #fcb045;
  font-size: 16px;
  margin-right: 2px;
}

.review-author {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}

.more-reviews {
  text-align: center;
  margin-top: 30px;
}

.more-reviews a {
  color: #fcb045;
  text-decoration: underline;
  font-weight: 500;
}

.modal-review {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-review .modal-content {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  position: relative;
}

.modal-review iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
/* TEXT REVIEWS END */


/* CERTIFICATES SECTION BEGIN */
.certificates-section {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background-image: url('<?php echo esc_url(get_field("cert_bg")["url"]); ?>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;

}

.certificates-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255,255,255,0.7); /* СВІТЛИЙ прозорий шар */
  z-index: 0;
}

.certificates-section .container {
  position: relative;
  z-index: 1;
}

.certificates-section .section-title {
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 40px;
  color: #333;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.certificate-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.certificate-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  max-height: 240px;
  object-fit: contain;
}

.certificate-title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
/* CERTIFICATES SECTION END */

















/* *******************************************************АДАПТАЦІЯ ********************************************************/

@media (max-width: 768px) {

    /* HERO-SECTION BEGIN */
    .hero-section {
        padding: 60px 15px;
        min-height: auto;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-button {
        font-size: 16px;
        padding: 12px 28px;
    }
    /* HERO-SECTION END */
    /* HEADER BEGIN */
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        padding: 20px 0;
        text-align: center;
        z-index: 99;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        justify-content: center;
    }

    .burger span {
        height: 3px;
        background: white;
        border-radius: 2px;
        width: 100%;
    }

    .header-phone {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .lang-dropdown select {
        font-size: 13px;
        padding: 5px 8px;
    }
    .phone-button {
        font-size: 14px;
    }
    
    /* HEADER END */

    /* ADVANTAGES BEGIN */
    .section-title {
        font-size: 28px;
    }

    .advantage-card {
        padding: 12px 8px;
    }

    .advantage-card h3 {
        font-size: 14px;
    }

    .advantage-card p {
        font-size: 12px;
    }

    .advantage-card .icon {
        width: 40px;
        height: 40px;
    }
    /* ADVANTAGES END */
  /* FOOTER BEGIN */

  .container {
      padding: 0 20px;
  }
  .site-footer .container {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
  }
  
  .footer-logo, .footer-nav, .footer-contact {
      height: auto!important;
      flex: auto;
      margin: 0!important;
  }
  .footer-column {
      width: 100%;
      margin-bottom: 30px;
  }

  .footer-map {
      height: 200px;
  }

  .footer-socials {
      justify-content: center;
  }
  /* FOOTER END */
    /* ABOUT START */
    .about-section {
      padding: 40px 15px 100px 15px;
    }
  
    .about-section .section-title {
      font-size: 26px;
    }
  
    .about-subtitle {
      font-size: 16px;
      margin-bottom: 10px;
    }
  
    .about-text p {
      font-size: 15px;
      margin-bottom: 20px;
    }
  
    .about-features {
      grid-template-columns: 1fr; /* одна колонка на мобільних */
      gap: 20px;
    }
  
    .feature-item {
      padding: 20px;
    }
  
    .feature-item p {
      font-size: 14px;
    }
  
    .feature-icon svg {
      width: 32px;
      height: 32px;
    }
  
    .btn-gradient {
      padding: 12px 20px;
      font-size: 15px;
    }
  
    .about-gradient-svg {
      height: 300px; /* зменшення хвилі на мобільних */
    }
  
    .about-wave-bottom {
      height: 60px;
    }
  
    .about-wave-bottom svg {
      height: 100%;
    }
  
    .about-section::after {
      height: 40px;
    }

    /* ABOUT END */

/* STAGES BEGIN */
.stages-section {
  padding: 40px 15px;
}

.stages-section .section-title {
  font-size: 26px;
}

.stages-section .stages-description {
  font-size: 15px;
  margin-bottom: 30px;
}

.stages-grid {
  grid-template-columns: 1fr; /* Один елемент в ряд */
  gap: 15px;
}

.stage-item {
  padding: 16px 12px;
}

.stage-icon svg {
  width: 28px;
  height: 28px;
}

.stage-item h3 {
  font-size: 15px;
}

.stage-item p {
  font-size: 13px;
}
/* STAGES END */
/* PROJECTS BEGIN */
.section-header h2 {
  font-size: 26px;
}

.section-header p {
  font-size: 14px;
}

.project-filters {
  flex-direction: column;
  align-items: center;
}

.project-filters button {
  width: 100%;
  max-width: 300px;
}

.project-info {
  padding: 15px;
}

.project-info h3 {
  font-size: 18px;
}

.project-info p {
  font-size: 13px;
}

.project-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.project-link {
  font-size: 13px;
  gap: 5px;
}

.project-gallery {
  grid-template-columns: 1fr;
}

.project-card img {
  height: 180px;
}
/* PROJECTS END */



  .contact-form-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .form-block {
    max-width: 100%;
  }

  .form-block h2 {
    font-size: 26px;
    text-align: left;
  }

  .form-block p {
    font-size: 14px;
    text-align: left;
  }
/* CONTACT FORM SECTION END */
/* TEXT-REVIEWS BEGIN */
.text-reviews-section {
  padding: 40px 15px;
}

.text-reviews-section .section-title {
  font-size: 26px;
  margin-bottom: 30px;
}

.text-reviews-grid {
  grid-template-columns: 1fr; /* Один стовпчик на мобільних */
  gap: 15px;
}

.review-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}


.review-content {
  text-align: center;
}

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

.review-stars {
  justify-content: center;
}

.read-more {
  font-size: 14px;
}

.more-reviews a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 25px;
  background: rgba(252, 176, 69, 0.1);
}

/* TEXT-REVIEWS END */
/* FAQ BEGIN */

.faq-section {
  padding-top: 30px;
}

.faq-section .section-title {
  font-size: 24px;
  margin-bottom: 20px;
}
/* FAQ END */
/* PROJECT INCLUDE BEGIN */

.project-includes p {
  margin: 5px auto;
}

.project-includes .section-title {
  font-size: 24px;
  margin-bottom: 20px;
}
/* PROJECT INCLUDE END */
/* VIDEO REVIEWS BEGIN */

.video-reviews {
  padding: 40px auto;
}
.video-grid {
  gap: 10px;
}

.video-item {
  padding: 10px;
}


.video-reviews .section-title {
  font-size: 24px;
  margin-bottom: 20px;
}
/* VIDEO REVIEWS END */

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent; 
  color: white; 
  padding: 0;
  margin-left: 35px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 26px 0 0!important;

  background-image: url("data:image/svg+xml,%3Csvg width='25' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='white' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px 6px;
}


}


/******************************************************* MOBILE *******************************************************/
@media (max-width: 480px) {
    .site-header .container {
        display: flex;
        flex-wrap: wrap; /* дозволяємо перенос, якщо дуже тісно */
        align-items: center;
        justify-content: space-between;
        padding: 8px 12px;
        gap: 6px;
    }

    .logo {
        flex: 0 1 auto;
    }

    .logo img {
        height: 28px;
        flex-shrink: 0;
    }

    .header-phone {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
        flex-shrink: 1;
    }

    .phone-button {
        font-size: 12px!important;
        padding: 5px 8px;
        white-space: nowrap;
        line-height: 1;
    }

    .lang-dropdown {
        flex-shrink: 0;
    }

    .lang-dropdown select {
        font-size: 12px;
        padding: 4px 12px;
        max-width: 65px;
    }

    .burger {
        width: 22px;
        height: 18px;
        flex-shrink: 0;
    }


    .site-header .container > * {
        min-width: 0;
    }


}