@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --main-color: #a25d57;
  --main-color-both: #883441;
  --main-color-dark: #5b1b26;
  --br: 12px;
}
* {
  font-family: "Montserrat", sans-serif !important;
}
body {
  background-color: #fff9f7;
}
.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: auto;
}
html {
  scroll-behavior: smooth;
}
#about,
#reviews,
#advantages,
#products,
#contact {
  scroll-margin-top: 80px;
}
#menu_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.501);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 998;
}
#open_menu {
  display: none;
}
#menu_overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 85%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile__menu.is-open {
  transform: translateX(0);
}

#close_menu {
  align-self: flex-end;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

#close_menu:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.mobile__menu .header__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile__menu .header__links a {
  display: flex;
  padding: 16px 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: var(--br);
  background: #f5f6f8;
  transition: 0.9s ease;
}

.mobile__menu .header__links a:hover {
  background-color: var(--main-color) !important;
  color: #fff;
}

section {
  padding: 50px 0;
}
.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  color: var(--main-color-dark);
}
a {
  text-decoration: none;
  color: #333;
}
.btn-open-modal {
  padding: 12px 26px;
  border: 1px solid #333;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.btn-open-modal:hover {
  background: #333;
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}

.custom-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 100%;
  max-width: 520px;
  background: #f6f6f6;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}

.custom-modal.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Text */
.modal-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.modal-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 28px;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--main-green);
}

textarea {
  resize: none;
}

/* Close */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.modal-close:hover {
  color: var(--main-green);
}
header.scrolled {
  z-index: 999;
  box-shadow: 10px -6px 15px black;
}
header.scrolled .header-bottom {
  display: none;
}
.header-bottom img {
  filter: brightness(0) invert(1);
}
.header-top-content {
  background-color: #fff;
}
.header-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 5px 0;
}
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
}
.header-top > p {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-color-both);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.header-top > p::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main-color-both);
  box-shadow: 0 0 0 0 var(--main-color);
  animation: blinkDot 1.2s infinite ease-in-out;
}
@keyframes blinkDot {
  0% {
    opacity: 0.25;
    transform: scale(0.85);
    box-shadow: 0 0 0 0 var(--main-color);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(38, 208, 124, 0);
  }
  100% {
    opacity: 0.25;
    transform: scale(0.85);
    box-shadow: 0 0 0 0 rgba(38, 208, 124, 0);
  }
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav a {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
}
.header-top button,
.custom-modal .modal-form button,
.mobile__menu button {
  position: relative;
  padding: 10px 45px;
  background: var(--main-color);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--main-color);
  border-radius: 8px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.header-top button:hover {
  animation: wind 2s ease-in-out infinite;
}

@keyframes wind {
  0% {
    background-position: 0% 50%;
  }

  0% {
    background-position: 50% 100%;
  }

  0% {
    background-position: 0% 50%;
  }
}

.icon-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  transform-origin: 0 0;
  transform: rotate(10deg);
  transition: all 0.5s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

button:hover .icon-1 {
  animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
  transform: rotate(10deg);
}

@keyframes slay-1 {
  0% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.icon-2 {
  position: absolute;
  top: 0;
  left: 25px;
  width: 12px;
  transform-origin: 50% 0;
  transform: rotate(10deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

button:hover .icon-2 {
  animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
}

@keyframes slay-2 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(0);
  }
}

.icon-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  transform-origin: 50% 0;
  transform: rotate(-5deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

button:hover .icon-3 {
  animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
}

@keyframes slay-3 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0);
  }
}

.iconsheader {
  display: flex;
  gap: 5px;
}
.icon-circle {
  border-radius: var(--br) !important;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border: 2px solid var(--main-color-both);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color-both);
  transition: all 0.2s ease;
}

.icon-circle:hover {
  background-color: #fff;
}

/* SVG üçün */
.icon-circle svg {
  width: 18px;
  height: 18px;
}
.icon-circle:hover svg path {
  fill: var(--main-color-both);
}
.header-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  background: linear-gradient(
    45deg,
    var(--main-color),
    var(--main-color-both),
    var(--main-color-dark)
  );
  gap: 30px;
  height: 85px;
  align-items: center;
  padding: 0 40px;
  border-radius: var(--br);
}
.header-bottom img {
  width: 200px;
  object-fit: cover;
}
.header-bottom svg {
  width: 17px;
  height: 17px;
}
.header-bottom div {
  display: flex;
  gap: 20px;
}
.header-bottom p {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.header-bottom div a {
  background-color: var(--main-color);
  height: 50px;
  padding: 0 20px;
  border-radius: var(--br);
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: bold;
  border: 1px solid var(--main-color);
  transition: 0.4s ease;
}
.header-bottom div a:hover {
  background-color: #fff;
  color: var(--main-color);
}
.banner {
  background: linear-gradient(
    45deg,
    #322d2d,
    var(--main-color-dark),
    var(--main-color-both),
    var(--main-color)
  );
  min-height: 100vh;
  overflow: hidden;
}

.banner .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.banner-content {
  display: grid;
  grid-template-columns: 1fr 35%;
  align-items: center;
  padding-top: 120px;
  gap: 20px;
}

/* SOL TƏRƏF */
.banner-textside {
  max-width: 720px;
  color: #fff;
}

.banner .banner-textside span {
  font-size: 15px;
  opacity: 0.75;
  display: inline-block;
  margin-bottom: 30px;
}

.banner-textside h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 40px;
}

/* ICON + TEXT BOX */
.banner-desc {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 25px;
  border: 2px solid #fff;
  border-radius: var(--br);
  max-width: 520px;
}.banner     {display: flex;
    align-items: center;}

.banner-desc p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}
.banner
{display: flex;
    align-items: center;}
/* ICON DAIRESI */
.banner-desc .iconcircle {
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconcircle svg {
  width: 29px;
  height: 29px;
}

.banner-imgside img {
  width: 100%;
  height: 550px;
  display: block;
  border-radius: var(--br);
  object-fit: cover;
}

.banner-slider {
  position: relative;
}

.banner-slider .swiper-button-prev,
.banner-slider .swiper-button-next {
  position: absolute;
  bottom: 13px;
  top: auto;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--main-color-both);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}
.banner-slider .swiper-button-prev::before,
.banner-slider .swiper-button-next::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
}
.banner-slider .swiper-button-prev {
  left: 66%;
}
.banner-slider .swiper-button-next {
  left: 70%;
}

.banner-slider .swiper-button-prev::after,
.banner-slider .swiper-button-next::after {
  font-size: 12px;
  font-weight: 600;
}
.banner-slider .swiper-slide {
  opacity: 0 !important;
}

.banner-slider .swiper-slide-active {
  opacity: 1 !important;
}
.banner-slider .swiper-slide-active .banner-textside {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-section {
  position: relative;
  background: #fff9f7;
  overflow: hidden;
  padding: 120px 0;
}

.about-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 26px;
  background: #fff;
}

.about-title {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 500;
}

.about-subtitle {
  font-size: 20px;
  line-height: 1.2;
  color: #666;
}

.about-visual {
  position: relative;
  margin: 30px auto 0;
  max-width: 820px;
}
/* ===============================
   ABOUT SECTION CIRCLES
================================ */

.about-section {
  position: relative;
  overflow: hidden;
}

/* Wrapper where circles live */
.about-visual {
  position: relative;
  z-index: 2;
}

/* 3 circles using pseudo-elements */
.about-visual::before,
.about-visual::after,
.about-visual .products::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(170, 90, 110, 0.571);
  pointer-events: none;
}

/* Outer circle */
.about-visual::before {
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Middle circle */
.about-visual::after {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Inner circle */
.about-visual .products::after {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Ensure product stays above circles */
.products {
  position: relative;
  z-index: 3;
}

.about-visual div {
  display: flex;
  position: relative;
  justify-content: center;
}
.products {
  position: relative;
  max-width: 100%;
  z-index: 2;
}

/* PLUS */
.marker {
  position: absolute;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: #9b3d55;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  white-space: nowrap;
  overflow: hidden;
}

/* Hover shape */
.marker:hover {
  width: 190px;
  border-radius: 999px;
  color: transparent; /* hides + */
}

/* Text */
.marker::after {
  content: "Оставить заявку";
  position: absolute;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}

/* Show text */
.marker:hover::after {
  opacity: 1;
}

.marker-top {
  top: 0;
  left: 23%;
}

.marker-bottom {
  bottom: 0;
  right: 23%;
}

/* CLIENT */
.about-client {
  max-width: 500px;
  margin-left: auto;
  margin-top: -7px;
  font-size: 20px;
  line-height: 1.6;
  text-align: right;
}

/* GLOBAL DECOR */
.decor {
  position: absolute;
  z-index: 1;
}

.decor-left {
  left: -103px;
  bottom: 40px;
  width: 360px;
  transform: rotate(73deg);
}

.decor-right {
  right: -63px;
  top: 52px;
  width: 300px;
  transform: rotate(-35deg);
}
.advantages {
  position: relative;
  background: #fff9f7;
  overflow: hidden;
  padding: 120px 0 !important;
}
.advantages > img {
  position: absolute;
  top: 2%;
  right: -7%;
  z-index: 3;
  width: 300px;
  height: 350px;
  object-fit: contain;
  transform: rotate(-44deg);
}

.advantages-head {
  margin-bottom: 40px;
}

.advantages-chip {
  padding: 8px 18px;
  border: 1px solid #9b3d55;
  border-radius: 999px;
  font-size: 14px;
  color: #333;
  background: #fff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Cards */
.adv-card {
  border-radius: var(--br);
  padding: 32px;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.adv-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  font-weight: 600;
}

.adv-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.adv-card .marker-top {
  top: 10px;
  right: 30px;
  left: inherit;
}
.adv-card.adv-dark .marker {
  background: #fff !important;
  color: var(--main-color-both);
}
.adv-card.adv-dark .marker:hover {
  color: transparent;
}
.adv-card.adv-card.adv-dark .marker::after {
  color: var(--main-color-both);
}
/* Dark gradient cards */
.adv-dark {
  grid-column: span 6;
  color: #fff;
  background: linear-gradient(135deg, #b15a63, #6f1226);
}

/* Outline cards */
.adv-outline {
  grid-column: span 6;
  border: 1px solid #9b3d55;
  background: #fff;
}

/* Plus button */
.adv-plus {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  color: var(--main-color-both);
}

/* Images */
.adv-image {
  grid-column: span 6;
  border-radius: 22px;
  overflow: hidden;
  z-index: 6;
}

.adv-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Layout tweaks to match screenshot */
.advantages-grid > :nth-child(1) {
  grid-column: 1 / 7;
}
.advantages-grid > :nth-child(2) {
  grid-column: 7 / 13;
}
.advantages-grid > :nth-child(3) {
  grid-column: 1 / 9;
}
.advantages-grid > :nth-child(4) {
  grid-column: 9 / 13;
}
.advantages-grid > :nth-child(5) {
  grid-column: 1 / 5;
}
.advantages-grid > :nth-child(6) {
  grid-column: 5 / 13;
}

.reviews-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--main-color-dark);
  border-radius: 18px;
  padding: 20px;
  min-height: 200px;
}
.testimonials-swiper .swiper-wrapper {
  padding: 10px 0;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--main-color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.review-head strong {
  display: block;
  font-size: 14px;
}

.review-head span {
  font-size: 12px;
  color: #777;
}

.stars {
  margin-left: auto;
  color: var(--main-color-dark);
  font-size: 25px;
  align-self: flex-start;
}

.review-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.reviews-action {
  margin-top: 40px;
  text-align: center;
}

.reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #9b3d55;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
}

.reviews-btn span {
  text-decoration: underline;
}
.product-card {
  background: #fff;
  border: 1px solid var(--main-color-dark);
  border-radius: var(--br);
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}
.product-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.all_posts {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
  border: 1px solid var(--clr);
}

.all_posts_icon_wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.all_posts:hover {
  background-color: #000;
}

.all_posts:hover .all_posts_icon_wrapper {
  color: #000;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.all_posts:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.all_posts:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

:is(footer, .contact_wrapper) .socialContainer {
  border-radius: 12px;
}

.adv .banner-content {
  padding-top: 0;
}
.adv .banner-textside {
  color: #000;
}
.adv .banner-textside h3 {
  font-size: 31px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 26px;
}
.adv .banner-textside {
  max-width: inherit;
}
.adv .banner-content {
  gap: 40px;
}
.adv .descs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.adv {
  counter-reset: advCounter;
}

.adv .banner-desc {
  position: relative;
  border-color: var(--main-color-both);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  counter-increment: advCounter;
}

/* dairə + rəqəm */
.adv .banner-desc::before {
  content: counter(advCounter, decimal-leading-zero);
  position: absolute;
  right: 2%;
  top: 3%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--main-color-both);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color-both);
}
.adv .banner-desc h4 {
  font-size: 20px;
  max-width: 90%;
  color: var(--main-color-both);
}

.adv .banner-desc p {
  opacity: 1;
}

.product-badge {
  align-self: flex-start;
  background: var(--main-color-both);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-badge {
  background: #883441;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 30px;
  align-self: flex-start;
  margin-bottom: 15px;
}

.product-image {
  margin-bottom: 20px;
}

.product-image-swiper {
  width: 100%;
  height: 200px;
}

.product-image-swiper img {
  width: 100%;
  height: 90%;
  object-fit: contain;
}

.product-image .swiper-pagination {
  bottom: 0 !important;
}

.product-image .swiper-pagination-bullet {
  background: #883441;
  opacity: 0.4;
}

.product-image .swiper-pagination-bullet-active {
  opacity: 1;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: auto;
}

.products-swiper {
  padding-bottom: 20px;
}
.cta-footer {
  background: linear-gradient(135deg, #7c1f2f, #a94a54);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.onfooter .banner-desc {
  max-width: 90%;
}
.onfooter .banner-content {
  padding-top: 0;
  padding: 60px;
  border-radius: var(--br);
  background: linear-gradient(
    45deg,
    #322d2d,
    var(--main-color-dark),
    var(--main-color-both),
    var(--main-color)
  );
}
.onfooter img {
  height: 430px;
}
/* ROOT */
.onfooter .banner-content {
  display: grid;
  grid-template-columns: 2fr 1fr !important;
  align-items: center;
}

/* LEFT SIDE */
.onfooter .banner-textside {
  color: #fff;
}

/* REMOVE TOP LABEL */
.onfooter .banner-textside > span {
  display: none;
}

/* MAIN TITLE */
.onfooter .banner-textside h1 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}
.onfooter .banner-textside p {
  font-size: 16px;
  line-height: 1.2;
  max-width: 80%;
}

/* DESCRIPTION BLOCK → CONTACT GRID */
.onfooter .banner-desc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin-top: 26px;
}

/* HIDE ORIGINAL ICON TEXT */
.onfooter .banner-desc a {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.onfooter .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ICON SIZE */
.onfooter .icon-circle svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* CONTACT ITEM LAYOUT */
.onfooter .banner-desc > div,
.onfooter .banner-desc > p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* CTA BUTTONS (REUSED LINKS) */
.onfooter .banner-desc a.iconcircle {
  margin-right: 0;
}

/* BUTTON ROW (FAKE BUTTONS USING <p>) */
.onfooter .banner-textside::after {
  content: "";
  display: block;
  margin-top: 26px;
}

/* PRICE / REQUEST BUTTON STYLE */
.onfooter .banner-textside .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #333;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
}

.onfooter .banner-imgside img,
.adv .banner-imgside img {
  width: 100%;
  border-radius: 18px;
  display: block;
}
.onfooter .banner-imgside,
.adv .banner-imgside {
  position: relative;
}
.onfooter .marker-top,
.adv .marker-top {
  bottom: 10px;
  top: inherit;
  left: 10px;
}
.onfooter .banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.onfooter .footer-btn {
  background: #ffffff;
  color: #2b2b2b;
  border-radius: var(--br);
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: 1px solid #fff;
  gap: 8px;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.onfooter .footer-btn::after {
  content: "✦";
  font-size: 15px;
  opacity: 0.9;
}

.onfooter .footer-btn:hover {
  background-color: transparent;
  color: #fff;
}
#map {
  height: 400px;
  width: 100%;
}
#map {
  border-radius: var(--br);
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.step-number {
  font-size: 36px;
  font-weight: 700;
  color: rgba(59, 130, 246, 0.15);
  position: absolute;
  top: 20px;
  right: 24px;
}

.step-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.step-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}
.scheme--premium .section-title {
  margin-bottom: 60px;
}
.scheme--premium {
  position: relative;
  counter-reset: scheme;
  overflow: hidden;
}

/* head */
.scheme-head {
  max-width: 720px;
  margin-bottom: 80px;
}

.scheme-lead {
  font-size: 18px;
  color: #666;
  margin-top: 16px;
}

/* layout */
.scheme-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

/* glowing spine */
.scheme-steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(170, 90, 110, 0.35),
    transparent
  );
}

/* step */
.scheme-step {
  position: relative;
  padding: 50px 32px 36px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--br);
  border: 1px solid var(--main-color-both);
  backdrop-filter: blur(6px);
  counter-increment: scheme;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* number badge (premium ring) */
.scheme-step::before {
  content: counter(scheme, decimal-leading-zero);
  position: absolute;
  top: -22px;
  left: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--main-color-both);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px rgba(170, 90, 110, 0.12),
    0 10px 30px rgba(170, 90, 110, 0.25);
}

/* title */
.scheme-step h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

/* text */
.scheme-step p {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}

.footer-cta img {
  width: 230px;
  height: auto;
  object-fit: contain;
}
.footer-cta img {
  filter: brightness(0) invert(1);
}

.footer-cta .icons svg path {
  fill: #fff;
}
.icons svg {
  width: 16px;
  height: 16px;
}

.icons svg path {
  fill: #3b3c3d;
}
.icons a {
  padding: 8px;
  border: 1px solid #e4e8edaf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--br);
  transition: 0.4s ease;
}

.footer-cta div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer {
  padding: 60px 0 20px 0;
  border-radius: var(--br);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}

.footer-col a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--main-color-both);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-top: 20px;
}
.footer-bottom > a:hover {
  color: var(--main-color-both);
}
.footer-bottom > a {
  transition: 0.4s ease;
}
.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-up {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--main-color-dark);
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-up:hover {
  transform: translateY(-2px);
}

.footer-bottom p {
  font-size: 14px;
  color: #444;
}
@media (max-width: 1200px) {
  .advantages > img {
    position: absolute;
    top: 2%;
    right: -6%;
    z-index: 3;
    width: 154px;
    height: 350px;
    object-fit: contain;
    transform: rotate(-44deg);
  }
  .header-top button {
    position: relative;
    padding: 10px 28px;
    background: var(--main-color);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  }
  nav {
    gap: 10px;
  }
  .header-top > p {
    font-size: 15px;
  }
  .banner-textside h1 {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .adv .banner-content {
    gap: 20px;
  }
  .adv .banner-desc h4 {
    font-size: 19px;
    max-width: 85%;
    color: var(--main-color-both);
  }
  .adv .banner-textside h3 {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 26px;
  }
  .advantages > img {
    position: absolute;
    top: 6%;
    right: -6%;
    z-index: 3;
    width: 128px;
    height: 350px;
    object-fit: contain;
    transform: rotate(-44deg);
  }
  .section-title {
    font-size: 30px;
  }
  .about-subtitle {
    max-width: 500px;
  }
  .decor-right {
    right: -63px;
    top: 52px;
    width: 250px;
    transform: rotate(-35deg);
  }
  .about-title {
    font-size: 39px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 500;
  }
  .decor-left {
    left: -103px;
    bottom: 40px;
    width: 270px;
    transform: rotate(73deg);
  }
  .about-client {
    max-width: 500px;
    margin-left: auto;
    margin-top: 3px;
    font-size: 20px;
    line-height: 1.6;
    text-align: right;
  }

  .banner-content {
    padding-top: 180px;
  }
  .banner-desc {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 12px;
    border: 2px solid #fff;
    border-radius: var(--br);
    max-width: 520px;
  }
  .banner-textside h1 {
    font-size: 31px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 40px;
  }
  .banner-imgside img {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: var(--br);
    object-fit: cover;
  }
  .header-bottom p {
    display: none;
  }
  nav,
  .header-top button {
    display: none;
  }
  #open_menu {
    display: flex;
    margin-left: 10px;
  }
  .iconsheader {
    align-items: center;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  footer .location {
    display: none !important;
  }
  .scheme-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .scheme-steps::before {
    display: none;
  }

  .scheme-step {
    padding-left: 96px;
  }

  .scheme-step::before {
    left: 24px;
    top: 24px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .onfooter .banner-textside h1 {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
}

.onfooter .banner-buttons {
  flex-direction: column;
}
.onfooter .banner-imgside img{
    width: fit-content;
    border-radius: 18px;
    display: block;
}
.onfooter .banner-buttons .all_posts{
  width: fit-content;
}
.onfooter .banner-desc{
  grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
  .onfooter .banner-content{
    grid-template-columns: 1fr !important;
    padding: 20px;
  }
  .onfooter .banner-textside h1 {
        font-size: 21px;
        line-height: 1.15;
        font-weight: 500;
        margin-bottom: 12px;
        color: #fff;
    }
    .onfooter .banner-textside p{
      max-width: 100%;
    }
  .onfooter .banner-imgside img{
    width: 100%;
  }
  .adv .descs{
    grid-template-columns: 1fr;
  }
  .adv .banner-textside h3
 {
        font-size: 19px;}
  .advantages-grid > :nth-child(1) {
    grid-column: 1 / 12;
  }
  .advantages-grid > :nth-child(2) {
    grid-column: 1 / 12;
  }
  .advantages-grid > :nth-child(3) {
    grid-column: 1 / 12;
  }
  .advantages-grid > :nth-child(4) {
    grid-column: 1 / 12;
  }
  .advantages-grid > :nth-child(5) {
    grid-column: 1 / 12;
  }
  .advantages-grid > :nth-child(6) {
    grid-column: 1 /12;
  }
  .section-title {
    font-size: 22px;
  }
  .advantages > img {
    display: none;
  }
  .advantages {
    padding: 50px 0 !important;
  }
  .adv-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .decor-right {
    right: -63px;
    top: 52px;
    width: 200px;
    transform: rotate(-35deg);
  }
  .about-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 500;
    /* margin-top: 42px; */
    position: relative;
    z-index: 36;
    max-width: 100%;
  }
  .products img {
    width: 284px;
  }
  .about-client {
    font-size: 16px;
    max-width: 280px;
  }
  .decor-left {
    left: -103px;
    bottom: -9px;
    width: 187px;
    transform: rotate(73deg);
  }
  .about-subtitle {
    font-size: 16px;
    line-height: 1.2;
    color: #666;
  }
  .banner-content {
    grid-template-columns: 1fr;
  }
  .banner-textside h1 {
    font-size: 23px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 30px;
  }
  .banner-desc {
    flex-direction: column;max-width: 100% !important;
  }
  .banner-imgside img {
    height: 250px;
  }
  .header-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 6px;
  }
  .header-bottom img {
    width: 180px;
    object-fit: cover;
  }
  .header-bottom div a {
    background-color: var(--main-color);
    height: 35px;
    padding: 0 20px;
    border-radius: var(--br);
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: bold;
    border: 1px solid var(--main-color);
    transition: 0.4s ease;
    font-size: 13px;
  }
  .iconsheader a {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-cta .icons {
    display: none;
  }
  .footer-cta {
    flex-direction: column;
    gap: 4px;
    padding: 9px 30px;
    height: 110px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}
