/*
Theme Name: Simple Landing
Theme URI: https://example.com/
Author: Sergey Chizh
Author URI: https://example.com/
Description: Landing theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simple-landing
*/

:root {
  --main-blue: #006400; /* Змінна кольору */
  --dark-gray: #333333;
  --star-color: gold;
  --gray: #ccc;
  --color-dark-bg: #373737;
  --color-main: #006400; /* основний колір для підсвітки */
  --color-btn-bg: #ccc;
  --color-btn-text: #222;
  --color-btn-hover-bg: #bbb;
  --color-white: #fff;
  --shadow-header: rgba(0,0,0,0.7);
  --shadow-mobile-menu: rgba(0,0,0,0.2);
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #fff;
      scroll-margin-top: 180px; /* Відступ зверху при скролі */
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .container-2 {
        width: 100%;
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px 20px;
    }

    .hero-section h1 {
      color: var(--main-blue);
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .hero-section h2 {
      font-size: 1.5rem;
      color: #444;
      margin-bottom: 40px;
      max-width: 600px;
    }

    .hero-section img {
      max-width: 350px;
			width: 100%;
      height: auto;
      margin-bottom: 40px;
    }

    .hero-section .cta-button {
      background-color: var(--dark-gray);
      color: white;
      font-size: 1.25rem;
      padding: 16px 32px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .hero-section .cta-button:hover {
      background-color: #000;
    }

    @media (max-width: 768px) {
      .hero-section h1 {
        font-size: 2.25rem;
      }

      .hero-section h2 {
        font-size: 1.25rem;
      }

      .hero-section {
        padding: 60px 16px;
      }
    }


  .contact-section {
    padding: 20px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
  }

  .contact-block {
    border: 1px solid var(--main-blue);
    border-radius: 32px;
    padding: 20px;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    position: relative;
    text-align: center;
	  
	    font-family: 'Lexend', sans-serif;
	  
  }

.contact-h2 {
  color: var(--main-blue);
  font-size: 32px;
  text-align: center;
}

.three-blocks {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 100%;
}

.tb-block {
  box-sizing: border-box;
}

.tb-left {
  width: 90%;
}

.tb-center {
  width: 25%;
  text-align: center;
  margin-top: 3%;
	font-weight: 800;
  font-size: 26px;
}

.tb-right {
  width: 90%;
}

/* 📱 Адаптація під мобільні */
@media (max-width: 768px) {
  .three-blocks {
    flex-direction: column;
  }

  .tb-left,
  .tb-center,
  .tb-right {
    width: 100%;
  }
}

.whats-link{
	text-align: left;
	text-decoration: none;
    display: block;
	font-size: 28px;
    font-weight: 600;
    line-height: 24px;
    color: #006400;
	float: left;
}


  .contact-left, .contact-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 240px;
  }

  .phone {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin: 0;
    white-space: nowrap;
  }
  
  .phone-link{
      text-decoration: none;
	  text-align: right;
  }

  .hours {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    font-weight: bold;
  }

  .whatsapp-button {
    background-color: var(--main-blue);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s;
  }

  .whatsapp-button:hover {
    background-color: #0056b3;
  }



  .twentyfour {
  color: var(--main-blue);
  margin: 0px;
  text-align: right;
  padding: 10px;
	  
	  
	  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
	  
  }

.twentyfive{
font-size: 28px;
  color: #373737;
  margin: 0px;
    margin-top: 0px;
    margin-left: 0px;
  margin-top: 0px;
  margin-left: 0px;
  font-weight: bold;
  text-align: left;
  padding: 10px;
  float: left;
  margin-top: 51px;
  margin-left: 10px;
}

.call-to-action-top .twentyfour, .call-to-action-top .twentyfive, .call-to-action-top .whats-link{
	color: #fff;
}

  .contact-divider {
    font-weight: bold;
    color: #999;
    font-size: 1.2rem;
  }

  @media (max-width: 768px) {
    .contact-block {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }

    .twentyfour {
      text-align: center;
    }
	  .phone-link, .whats-link, .twentyfive{
		        text-align: center;
		  float: none;

	  }
	  
	  .twentyfive{
		margin-top: 0px;  
	  }

  }

  .trust-section {
    padding: 20px 20px;
    text-align: center;
    background-color: #fdfdfd;
  }

  .trust-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #000;
  }

  .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .star {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-color: var(--gray);
    clip-path: polygon(
      50% 0%,
      61% 35%,
      98% 35%,
      68% 57%,
      79% 91%,
      50% 70%,
      21% 91%,
      32% 57%,
      2% 35%,
      39% 35%
    );
  }

  .star.full {
    background-color: var(--star-color);
  }

  .star.half {
    background: linear-gradient(
      to right,
      var(--star-color) 50%,
      var(--gray) 50%
    );
  }

  @media (max-width: 768px) {
    .trust-header h2 {
      font-size: 1.5rem;
    }
  }

  .slider {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .slide-track {
    display: flex;
    width: calc(150px * 10 + 40px * 10); /* ширина всіх елементів + gap */
    animation: scroll 40s linear infinite;
    gap: 40px;
  }

  .slide {
    flex: 0 0 auto;
    width: 96px;
    height: 96px;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @media (max-width: 768px) {
    .slide-track {
      gap: 20px;
      animation-duration: 60s;
    }

    .slide {
      width: 120px;
      height: 120px;
    }
  }

.services-section {
    padding: 20px 20px;
    background-color: #fff;
    text-align: center;
  }

  .services-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #000;
  }

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

  .service-card {
    border: 1px solid var(--main-blue);
    border-radius: 32px;
    padding: 40px 10px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-icon {
    font-size: 48px;
    color: var(--main-blue);
    margin-bottom: 20px;
  }

  .service-name {
    font-size: 1.5rem;
    color: var(--main-blue);
    margin-bottom: 20px;
  }

  .service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
  }

  .service-list li {

    margin: 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #373737;
	  
  font-family: Montserrat,sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.1em;
	  
	  
  }

  .service-list li i {
    color: var(--main-blue);
  }

  .service-btn {
    background-color: var(--dark-gray);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }

  .service-btn:hover {
    background-color: #000;
  }

  @media (max-width: 600px) {
    .services-title {
      font-size: 2rem;
    }

    .service-card {
      padding: 30px;
    }

    .service-icon {
      font-size: 40px;
    }

    .service-btn {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  }

  .call-to-action-block {
    position: relative;
    background: url('https://test6.tgnotify.pro/wp-content/uploads/2025/08/ChatGPT-Image-14-авг.-2025-г.-17_18_31.png') no-repeat center center / cover;
    padding: 80px 20px;
    color: white;
    text-align: center;
  }

  .call-to-action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  .call-to-action-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
  }

  .call-to-action-content .twentyfive{
	margin-top: 54px;
}

  .call-to-action-top {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
  }
  
  .call-to-action-top a .phone{
      color: #fff;
  }

  .call-to-action-phone-block {
    text-align: right;
    min-width: 200px;
  }

  .call-to-action-phone-block .phone {
    font-size: 32px;
    font-weight: bold;
    color: var(--main-blue);
  }

  .call-to-action-phone-block .hours {
    color: white;
    font-size: 16px;
  }

  .call-to-action-or {
    font-size: 24px;
    font-weight: bold;
    color: white;
  }

  .call-to-action-whatsapp-block {
    text-align: left;
    min-width: 200px;
  }

  .call-to-action-whatsapp-block .whatsapp-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
  }

  .call-to-action-whatsapp-block .availability {
    color: white;
    font-size: 16px;
    margin-top: 8px;
  }

  .call-to-action-request-button {
    margin-top: 20px;
    background: white;
    color: var(--main-blue);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }

  .call-to-action-request-button:hover {
    background: var(--main-blue);
    color: white;
  }
.google-rating-block {
  background-color: rgba(0, 0, 0, 0); /* прозорий фон */
  padding: 30px 20px;
  text-align: center;
  color: white;
}

.google-rating-content {
  max-width: 800px;
  margin: 0 auto;
}

.stars i {
  font-size: 36px;
  color: gold;
  margin: 0 3px;
}

.rating-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.leaf-icon {
  font-size: 48px;
  color: #9df29d; /* салатовий */
}

.rating-text {
  text-align: center;
}

.rating-number {
  font-size: 64px;
  font-weight: bold;
  color: white;
	margin-bottom: 20px;
}

.rating-description {
  font-size: 20px;
  color: white;
}

.service-info-section {
  padding: 20px 20px;
  background-color: #fff;
}

.service-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.service-text {
  flex: 1 1 500px;
  color: #333;
}

.service-text h2 {
  font-size: 32px;
  color: var(--main-blue); /* Основний колір */
  margin-bottom: 20px;
}

.service-text p {
  font-size: 18px;
  line-height: 1.6;
}

.service-text a {
  color: #2a8cff; /* Основний колір */
  text-decoration: underline;
}

.order-button {
  margin-top: 25px;
  padding: 12px 30px;
  background-color: #ccc; /* Сірий */
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-button:hover {
  background-color: #999;
}

.service-image {
  flex: 1 1 400px;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-includes {
  padding: 20px 20px;
  background-color: #fff;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.include-item {
  border: 1px solid var(--main-blue);
  border-radius: 32px;
  padding: 40px;
  background-color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.include-item h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}

.include-item h3 i {
  color: var(--main-blue);
  margin-right: 10px;
}

.include-item p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.include-link {
  font-weight: bold;
  color: var(--main-blue);
  text-decoration: underline;
  align-self: flex-start;
}

/* АДАПТИВ */
@media (max-width: 767px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }
}


.achievements {
  padding: 20px 20px;
  text-align: center;
}

.achievements h2 {
  color: var(--main-blue);
  font-size: 32px;
  margin-bottom: 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Адаптив */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}


.testimonials {
  padding: 20px 20px;
  background: #fff;
  text-align: center;
}

.testimonials h2 {
  color: var(--main-blue);
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  text-align: left;
  max-width: 350px;
  margin: auto;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.name {
  font-weight: bold;
  color: #000;
}

.date {
  font-size: 14px;
  color: #666;
}

.stars {
  color: gold;
  font-size: 18px;
  margin: 10px 0;
}

.review-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.faq-section {
  padding: 20px 20px;
  background-color: #fefefe;
}

.faq-title {
  text-align: center;
  color: var(--main-blue);
  font-size: 32px;
  margin-bottom: 40px;
}

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

.faq-item {
  margin-bottom: 20px;
  border: 2px solid var(--main-blue);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #fff;
  color: #000;
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 16px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 24px;
  color: var(--main-blue);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 20px 20px;
  font-size: 16px;
  color: #333;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Адаптив */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
    padding: 16px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

.about-section {
  padding: 20px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
}

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

.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 400px;
  min-width: 280px;
	font-size: 18px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 700;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
}

.about-map {
  flex: 1 1 400px;
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden
  height: 900px;
}

/* Адаптивність */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }
  .about-map iframe {
    height: 350px;
	width: 100%;
  }
 .about-map {

  min-width: 330px;

}


}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 2rem;
  }
  .about-text p {
    font-size: 1rem;
  }
}

.hdr-header {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 1300px;
  background-color: var(--color-dark-bg);
  box-shadow: 0 4px 20px var(--shadow-header);
  border-radius: 0 0 40px 40px;
  z-index: 1000;
  padding: 12px 0;
  transition: background-color 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  left: 50%;
  transform: translate(-50%, 0%);

  box-sizing: border-box;
  margin: 0px auto;
}

.hdr-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}


/* Логотипи */
.hdr-logo {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  user-select: none;
}

.hdr-logo-mobile {
  display: none;
}

/* Навігація (десктоп) */
.hdr-nav {
  flex-grow: none;
  /* margin-left: 40px; */
	margin: 0px auto;
}

.hdr-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.hdr-menu-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: color 0.3s ease;
  user-select: none;
	
    font-family: 'Montserrat', sans-serif;
	
}

.hdr-menu-link:hover,
.hdr-menu-link:focus {
  color: var(--color-main);
  outline: none;
}

/* Кнопка "Замовити" */
.hdr-btn-order {
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.hdr-btn-order:hover,
.hdr-btn-order:focus {
  background-color: var(--color-btn-hover-bg);
  outline: none;
}

/* Кнопка "Phone" */
.hdr-btn-phone {
  background-color: #fff;
  color: var(--color-btn-text);
  border: none;
  border-radius: 12px;
  padding: 5px 10px;

  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
	
  font-family: Montserrat,sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
	
}

.hdr-btn-order:hover,
.hdr-btn-order:focus {
  background-color: var(--color-btn-hover-bg);
  outline: none;
}

/* Перемикач мов */
.hdr-lang-switch button {
  background: transparent;
  border: 1.5px solid var(--color-btn-bg);
  color: var(--color-btn-bg);
  padding: 7px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hdr-lang-switch button:hover,
.hdr-lang-switch button:focus {
  background-color: var(--color-btn-bg);
  color: var(--color-dark-bg);
  outline: none;
}

/* Гамбургер */
.hdr-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  user-select: none;
}

.hdr-hamburger span {
  display: block;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
}

/* Мобільне меню */
.hdr-mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 998;
  pointer-events: none;
}

.hdr-mobile-menu {
  position: fixed;
  top: 0;
  right: -70%;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: -4px 0 15px var(--shadow-mobile-menu);
  padding: 40px 20px 20px 20px;
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  user-select: none;
}

.hdr-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hdr-mobile-menu-link {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-main);
  user-select: none;
  transition: color 0.3s ease;
  list-style: none;
}

.hdr-mobile-menu-link:hover,
.hdr-mobile-menu-link:focus {
  color: #ff4b3a;
  outline: none;
}

/* Активний стан меню */
.hdr-mobile-menu-open .hdr-mobile-menu {
  right: 0;
  width: 80%;
}

.hdr-mobile-menu-open .hdr-mobile-menu-overlay {
  width: 100vw;
  opacity: 1;
  pointer-events: auto;
}

/* Адаптивність */

@media (max-width: 1199px) {
 
     .hdr-header {    
      left: 50%;
      margin: 0;
    }
    
}

/* Для мобільних (max-width 768px) */
@media (max-width: 768px) {
    .hdr-btn-order{
        display: none;
    }
    .hdr-header {    
      left: 50%;
    }
  .hdr-logo-desktop {
    display: none;
  }
  .hdr-logo-mobile {
    display: inline-block;
  }
  .hdr-nav {
    display: none;
  }
  .hdr-btn-order {
    order: 2;
  }
  .hdr-lang-switch {
    order: 3;
    margin-left: 15px;
  }
  .hdr-hamburger {
    display: flex;
    order: 4;
  }
  .hdr-btn-order,
  .hdr-lang-switch button {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}

/* Для десктопів (від 769px) */
@media (min-width: 769px) {
  .hdr-hamburger,
  .hdr-mobile-menu,
  .hdr-mobile-menu-overlay,
  .hdr-logo-mobile {
    display: none !important;
  }
}

/*********/

/* Підменю */
.hdr-menu li {
  position: relative;
}

.hdr-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-dark-bg);
  border-radius: 12px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.hdr-menu .sub-menu li {
  padding: 0;
}

.hdr-menu .sub-menu a {
  display: block;
  padding: 8px 15px;
  color: var(--color-white);
  font-weight: 500;
  text-decoration: none;
}

.hdr-menu .sub-menu a:hover {
  background-color: var(--color-main);
}

/* Показуємо підменю при наведенні */
.hdr-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}




/************/




.mnn-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/*
.mnn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}
*/
.mnn-hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding: 0px;
  margin-top: 80px;
}

.mnn-hero h1 {
  color: var(--main-blue);
  font-size: 42px;
  margin-bottom: 20px;
	font-weight: 800;
	font-family: Montserrat,sans-serif;
}

.mnn-hero p {
  color: #262626;
  font-size: 1.2rem;
  margin-bottom: 0px;
}

.mnn-hero-button {
  display: inline-block;
  color: #fff;
  background: #373737;
  padding: 20px 50px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
}

.mnn-hero-button:hover {
  background: var(--main-blue);
  color: white;
}

.hero-rating-text .rating-number, .hero-rating-text .rating-description{
		  font-family: 'Montserrat', sans-serif;


  color: #006400;

}
.hero-rating-text .rating-number{
	margin-right: 5px;
  border-right: 1px solid #000;
  padding-right: 5px;
	font-size: 32px;
  font-weight: 800;
  line-height: 31px;
	  float: left;

}
.hero-rating-text .rating-description{
	  float: right;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2em;
	  text-align: right;

}

.hero-rating .google-rating-block{
	padding: 5px;
}

.hero-rating .stars i{
font-size: 24px;
  color: #f90;
	margin: 0 -3px;
}

.hero-rating .stars {
	margin: -10px 0;
	
}

.hero-rating .leaf-icon{
	font-size: 48px;
  color: #BFE063;
  margin-left: -10px;
  margin-top: -10px;
  margin-right: -10px;
}

.text-message{
	  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  line-height: 24px;
  color: #373737;
}

/* Оверлей */
.mnn-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: none;
  z-index: 9999;
  transition: background 0.3s ease;
}

.mnn-modal-overlay.mnn-active {
  background: rgba(0, 0, 0, 0.6);
}

/* Модалка */
.mnn-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  border: 2px solid var(--main-blue);
  border-radius: 32px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.mnn-modal-overlay.mnn-active .mnn-modal {
  opacity: 1;
}

/* Хрестик */
.mnn-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

/* Заголовок */
.mnn-modal-title {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 24px;
  text-align: center;
}

/* Форматування інпутів */
.mnn-modal-form input,
.mnn-modal-form textarea,
.mnn-modal-form select {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.mnn-modal-form input:focus,
.mnn-modal-form textarea:focus {
  outline: none;
  border-color: var(--main-blue);
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.2);
}

/* Кнопка */
.mnn-modal-form input[type="submit"] {
  background-color: var(--main-blue);
  color: #fff;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.mnn-modal-form input[type="submit"]:hover {
  background-color: #005177;
}

/* Заборона скролу */
body.mnn-modal-open {
  overflow: hidden;
}

.mnn-modal-form textarea{
    height: 150px;
}

.mnn-modal-form input, .mnn-modal-form textarea, .mnn-modal-form select{
    margin-bottom: 5px;
}

.mnn-modal-response {
  margin-top: 20px;
  font-weight: 600;
  color: green;
}

.mnn-footer {
  background-color: #222; /* темно-сірий фон */
  color: #ccc;            /* світло-сірий текст */
  font-size: 18px;
  padding: 40px 20px 0;
}

.mnn-footer a {
  color: #fff;            /* білі посилання */
  text-decoration: none;
}

.mnn-footer a:hover {
  text-decoration: underline;
}

.mnn-footer-widgets {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.mnn-footer-col {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

/* Роздільна лінія */
.mnn-footer-divider {
  height: 1px;
  background-color: #444;
  margin: 20px auto;
  max-width: 1200px;
}

/* Нижній копірайт блок */
.mnn-footer-bottom {
  padding: 15px 20px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}
/* Контейнер меню у футері */
.footer-widget,
.widget_nav_menu {
  margin-bottom: 30px;
}

/* Скидаємо стандартні стилі списку */
.footer-widget ul.menu,
.widget_nav_menu ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Пункти меню */
.footer-widget ul.menu li,
.widget_nav_menu ul.menu li {
  margin-bottom: 10px;
}

/* Посилання меню */
.footer-widget ul.menu li a,
.widget_nav_menu ul.menu li a {
  color: #ffffff; /* Білий текст */
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  white-space: nowrap; /* Заборонити переноси */
  transition: color 0.3s ease;
}

/* Hover-ефект */
.footer-widget ul.menu li a:hover,
.widget_nav_menu ul.menu li a:hover {
  color: #cccccc; /* Світло-сірий при наведенні */
}

.submenu-toggle{
 color: #fff;  
 margin-left: 5px;
 font-size: .8em;
 cursor: pointer;
}

.about-img{
	width: 100%;
	height: 300px;
	margin-bottom: 20px;
	
}
/* Мобилки и мелкие экраны */
@media (max-width: 767.98px) {
  .about-img{
	 display: none; 
	}
}

  .fas.fa-check {
    border: 1px solid currentColor;
    border-radius: 50%;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
  }
  
  

@media (max-width: 768px) {
    
    .about-map {
      flex: 1 1 200px;
    }
    
    .container {
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .services-section{
        padding: 20px 10px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
        .mnn-hero h1{
        font-size: 1.7rem;
        margin-bottom: 5px;            
        }
    
    .phone, .services-title, .service-name, .call-to-action-phone-block .phone, .call-to-action-or, .stars i, .rating-number, .service-text h2, .include-item h3, .achievements h2, .trust-header h2, .testimonials h2, .faq-title, .about-text h2, .footer-widget h4, .mnn-hero-button{
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .mnn-hero p, .mnn-hero-buttone, .service-list li, .call-to-action-phone-block .hours, .rating-description, .call-to-action-request-button, .service-text p, .order-button, .include-item p, .include-link, .name, .review-text, .faq-container h3, .faq-question, .faq-answer, .about-text p, .about-text, .footer-widget ul.menu li a, .widget_nav_menu ul.menu li a, .footer-widget, .widget_nav_menu, .mnn-footer-bottom, .service-btn{
      font-size: 0.8rem;
      margin-bottom: 5px;
    }
	
		  .phone{
		  font-size: 1.8rem;
	  }
 

.contact-block, .service-card, .include-item {
  padding: 10px;
}

.includes-grid{
    gap: 10px;   
}

.mnn-footer-col{
    margin-bottom: 0px;
}

.mnn-footer-widgets{
    gap: 10px;
}

.call-to-action-block{
    padding: 40px 20px;
}

.google-rating-block{
    padding: 20px;
}


  
.service-info-container{
    gap: 10px;
}

.service-info-section{
    padding: 10px 10px;
}

.service-includes{
    padding: 20px 0px;
}

  .includes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .mnn-hero-content {
  padding: 10px;
  margin-top: 60px;
}

.service-image img{
    width: auto;
    height: 150px;
}

.slide img{
    width: 80px;
    height: 80px;
}
  
.call-to-action-top {
  gap: 20px;
  margin-bottom: 10px;
}
  
.gallery img{
    max-width: 180px;
}
	
	.hdr-btn-phone {
		font-size: 14px;
		font-weight: 500;
	}
	
	.call-to-action-content .twentyfive{
	margin-top: 0px;
}
	.twentyfour{
		font-size: 16px;
		padding-left: 0;
  		padding-right: 0;
	}
	
  
}

.footer-contact {
  color: #fff;
  font-family: 'Lexend', sans-serif;
}

.footer-contact .fc-contact-block {
  margin: 0 auto;
}

.footer-contact h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer-contact li i {
  margin-right: 8px;
  min-width: 16px;
  text-align: center;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact .fc-phone {
margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
}

.footer-contact .fc-phone a {
  color: #fff;
  font-weight: 700;
}

.footer-contact .fc-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.footer-contact .fc-whatsapp-link:hover {
  background: #25D366;
  border-color: #25D366;
}

.footer-contact .fc-whatsapp-link i {
  font-size: 18px;
}
