:root {
  --logo-color: #215540;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 50px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
}
.logo {
  font-size: 40px;
  color: var(--logo-color);
  font-weight: bold;
  text-decoration: none;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
.menu-link {
  text-decoration: none;
  color: #595959;
  font-size: 25px;
  font-weight: 400;
  white-space: nowrap;
}
.desktop-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 23px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.burger-btn span {
  display: block;
  width: 100%;
  height: 4px;
  background: #215540;
  transition: 0.3s ease-in-out;
}
.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  padding: 100px 30px 30px;
  z-index: 5;
}
.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.mobile-link {
  font-size: 22px;
  color: #595959;
  text-decoration: none;
}
.mobile-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-icons svg{
  display: none;
}
.mobile-icons span{
  color: #595959;
  font-size: 22px;
}
.mobile-icon-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #000;
  text-decoration: none;
}

@media (max-width: 992px) {
  .menu,
  .desktop-icons {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .mobile-icons svg {
    display: none;
  }
  .mobile-icon-link {
    font-size: 18px;
    color: #595959;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 20px 30px;
  }
  .logo {
    font-size: 32px;
  }
  .mobile-menu {
    width: 60%;
    padding: 80px 20px 20px;
  }
  .mobile-link {
    font-size: 20px;
  }
  .mobile-icon-link span {
    font-size: 20px;
  }
  .mobile-icons svg {
    display: none;
  }
  .mobile-nav {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px 20px;
  }
  .logo {
    font-size: 40px;
  }
  .mobile-link {
    font-size: 18px;
  }
  .mobile-icons {
    gap: 20px;
  }
  .mobile-icon-link span {
    font-size: 18px;
  }
}

/* Стилизация баннера */
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 500px;
  height: 80vh;
  padding: 0 50px;
  position: relative;
  margin-bottom: 100px;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.banner-container {
  max-width: 1440px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.banner-title {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-desc {
  font-size: clamp(16px, 2.5vw, 23px);
  font-weight: normal;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.4;
  max-width: 600px;
}

.banner-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--logo-color);
  color: #fff;
  border: none;
  outline: none;
  max-width: 220px;
  width: 100%;
  height: 54px;
  font-size: clamp(18px, 2vw, 24px);
  font-family: "Segoe UI", sans-serif;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.banner-btn:hover {
  background-color: #1a4535;
}

.banner-btn img {
  width: 20px;
  height: auto;
  transition: transform 0.3s ease;
}

.banner-btn:hover img {
  transform: translateX(5px);
}

/* Адаптивность */
@media (max-width: 768px) {
  .banner {
    height: 70vh;
    min-height: 400px;
    padding: 0 20px;
  }

  .banner-container {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .banner-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 60vh;
    min-height: 300px;
  }

  .banner-btn {
    height: 50px;
    max-width: 200px;
  }
}

/* Стилизация преимуществ */
.advantages-choose {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 50px;
}

.advantages-choose-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages-choose-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: bold;
  text-align: center;
  margin-bottom: clamp(40px, 10vw, 160px);
  color: #000;
}

.advantages-choose-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
  width: 100%;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  width: 100%;
  padding: 20px;

  flex: 1 1 250px;
}
.item-img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.item-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}

.item-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #595959;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .advantages-choose {
    padding: 40px 20px;
  }

  .item {
    max-width: 45%;
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .advantages-choose {
    padding: 30px 15px;
  }

  .item {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .advantages-choose-title {
    margin-bottom: 30px;
  }
}

/* Стилизация услуг */
.services {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(40px, 5vw, 60px) clamp(20px, 4vw, 50px);
  background-color: #f3f4f6;
}

.secvices-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-title {
  font-weight: bold;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: clamp(40px, 6vw, 85px);
  color: #000;
  text-align: center;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  width: 100%;
}

.service-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-text {
  padding: 20px clamp(15px, 3vw, 30px);
}

.service-title {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.service-price {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  margin-bottom: 15px;
  color: #555;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 300;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--logo-color);
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #1a4535;
}

.service-link img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.service-link:hover img {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .service-items {
    grid-template-columns: 1fr;
  }
}

/* Стилизация преимуществ */
.advantages-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 50px);
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.advantages-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  width: 100%;
}

.advantages-title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: clamp(40px, 8vw, 120px);
  color: #000;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
.advantages-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 16px);
  border-radius: 16px;
  background-color: rgba(33, 85, 64, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(33, 85, 64, 0.1);
  background-color: rgba(33, 85, 64, 0.08);
}

.advantage-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--logo-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.advantage-item:hover::before {
  transform: scaleX(1);
}

.advatage-img {
  width: 60px;
  height: 60px;
  margin-bottom: clamp(15px, 2vw, 25px);
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.advantage-item-title {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #000;
}

.advantage-item-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
  color: #595959;
  max-width: 320px;
}

@media (max-width: 640px) {
  .advantages-items {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .advantage-item {
    padding: 30px 20px;
  }
}

/* Секция заказа */
.ready {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #215540;
  padding: clamp(40px, 8vw, 80px) 50px;
  position: relative;
  overflow: hidden;
}

.ready::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.ready::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.ready-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.ready-title {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  font-weight: 700;
  margin-bottom: clamp(20px, 3vw, 35px);
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ready-desc {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(25px, 4vw, 40px);
  line-height: 1.5;
}

.ready-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #215540;
  border: none;
  border-radius: 50px;
  padding: clamp(12px, 2vw, 16px) clamp(25px, 4vw, 40px);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.ready-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
  .ready {
    padding: 50px 15px;
  }

  .ready-title {
    font-size: 24px;
  }

  .ready-desc {
    font-size: 15px;
  }

  .ready::before,
  .ready::after {
    display: none;
  }
}

/* Стилизация подвала */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: clamp(40px, 8vw, 90px) clamp(20px, 4vw, 50px) 26px;
  background-color: #002717;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 60px);
  margin-bottom: clamp(40px, 6vw, 90px);
}

/* Блоки подвала */
.logo-block,
.footer-contacts,
.time-work {
  min-width: 250px;
  max-width: 420px;
}

.logo-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
}


.logo-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footer-contacts, 
.time-work {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vw, 12px);
}

.block-title {
  color: #fff;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-contact-link:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.8);
  transition: all 0.3s ease;
}

.time-work p {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footer-line {
  width: 100%;
  max-width: 1440px;
  height: 1px;
  background: rgba(33, 85, 64, 0.5);
  margin-bottom: clamp(15px, 3vw, 22px);
}

.copyright {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  text-align: center;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: start;
  }
  
  .logo-block,
  .footer-contacts,
  .time-work {
    max-width: 100%;
  }
}