@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --green: #2e7d32;
  --br: 8px;
}
* {
  font-family: "Montserrat", sans-serif !important;
}
body {
  color: #000;
  background-color: #fff;
}
/* HEADER FIXED STATE */

.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: headerSlide 0.35s ease;
}
.header.scrolled .burger span {
  background: #000;
}
.header.scrolled .nav {
  background: #fff;
  backdrop-filter: none;
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.707);
}
.header.scrolled .nav {
  background: #fff;
  backdrop-filter: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* TEXT COLORS */

.header.scrolled a,
.header.scrolled .phone {
  color: #000;
  font-weight: bold;
}

.header.scrolled .menu a::after {
  background: #000;
}

/* ICON COLORS */

.header.scrolled .icons a,
.contacts-inner .icons a {
  background: var(--green);
}

@keyframes headerSlide {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header {
  position: absolute;
  width: 100%;
  top: 20px;
  z-index: 10;
}

.nav {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
}

.logo {
  font-size: 26px;
  font-weight: 600;
  width: 110px;
}
.logo img {
  object-fit: contain;
  height: 105px;
  /* filter: brightness(0) invert(1); */
}

.menu {
  display: flex;
  gap: 30px;
  list-style: none;
  font-size: 16px;
  opacity: 0.9;
  align-items: center;
}
.menu a {
  position: relative;
  text-decoration: none;
  color: white;
  padding-bottom: 20px;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: hsla(0, 0%, 100%, 0.32);
  transform: translateX(-50%);
  transition: width 0.1s ease;
}

.menu a:hover::after {
  width: 100%;
}

a {
  color: #fff;
}

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

.phone {
  opacity: 0.9;
  font-size: 14px;
}

.icons {
  display: flex;
  gap: 15px;
}

.icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
}
.icons a:hover {
  background-color: hsla(0, 0%, 100%, 0.32);
}
.icons svg {
  width: 18px;
  height: 18px;
}

.btn {
  background: linear-gradient(90deg, #e0a96d, #c7d184);
  border: none;
  padding: 12px 26px;
  border-radius: 25px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  width: fit-content;
}
.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: auto;
}
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay for better text readability */

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.15)
  );
  z-index: 1;
}

/* content */

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

.content h1 {
  font-size: 55px;
  margin-bottom: 20px;
}

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

.slider-pagination {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}

.progress-line {
  flex: 1;
  display: flex;
  gap: 10px;
}

.segment {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.fill {
  height: 100%;
  width: 0%;
  background: white;
  transition: width 5s linear;
}

.counter {
  font-size: 16px;
}
a {
  text-decoration: none;
}
.btn-hero {
  color: #fff;
  width: max-content;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  transition: 0.3s ease;
}
.btn-hero:hover {
  background: hsla(0, 0%, 100%, 0.32) !important;
}
section {
  padding: 60px 0;
}
.index-info .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-info__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 13px;
}
.index-info legend {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
}
.index-info__text {
  line-height: 1.4;
}
.index-info__pic {
  max-width: 600px;
}
.index-info__pic img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 12px;
}
.index-info__container {
  max-width: 50%;
}
.advantages {
  padding: 80px 0;
}

.advantages-swiper {
  overflow: hidden;
}

.advantages-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.advantages-nav {
  display: flex;
  gap: 15px;
}

.advantages-nav svg {
  width: 30px;
  height: 30px;
}

.advantages-prev,
.advantages-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 25px;
  transition: 0.3s;
  color: #fff;
}

.advantages-prev:hover,
.advantages-next:hover {
  background: #bbb;
}

.advantages-prev svg {
  transform: rotate(-180deg);
}

.card {
  position: relative;
  height: 500px;
  border-radius: var(--br);
  overflow: hidden;
}

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

/* base overlay for readability */

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.15)
  );
  z-index: 1;
}

/* title */

.card h3 {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  font-weight: 500;
  color: white;
  font-size: 27px;
  z-index: 2;
}

.card-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
}

/* overlay */

.card-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;

  background: #8e8078;

  clip-path: circle(0% at 90% 90%);
  transition: clip-path 0.6s ease;

  color: white;
  padding: 20px;
  z-index: 4;
}
.card-overlay p {
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2;
}

/* radial hover */

.card:has(.card-btn:hover) .card-overlay {
  clip-path: circle(150% at 90% 90%);
}
.services {
  padding: 60px 0;
}

.escrow-note {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--green);
}

.index-guarantee,
.index-cash-discount {
  padding: 60px 0;
}

.index-feature {
  background: #f4f4f4;
  border-radius: 40px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.index-feature--discount {
  grid-template-columns: 1.1fr 1fr;
}

.index-feature__image {
  border-radius: 28px;
  overflow: hidden;
  height: 420px;
}

.index-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.index-feature__content h2 {
  margin: 0 0 18px 0;
}

.index-feature__content p {
  font-size: 18px;
  line-height: 1.45;
  color: #333;
  margin-bottom: 26px;
  max-width: 560px;
}

.index-feature__content .btn {
  margin-top: 0;
}

@media (max-width: 900px) {
  .index-feature,
  .index-feature--discount {
    grid-template-columns: 1fr;
  }

  .index-feature__image {
    height: 280px;
  }
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 34px;
  font-weight: 600;
}
.advantages .section-title {
  margin-bottom: 40px;
}

.services-btn {
  padding: 16px 28px;
  border: 2px solid var(--green);
  border-radius: 32px;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  transition: 0.3s;
}

.services-btn:hover {
  background: var(--green);
  color: #fff;
}

/* CARD */

.service-card {
  position: relative;
  display: flex;
  height: 420px;
  border-radius: var(--br);
  overflow: hidden;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER ZOOM */

.service-card:hover img {
  transform: scale(1.07);
}

/* OVERLAY */

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.2),
    transparent
  );
}

/* TITLE */

.service-name {
  position: absolute;
  left: 25px;
  bottom: 25px;
  color: white;
  font-size: 22px;
  font-weight: 500;
}
.gallery-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

/* LEFT PAGINATION */

.gallery-pagination {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 30%;
}

.gallery-current,
.gallery-total {
  font-size: 16px;
  font-weight: 500;
}

.gallery-line {
  flex: 1;
  height: 1px;
  background: #ddddddd6;
  position: relative;
}

.gallery-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #333;
  transition: width 0.4s ease;
}

/* RIGHT BUTTONS */

.gallery-nav {
  display: flex;
  gap: 15px;
}
.gallery-nav svg {
  width: 30px;
  height: 30px;
}
.gallery-prev,
.gallery-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 25px;
  transition: 0.3s;
  color: #fff;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #bbb;
}
.gallery-prev svg {
  transform: rotate(-180deg);
}
.news {
  padding: 60px 0;
}

.news-card {
  display: block;
}

.news-image {
  position: relative;
  border-radius: var(--br);
  overflow: hidden;
  margin-bottom: 15px;
}

.news-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

/* overlay */

.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.2),
    transparent
  );
}

/* hover effect */

.news-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

/* title on image */

.news-image-title {
  position: absolute;
  left: 25px;
  bottom: 50%;
  transform: translateY(50%);
  color: white;
  font-size: 26px;
  font-weight: 500;
}

.news-image-title span {
  display: block;
  font-size: 18px;
  opacity: 0.9;
}

/* CONTENT */

.news-date {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #eae3e1;
  border-radius: 4px;
  padding: 0 14px;
  height: 32px;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-name {
  font-size: 24px;
  line-height: 1.3;
  color: #000;
  font-weight: 500;
}
.subscribe-our-mailing .container {
  display: grid;
  grid-template-columns: 55% auto;
  position: relative;
}
.subscribe-our-mailing form {
  grid-column: 1;
  padding: 48px 54px;
  background: #f4f4f4;
}
.h1-semibold {
  color: #252628;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}
.static-form form legend {
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 24px;
  margin-top: 16px;
}
.subscribe-our-mailing form .inputs {
  margin-top: 26px;
}
.subscribe-our-mailing form .inputs label {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
.subscribe-our-mailing form .inputs label legend {
  color: #6d6d6d;
}
.static-form form label legend {
  font-size: 14px;
  line-height: 20px;
}
.subscribe-our-mailing form .inputs label input {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 8px;
  padding: 12px 24px;
  width: 100%;
}
.error-text {
  color: #de4a2a;
  font-size: 12px;
  line-height: 16px;
  margin-left: 16px;
  margin-top: 4px;
  max-height: 0;
  opacity: 0;
  transition: 0.35s;
  visibility: hidden;
}
.error-text {
  color: #de4a2a;
  display: none;
  font-size: 12px !important;
  line-height: 16px !important;
  margin-left: 16px;
  margin-top: 4px;
  max-height: 0;
  opacity: 0;
  padding-left: 0 !important;
  transition: 0.35s;
  visibility: hidden;
}
.subscribe-our-mailing form .inputs label:last-child {
  margin-top: 24px;
}
.subscribe-our-mailing__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.subscribe-our-mailing__checkboxes .checkbox {
  align-items: unset;
  display: flex;
  flex-direction: column;
}
.checkbox {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  position: relative;
  width: 100%;
}
.static-form form label input {
  border: 1px solid transparent;
}
.checkbox__input {
  display: none;
}
.static-form form label div {
  position: relative;
}
.checkbox__text {
  position: relative;
  display: inline;
  font-size: 14px;
  line-height: 20px;
  padding-left: 24px;
  transition: border-color 0.2s ease-in-out;
}
.checkbox__text:before {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  border: 1px solid #252628;
  border-radius: 2px;
  content: "";
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  height: 16px;
  left: 0;
  position: absolute;
  top: 2px;
  transition: 0.15s;
  width: 16px;
}
.checkbox__text a {
  border-bottom: 1px solid;
  color: #000;
}

.subscribe-our-mailing__checkboxes .checkbox {
  align-items: unset;
  display: flex;
  flex-direction: column;
  position: relative;
}
.static-form form .dom-black-button {
  margin-top: 24px;
}
.dom-black-button {
  background: #252628;
  border: 1px solid #252628;
  color: #fff;
}
.dom-black-button,
.dom-primary-button,
.dom-secondary-button {
  border-radius: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 10px 20px;
  transition: 0.3s ease;
  white-space: nowrap;
  outline: none;
  position: relative;
  text-decoration: none;
}
.subscribe-our-mailing picture {
  grid-column: 2;
  -o-object-fit: cover;
  object-fit: cover;
}
.subscribe-our-mailing picture img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
.checkbox__text:before {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  border: 1px solid #252628;
  border-radius: 2px;
  content: "";
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  height: 16px;
  left: 0;
  position: absolute;
  top: 2px;
  transition: 0.15s;
  width: 16px;
}
.dom-black-button:hover {
  background: #fff;
  border: 1px solid #252628;
  color: #252628;
}
.checkbox__input:checked + .checkbox__text:before {
  background-color: #252628;
  border-color: #252628;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4 8L11 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.footer {
  background: #f4f4f4;
  padding: 80px 0 20px 0;
  color: #252628;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1.3fr;
  gap: 40px;
}
/* LOGO */

.footer-logo {
  width: 130px;
  margin-bottom: 40px;
  object-fit: cover;
}

.footer-contact a {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #252628;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-address {
  margin: 40px 0 20px;
  font-size: 16px;
  line-height: 24px;
}

.footer-route-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
}

/* LINKS */

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 32px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #6d6d6d;
  text-decoration: none;
}
.footer-subscribe {
  background: #e7e3e0;
  padding: 36px 40px;
  border-radius: 40px;
  height: fit-content;
  align-self: start;
}

.footer-subscribe h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #252628;
}

/* INPUT */

.subscribe-input {
  position: relative;
  margin-bottom: 18px;
}

.subscribe-input input {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 40px;
  padding: 0 150px 0 22px;
  font-size: 16px;
  background: #f3f1ef;
  outline: none;
}

/* BUTTON */

.subscribe-input button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 26px;
  border: none;
  border-radius: 40px;
  background: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

/* CHECKBOX */

.subscribe-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6d6d6d;
}

.subscribe-check input {
  width: 18px;
  height: 18px;
}

.subscribe-check a {
  color: #5c8b66;
  text-decoration: none;
}
.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 15px 0; /* py-[30px] */
  border-top: 1px solid #e6e6e6; /* border-t border-t-[#E6E6E6] */
}
.footer_bottom p {
  font-size: 15px; /* te
  maxt-[12px] */
  line-height: 17px; /* leading-[17px] */
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-weight: 500; /* font-medium */
  color: #999999; /* text-[#999999] */
}
.footer_bottom a {
  transition: 0.3s ease;
  color: #000;
}
.footer_bottom a:hover {
  color: var(--green);
}
footer {
  margin-top: 60px;
}

.projects {
  padding: 60px 0;
}

.project-card {
  display: block;
  background: #f4f4f4;
  border-radius: var(--br);
  overflow: hidden;
  transition: 0.3s;
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* IMAGE */

.project-bg {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* CONTENT */

.project-content {
  position: absolute;
  left: 24px;
  top: 24px;
  color: #fff;
  z-index: 2;
}

.project-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

.price-m2 {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 20px;
}

/* TAGS */

.project-tags {
  padding: 16px;
  display: flex;
  gap: 10px;
}

.project-tags span {
  background: #e7e3e0;
  color: #000;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
}
.page-hero {
  position: relative;
  height: 480px;
  background-image: url("/assests/img/slide1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

/* overlay */

.page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* content */

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  margin: auto;
}

/* breadcrumb */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  justify-content: center;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.breadcrumb span {
  opacity: 0.8;
}

.breadcrumb .active {
  opacity: 1;
}

/* title */

.page-title {
  font-size: 48px;
  font-weight: 600;
}
.about-texts p {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  max-width: 800px;
}
hr {
  opacity: 0.3;
}

.landscape-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  align-items: stretch;
}

.landscape-title {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  max-width: 400px;
}

.landscape-text {
  font-size: 14px;
  line-height: 26px;
  color: #444;
}

.landscape-image img {
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
  border-radius: var(--br);
}

.about-title {
  font-size: 45px;
  line-height: 64px;
  font-weight: 500;
  margin-bottom: 50px;
  max-width: 680px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px;
  align-items: start;
}

.about-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 760px;
  border-radius: var(--br);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.about-item h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-item p {
  font-size: 15px;
  line-height: 1.3;
  color: #444;
  max-width: 460px;
}

.about-values .btn {
  margin-top: 20px;
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid var(--green);
  font-size: 16px;
  transition: 0.3s ease;
}
.about-values .btn:hover {
  background: #fff;
  color: var(--green) !important;
}

.excursion .btn {
  margin-top: 0;
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid var(--green);
  font-size: 16px;
  transition: 0.3s ease;
}

.excursion .btn:hover {
  background: #fff;
  color: var(--green) !important;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-back {
  display: inline-block;
  margin-bottom: 20px;
  color: #777;
  text-decoration: none;
  font-size: 14px;
}

.news-title {
  font-size: 45px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 700px;
}

.newsinner-date {
  display: inline-block;
  background: #eaeaea;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 50px;
}

.newsinner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.news-content {
  max-width: 560px;
  font-size: 18px;
  line-height: 30px;
  color: #333;
}

.news-content p {
  margin-bottom: 24px;
}

.news-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.news-content li {
  margin-bottom: 10px;
}

.news-sub {
  font-weight: 500;
  margin-top: 20px;
}

.newsinner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--br);
}
ul li {
  list-style: disc;
}
header ul li {
  list-style: none;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 20px;
  align-items: start;
}

/* TITLE */

.contacts-title {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* BLOCKS */

.contact-block {
  margin-bottom: 28px;
}

.contact-block span {
  display: block;
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 6px;
}

.contact-block p {
  font-size: 18px;
  margin: 0;
}
.contact-block a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  margin: 0;
}
/* BUTTON */

.route-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  border-radius: 30px;
  background: #e5e1df;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.map {
  width: 100%;
  height: 550px;
  border-radius: var(--br);
}
#map {
  height: 550px;
  border-radius: var(--br);
}
.contacts-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts-inner .services-btn {
  width: fit-content;
}
.contacts-inner .icons a:hover {
  background: var(--green);
}

.excursion-image {
  margin-bottom: 40px;
}

.excursion-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: var(--br);
}

.excursion-content {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: flex-start;
  gap: 40px;
}

/* title */

.excursion-title {
  font-size: 26px;
  font-weight: 500;
}
.contact-btn {
  color: #fff !important;
}

/* text */

.excursion-text {
  font-size: 18px;
  line-height: 1.3;
  max-width: 700px;
  color: #333;
}

.projects-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.static-text li::marker {
  color: var(--green);
}
.static-text li::marker {
  color: var(--green);
}

:is(footer, .contact_wrapper) .socialContainer {
  border-radius: 12px;
}

.Tabs_button__F1b7d:focus-visible {
  color: #121214;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :first-child {
  color: #4f4e57;
  background-color: #dae3e3;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :nth-child(2) {
  color: var(--color-green);
  background-color: #eaedf6;
}

@supports not selector(:focus-visible) {
}

.switch:has(.circle:checked) {
  background: var(--color-offwhite);
}

.switch:has(.circle:checked) > .sun {
  opacity: 1;
}

.switch:has(.circle:checked) > .moon {
  opacity: 0;
}
.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}
/* Right Card - Contact Center */

.text-styles ul li::marker {
  color: #92b33d;
}

.page-catalog2-main-list-item-ava-list:focus-visible {
  outline: none;
}

.quote-form-submit:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.phone-input:has(input:focus) {
  border-color: #006525;
}
.news-detail {
  padding: 60px 0;
  position: relative;
}

.news-detail__container {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
}

/* TITLE */

.news-detail__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}
.news-detail__content-area.servicesinner {
  border-top: 1px solid #e6e6e6;
  padding-top: 40px;
}
/* CONTENT */

.news-detail__content-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-detail__content-area p {
  font-size: 16px;
  line-height: 24px;
}

/* BUTTON */

.news-detail__btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  border: 2px solid var(--green);
  transition: 0.4s ease;
}
.news-detail__btn:hover {
  background-color: #fff;
  color: var(--green);
}
/* IMAGE */

/* NAVIGATION */

.news-navigation {
  border-top: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 40px;
}
.contacts-icons .homesinnericons{
  margin-top: 0;
}
.news-navigation a{
  color: #333 !important;
}
form a{
  color: #333 !important;
  text-decoration: underline;
}
.news-navigation__container {
  display: flex;
  flex-direction: column;
}
.news-navigation__container p {
  font-size: 12px;
  opacity: 0.7;
}
.news-navigation__link {
  font-weight: 500;
  margin-bottom: 10px;
}

.news-navigation__link_right {
  text-align: right;
}

/* SUBSCRIBE */

.news-subscribe {
  background: #f4f4f4;
  padding: 40px;
  border-radius: 10px;
}

.news-subscribe__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 22px;
}

.news-subscribe__subtitle {
  margin-bottom: 24px;
  font-size: 16px;
  opacity: 0.7;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #6d6d6d;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 14px 24px;
  border-radius: 40px;
  border: 1px solid transparent;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
  font-size: 13px;
}
.news-subscribe__btn {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  font-weight: bold;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.gallery-grid img {
  width: 100%;
  border-radius: var(--br);
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.projects-inner .project-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;

  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 20px 16px;

  width: 100%;
  background: #fff;
}

.open-premium-modal {
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  background: linear-gradient(90deg, #d9a766 0%, #c8d07c 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.open-premium-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

body.modal-open {
  overflow: hidden;
}

.premium-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.premium-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 35%),
    rgba(17, 17, 17, 0.48);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.premium-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, calc(100% - 32px));
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98),
    rgba(245, 242, 238, 0.96)
  );
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translate(-50%, calc(-50% + 40px)) scale(0.92);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.premium-modal__glow {
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(199, 208, 124, 0.32),
    transparent 70%
  );
  pointer-events: none;
}

.premium-modal__content {
  position: relative;
  z-index: 2;
  padding: 44px;
}

.premium-modal__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #7e8b5c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-modal__title {
  margin: 0 0 14px;
  color: #1f1f1f;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 600;
  max-width: 520px;
}

.premium-modal__text {
  margin: 0 0 28px;
  color: #5e5e5e;
  font-size: 18px;
  line-height: 1.55;
  max-width: 520px;
}

.premium-modal__form {
  display: grid;
  gap: 14px;
}

.premium-modal__field input {
  width: 100%;
  height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #1f1f1f;
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.premium-modal__field input:focus {
  border-color: rgba(126, 139, 92, 0.45);
  box-shadow: 0 0 0 4px rgba(126, 139, 92, 0.12);
  transform: translateY(-1px);
}

.premium-modal__actions {
  margin-top: 6px;
}

.premium-modal__submit {
  min-width: 210px;
  height: 58px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(90deg, #d9a766 0%, #c8d07c 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.premium-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(31, 31, 31, 0.05);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.premium-modal__close:hover {
  background: rgba(31, 31, 31, 0.1);
  transform: rotate(90deg);
}

.premium-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #1f1f1f;
  border-radius: 999px;
}

.premium-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.premium-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ACTIVE */

.premium-modal.is-active {
  pointer-events: auto;
}

.premium-modal.is-active .premium-modal__backdrop {
  opacity: 1;
}

.premium-modal.is-active .premium-modal__dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.premium-modal.is-closing {
  pointer-events: none;
}

.premium-modal.is-closing .premium-modal__backdrop {
  opacity: 0;
}

.premium-modal.is-closing .premium-modal__dialog {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 28px)) scale(0.96);
}
/* BURGER */

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 18px;
  height: 2px;
  background: #fff !important;
  transition: 0.4s;
}

/* ACTIVE BURGER */

.burger.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.burger.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* MOBILE MENU */

/* =========================
   MOBILE MENU WRAPPER
========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

/* =========================
   OVERLAY
========================= */

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: 0.4s ease;
}

/* =========================
   PANEL (LEFT SLIDE)
========================= */

.mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 100%;
  background: #fff;

  transform: translateX(-100%);
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  display: flex;
  flex-direction: column;
  padding: 24px;

  border-radius: 0 var(--br) var(--br) 0;
}

/* =========================
   TOP (CLOSE BUTTON)
========================= */

.mobile-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 50px;
}

/* CLOSE BUTTON */

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f3f3;
  border: none;
  position: relative;
  cursor: pointer;
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #111;
}

.mobile-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* =========================
   MENU
========================= */

.mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-list li {
  list-style: none;
}

.mobile-list a {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  text-decoration: none;

  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateX(-20px);
  transition: 0.4s;
}

/* hover effect */

.mobile-list a:hover {
  color: var(--green);
  transform: translateX(6px);
}

/* =========================
   BOTTOM
========================= */

.mobile-bottom {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* phone */

.mobile-bottom a {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* icons */

.mobile-bottom .icons {
  display: flex;
  gap: 10px;
}

.mobile-bottom .icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* button */

.mobile-bottom .btn {
  margin-top: 5px;
}

/* =========================
   ACTIVE STATE
========================= */

.mobile-menu.active {
  pointer-events: auto;
}

.mobile-menu.active .mobile-overlay {
  opacity: 1;
}

.mobile-menu.active .mobile-panel {
  transform: translateX(0);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.15);
}

/* =========================
   STAGGER ANIMATION
========================= */

.mobile-menu.active .mobile-list a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .mobile-list li:nth-child(1) a {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-list li:nth-child(2) a {
  transition-delay: 0.15s;
}
.mobile-menu.active .mobile-list li:nth-child(3) a {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-list li:nth-child(4) a {
  transition-delay: 0.25s;
}
.mobile-menu.active .mobile-list li:nth-child(5) a {
  transition-delay: 0.3s;
}

/* =========================
   BURGER
========================= */

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
}
.desktop {
  display: block;
}
.mobile {
  display: none;
}
.project-inner {
  padding: 40px 0;
}

.project-inner__grid {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 40px;
}

/* LEFT */

.project-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image {
  display: block;
  border-radius: var(--br);
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.4s;
  cursor: pointer;
}

.main-image:hover img {
  transform: scale(1.03);
}

/* THUMBS */

.thumbs-slider .thumb {
  border-radius: var(--br);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumbs-slider .thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.thumb.active {
  border-color: var(--green);
}

/* RIGHT */

.project-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.info-row span {
  color: #777;
}

.info-row ul {
  padding-left: 15px;
}

.info-row li {
  margin-bottom: 6px;
}

/* BUTTONS */

.btn {
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn.green {
  background: #3aa74f;
  color: #fff;
}

.btn.outline {
  background: #fff;
  border: 2px solid #3aa74f;
  color: #111;
}
.homesinnericons {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 40px;
}
.homesinnericons img {
  width: 43px;
  height: 43px;
  border-radius: var(--br);
}
.project-note {
  width: 100%;
  margin-top: 20px;

  background: #ffffff;
  border-radius: var(--br);

  padding: 20px 24px;

  font-size: 16px;
  line-height: 1.7;
  color: #1f1f1f; /* 🔥 daha tünd */

  border: 1px solid rgba(0,0,0,0.06); /* 🔥 clarity verir */

  box-shadow:
    0 2px 6px rgba(0,0,0,0.04),
    0 10px 25px rgba(0,0,0,0.06); /* 🔥 layered shadow */
}
.project-inner .services-btn{
  border-radius: var(--br);
  width: fit-content;
}
.services-btn-2{
  padding: 16px 28px;
  border: 2px solid var(--green);
  border-radius: var(--br);
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  width: fit-content;
  transition: 0.3s;
  background-color: var(--green)
}

.services-btn-2:hover {
  background: #fff;
  color: var(--green) !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .menu,
  .right {
    display: none;
  }

  .burger {
    display: flex;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .project-gallery{
    margin-bottom: 40px;
  }
  .newsinner-grid {
    gap: 23px;
  }
  .project-inner__grid{
    display: block !important;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .about-title {
    font-size: 39px;
    line-height: 64px;
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 680px;
  }
  .landscape-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .h1-semibold {
    color: #252628;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.2;
  }
  .subscribe-our-mailing form {
    padding: 45px 30px;
  }

  .index-info__container {
    max-width: 60%;
  }
  .news-detail__container {
    grid-template-columns: 1fr;
  }
  .index-info .container {
    gap: 20px;
  }
  .content h1 {
    font-size: 49px;
    margin-bottom: 20px;
  }
  .content p {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .projects-grid,
  .services-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contacts-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 10px;
    align-items: start;
  }
  .excursion-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .main-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
    cursor: pointer;
}
.thumbs-slider .thumb img{
  height: 100%;
}
  .footer_bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .premium-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(680px, calc(100% - 9px));
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(245, 242, 238, 0.96)
    );
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.22),
      0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translate(-50%, calc(-50% + 40px)) scale(0.92);
    opacity: 0;
    transition:
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease;
  }
  .news-title {
    font-size: 29px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 700px;
  }
  .newsinner-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .excursion-image.mobile {
    margin-bottom: 0;
    margin-top: 40px;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid,
  .services-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .project-content {
    position: absolute;
    left: 15px;
    top: 24px;
    color: #fff;
    z-index: 2;
    /* max-width: 95%; */
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .page-title {
    font-size: 26px;
    font-weight: 600;
  }
  .about-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 450px;
    border-radius: var(--br);
  }
  .about-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 680px;
  }
  .about-texts p {
    font-size: 23px;
  }
  .news-date {
    margin-bottom: 20px;
  }
  .mobile-panel {
    width: 330px;
  }
  .news-name {
    font-size: 21px;
    line-height: 1.2;
  }
  .footer-subscribe {
    background: #e7e3e0;
    padding: 36px 20px;
    border-radius: 40px;
    height: fit-content;
    align-self: start;
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 60px;
    row-gap: 32px;
  }
  .subscribe-our-mailing picture {
    grid-column: inherit;
  }
  .index-info .container {
    flex-direction: column;
  }
  .index-info__container {
    max-width: 100%;
  }
  .subscribe-our-mailing .container {
    grid-template-columns: 1fr;
  }
  .index-info__title {
    font-size: 25px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 13px;
  }
  .advantages-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-direction: column;
  }
  .gallery-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
    flex-direction: column;
    gap: 15px;
  }
  .gallery-pagination {
    width: 100%;
  }
  .advantages .section-title {
    margin-bottom: 20px;
  }
  .card h3 {
    font-size: 21px;
  }
  .services-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-direction: column;
    gap: 20px;
  }
  .content {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translate(0, -50%);
    color: white;
    text-align: center;
    z-index: 2;
  }
  .content h1 {
    font-size: 37px;
    margin-bottom: 20px;
  }
  .content p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .news-navigation {
    display: none;
  }
  .news-subscribe {
    background: #f4f4f4;
    padding: 40px 20px;
    border-radius: 10px;
  }
  .news-detail__title {
    font-size: 26px;
  }
  .premium-modal__content {
    padding: 28px 20px 24px;
  }

  .premium-modal__title {
    font-size: 22px;
  }
  .premium-modal__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #7e8b5c;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 40px;
  }

  .premium-modal__text {
    font-size: 16px;
  }

  .premium-modal__submit {
    width: 100%;
  }
}
.index-feature--discount {
  background:
    linear-gradient(130deg, rgba(0, 0, 0, 0.72), rgba(19, 53, 37, 0.86)),
    #1b1f1d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.index-feature--discount .index-feature__image {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.index-feature--discount .index-feature__content .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.index-feature--discount .index-feature__content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.index-feature--discount .btn {
  background: linear-gradient(90deg, #e0a96d, #c7d184);
  color: #1a1a1a;
  font-weight: 600;
}

.index-feature--discount .btn:hover {
  background: #fff;
  color: #111 !important;
}

@media (max-width: 900px) {
  .index-feature--discount {
    padding: 26px;
  }
}
