@font-face {
  font-family: 'GraphikLCG';
  src: url('../font/GraphikLCG-Regular.woff2') format('woff2'),
       url('../font/GraphikLCG-Regular.woff') format('woff'),
       url('../font/GraphikLCG-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'GraphikLCG';
  src: url('../font/GraphikLCG-RegularItalic.woff2') format('woff2'),
       url('../font/GraphikLCG-RegularItalic.woff') format('woff'),
       url('../font/GraphikLCG-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: 'GraphikLCG', sans-serif;
}

button,
input,
textarea,
select {
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  width: 100%;
  overflow: hidden auto;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F6F6F6;
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.70vw 5vw;
  position: relative;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.67vw;
}

.catalog-btn {
  display: flex;
  align-items: center;
  gap: 0.56vw;
  font-size: 0.90vw;
  color: #323232;
  padding: 0.56vw 1.11vw;
  background: #FFFFFF;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 500;
  border: 1px solid #F6F4F5;
}

.catalog-btn:hover {
  background: #EDEDED;
}

.catalog-btn.active {
  background: #FFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.catalog-btn .hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.11vw;
  height: 1.11vw;
  position: relative;
}

.catalog-btn .hamburger-icon span {
  display: block;
  width: 100%;
  height: 0.12vw;
  background: #323232;
  border-radius: 0.07vw;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.catalog-btn .hamburger-icon span:nth-child(1) {
  top: 0.21vw;
}

.catalog-btn .hamburger-icon span:nth-child(2) {
  top: 0.50vw;
}

.catalog-btn .hamburger-icon span:nth-child(3) {
  top: 0.79vw;
}

.catalog-btn.active .hamburger-icon span:nth-child(1) {
  top: 0.50vw;
  transform: rotate(45deg);
}

.catalog-btn.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.catalog-btn.active .hamburger-icon span:nth-child(3) {
  top: 0.50vw;
  transform: rotate(-45deg);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.50vw;
  margin-left: 0.5vw;
  padding-left: 1.5vw;
}

.header-nav a {
  font-size: 0.90vw;
  color: #323232;
  transition: color 0.2s;
  font-weight: 400;
}

.header-nav a:hover {
  color: #E8621A;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 3vw;
}

.header-location {
  display: flex;
  align-items: center;
  gap: 0.42vw;
}

.header-location .pin-icon {
  width: 1.2vw;
  height: auto;
}

.header-location-text {
  display: flex;
  flex-direction: column;
}

.header-location-text span:first-child {
  font-size: 0.9vw;
  color: #323232;
}

.header-location-text span:last-child {
  font-size: 0.62vw;
  color: #535353;
}

.header-phone {
  display: flex;
  align-items: flex-start;
  gap: 0.42vw;
}

.header-phone .phone-icon {
  width: 0.90vw;
  height: auto;
  margin-top: 0.2vw;
}

.header-phone-text {
  display: flex;
  flex-direction: column;
}

.header-phone-text a:first-child {
  font-size: 1.1vw;
  color: #323232;
  font-weight: 400;
}

.header-phone-text a:last-child {
  font-size: 0.62vw;
  color: #535353;
  text-decoration: underline;
  text-align: center;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.42vw;
}

.header-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.header-socials a:hover {
  opacity: 0.7;
}

.header-socials a svg,
.header-socials a img {
  width: 2.1vw;
  height: 2.1vw;
  border-radius: 50%;
  object-fit: cover;
}

.monuments-load-more-wrap {
  margin: 5vw auto;
  justify-self: center;
}

.monuments-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5vw;
  background: #333333; /* Solid dark background */
  color: #fff;
  font-size: 0.75vw;
  text-transform: uppercase;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.catalog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 90;
  display: none;
}

.catalog-overlay.open {
  display: block;
}

.catalog-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #F6F6F6;
  border-top: 0.07vw solid #E8E8E8;
  display: none;
  z-index: 100;
  padding: 1.50vw 2.08vw 2.50vw;
  box-shadow: 0 0.28vw 1.11vw rgba(0, 0, 0, 0.06);
}

.catalog-menu.open {
  display: flex;
}

.mobile-menu-close {
  display: none;
}

.mobile-nav-links {
  display: none;
}

.catalog-categories {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  min-width: 13.50vw;
  margin-right: 6.08vw;
  flex-shrink: 0;
}

.catalog-category-btn {
  display: flex;
  align-items: center;
  padding: 0.70vw 1.00vw;
  font-size: 0.90vw;
  color: #323232;
  color: #323232;
  border-radius: 8px;
  background: transparent;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
  font-weight: 500;
  background: #FFFBFD;
}

.catalog-category-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.catalog-category-btn.active {
  background: #E2E2E2;
  color: #323232;
  font-weight: 400;
  box-shadow: 0 0.14vw 0.56vw rgba(0,0,0,0.03);
}

.catalog-subcategories {
  display: none;
  flex: 1;
  gap: 3vw;
}

.catalog-subcategories.active {
  display: flex;
}

.catalog-column {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  min-width: 13.50vw;
}

.catalog-group {
  display: flex;
  flex-direction: column;
}

.catalog-group-title {
  font-size: 0.95vw;
  font-weight: 500;
  color: #323232;
  margin-bottom: 0.70vw;
}

.catalog-group-items {
  display: flex;
  flex-direction: column;
  gap: 0.45vw;
}

.catalog-group-items a {
  font-size: 0.76vw;
  color: #808080;
  transition: color 0.2s;
  line-height: 1.4;
}

.catalog-group-items a:hover {
  color: #E8621A;
}

.catalog-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.28vw;
  font-size: 0.76vw;
  color: #E8621A;
  margin-top: 0.70vw;
  background: none;
  font-weight: 500;
}

.catalog-toggle-btn svg {
  width: 0.60vw;
  height: 0.60vw;
  transition: transform 0.3s;
}

.catalog-toggle-btn.open svg {
    transform: rotate(180deg);
}

.catalog-hidden-items {
  display: none;
  flex-direction: column;
  gap: 0.45vw;
  margin-top: 0.45vw;
}

.catalog-hidden-items a {
  font-size: 0.76vw;
  font-family: 'GraphikLCG', sans-serif;
  font-weight: 400;
  color: #808080;
  transition: color 0.2s;
  line-height: 1.4;
}

.catalog-hidden-items a:hover {
  color: #E8621A;
}

.catalog-hidden-items.show {
  display: flex;
}

.catalog-static-group {
  display: flex;
  flex-direction: column;
  gap: 0.35vw;
  margin-bottom: 0.5vw;
}

.catalog-static-header {
  font-size: 0.9vw;
  font-weight: 500;
  color: #323232;
  padding: 0.70vw 1.00vw;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 0.35vw;
  box-shadow: 0 0.14vw 0.28vw rgba(0,0,0,0.02);
}

.catalog-static-items {
  display: flex;
  flex-direction: column;
  gap: 0.35vw;
  padding-left: 1.00vw;
}

.catalog-static-items a {
  font-size: 0.76vw;
  color: #808080;
  transition: color 0.2s;
  line-height: 1.4;
}

.catalog-static-items a:hover {
  color: #E8621A;
}


/* CONTRACT SECTION */
.contract-section {
  width: 100%;
  padding: 0vw 5vw;
  background-color: #F8F8F8; /* Light grey bg */
  margin-top: 5vw;
}

.contract-container {
  max-width: 100%;
  margin: 0 auto;
}

.contract-flex {
  display: flex;
  gap: 1vw;
  align-items: stretch;
}

.contract-left {
  width: 30%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.contract-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* min-height: 30vw; */ /* Ensure height matches right side somewhat */
}

.contract-right {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.contract-title {
  font-size: 1.8vw;
  font-weight: 400;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 1vw;
  line-height: 1.25;
  max-width: 40%;
}

.contract-subtitle {
  font-size: 1vw;
  color: #555;
  margin-bottom: 3vw;
  line-height: 1.5;
  max-width: 30%; /* Allow full width, let BR control break or text flow */
}

.contract-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1vw;
  width: 100%;
}

.contract-card {
  background: #fff;
  padding: 1.5vw;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  /* min-height: 14vw; */
}

.contract-card h3 {
  font-size: 1.1vw;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.contract-card p {
  font-size: 0.85vw;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.contract-btn-wrapper {
  display: flex;
  align-items: center; /* Vertically center the button if cell is taller */
  justify-content: center; /* Horizontally center */
  height: 100%; /* Fill cell height to allow centering */
}

.contract-btn {
  width: fit-content;
  /* Remove height: 100% to respect user's 'not same size' hint if they meant height,
     but actually for a grid usually you want alignment.
     Let's use a fixed reasonable min-height or padding. */
  padding: 1vw 3vw;
  background: #FF732A;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9vw;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  height: auto; /* Allow auto height */
  /* min-height: 8vw; */ /* Give it substantial presence */
}

.contract-btn:hover {
  background: #FF5500;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
  transform: translateY(-2px);
}
.banner {
  width: 100%;
  position: relative;
  background: #fff;
  overflow: visible;
  padding-bottom: 0;
}

.banner-container {
  display: flex;
  width: 100%;
  padding-left: 5vw;
  padding-right: 0;
  justify-content: space-between;
}

/* LEFT SIDE */
.banner-left {
  width: 40%;
  padding-top: 3vw;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.banner-logo {
  width: 12vw;
  margin-bottom: 2vw;
}

.banner-title {
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5vw;
  text-transform: uppercase;
  color: #FF732A;
}

.banner-title .underline {
  border-bottom: 0.15vw solid #E8621A;
  display: inline-block;
}

.banner-subtitle {
  font-size: 1.6vw;
  color: #535353;
  margin-bottom: 1vw;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
}

.banner-description {
  font-size: 1.6vw;
  color: #535353;
  margin-bottom: 2vw;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.3;
}

.banner-features {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.banner-features li {
  display: flex;
  align-items: center;
  gap: 0.7vw;
  font-size: 0.9vw;
  color: #323232;
  font-weight: 400;
}

.banner-features li img {
  width: 1.2vw;
  height: 1.2vw;
  object-fit: contain;
}

/* RIGHT SIDE */
.banner-right {
  width: 55%;
  background: #2A2A2A url('../img/img-1-screen.png') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #fff;
  padding: 4vw 5vw 7vw 2vw;
  min-height: 40vw;
  margin-left: auto;
}

/* Man Image */
.banner-man-wrapper {
  position: absolute;
  bottom: 0;
  left: -12vw;
  width: 28vw;
  z-index: 10;
  pointer-events: none;
}

.banner-man {
  width: 100%;
  display: block;
}

/* Content Box in Right Side */
.banner-content-box {
  display: flex;
  flex-direction: row;
  gap: 3vw;
  /* position: relative; */
  width: 100%;
  justify-content: flex-end;
}

.banner-director-info {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  font-size: 0.8vw;
  color: #888;
  text-align: right;
}

.director-title {
  color: #888;
  line-height: 1.3;
  margin-bottom: 0.5vw;
}

.director-name {
  font-size: 1.1vw;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}


.banner-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1vw;
  position: relative;
  z-index: 20;
}

.banner-contact-block {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 2.5vw;
  gap: 1.2vw;
  background: rgba(255,255,255,0.03);
  min-width: 18vw;
}

.contact-time-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 0.5vw;
}

.time-large {
  font-size: 3.5vw;
  font-weight: 300;
  line-height: 1;
}

.time-small {
  font-size: 0.8vw;
  color: #888;
  text-align: right;
  max-width: 6vw;
  line-height: 1.2;
}

.banner-phone {
  font-size: 2.2vw;
  color: #fff;
  text-align: right;
  font-weight: 400;
  line-height: 1;
  display: block;
  white-space: nowrap;
}

.agent-time {
  font-size: 0.8vw;
  color: #888;
  text-align: right;
  margin-top: -0.5vw;
  margin-bottom: 1vw;
}

.banner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  width: 100%;
  padding: 0.9vw;
  font-size: 0.75vw;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  border-radius: 8px;
}

.banner-btn:hover {
  transform: translateY(-0.2vw);
  box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.2);
}

.btn-callback {
  background: transparent;
  border: 1px solid #666;
  color: #fff;
}

.btn-callback:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-callback img {
  width: 0.9vw;
  filter: brightness(100);
}

.btn-consult {
  background: #E8621A;
  color: #fff;
  border: none;
  margin-top: 0.5vw;
}

.btn-consult:hover {
  background: #FF732A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
}

.banner-legal {
  position: static;
  margin-top: 0.5vw;
  font-size: 0.65vw;
  color: #AAA;
  text-align: right;
  line-height: 1.4;
  max-width: 20vw;
}



/* STEPS SECTION */
.steps-section {
  width: 100%;
  background: #F6F6F6;
  padding: 0 5vw 2vw 5vw;
  box-sizing: border-box;
  margin-top: 5vw;
}

.steps-container {
  display: flex;
  width: 100%;
  gap: 1.5vw;
}

/* SIDEBAR */
.steps-sidebar {
  background: url('../img/Rectangle 84.png') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 1vw 2vw;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  width: 35%;
}

.steps-sidebar-title {
  font-size: 2vw;
  font-weight: 500;
  margin-bottom: 2.5vw;
  line-height: 1.2;
  color: #888;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.step-item {
  border: 1px solid #E8621A;
  padding: 1vw;
  font-size: 0.8vw;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  width: fit-content;
}

/* CONTENT RIGHT */
.steps-content {
  width: 75%;
  background: #F6F6F6;
  color: #323232;
}

.steps-title {
  font-size: 2vw;
  font-weight: 500;
  margin-bottom: 1vw;
  text-transform: uppercase;
  color: #323232;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5vw;
}

.step-card {
  background: #fff;
  padding: 1vw;
  display: flex;
  flex-direction: column;
  gap: .5vw;
}

.step-card-wide {
  grid-column: span 2;
  flex-direction: column;
}

.step-number {
  font-size: 1.5vw;
  color: #E8621A;
  font-weight: 500;
}

.step-card-title {
  font-size: 1.2vw;
  font-weight: 400;
  color: #898989;
  text-transform: uppercase;
}

.step-card-body {
  display: flex;
  /* flex-direction: column; */
  gap: 0.5vw;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.step-card-header {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}

.step-card-wide .step-card-title {
  margin-bottom: 0;
}

.step-phone {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 1.8vw;
  color: #323232;
  font-weight: 400;
  flex-shrink: 0;
}

.step-phone img {
  width: 1.2vw;
  height: 1.2vw;
}

.step-card-text {
  font-size: 0.9vw;
  color: #323232;
  line-height: 1.4;
  font-weight: 400;
}


/* PRICING SECTION */
.pricing-section {
  width: 100%;
  background: #fff;
  padding: 5vw;
  box-sizing: border-box;
}

.pricing-title {
  font-size: 2.2vw;
  font-weight: 500;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 1.5vw;
  line-height: 1.2;
}

.pricing-subtitle {
  font-size: 1.1vw;
  color: #555;
  margin-bottom: 3vw;
  line-height: 1.4;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
  margin-bottom: 4vw;
}

.pricing-card {
  padding: 1vw;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-light {
  background: #F8F8F8;
  color: #323232;
}

.card-dark {
  background: #323232;
  color: #fff;
}

.pricing-card-icon {
  margin-bottom: 1.5vw;
}

.pricing-card-icon img {
  height: 2.5vw;
  width: auto;
}

.card-dark .pricing-card-icon img {
  filter: brightness(0) invert(1);
}

.pricing-card-title {
  font-size: 1.4vw;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1vw;
  line-height: 1.2;
}

.pricing-card-desc {
  font-size: 0.8vw;
  line-height: 1.4;
  margin-bottom: auto;
  opacity: 0.8;
}

.pricing-price-block {
  margin-top: 3vw;
  margin-bottom: 1.5vw;
}

.old-price {
  font-size: 0.9vw;
  text-decoration: line-through;
  opacity: 0.6;
  margin-bottom: 0.5vw;
  text-transform: uppercase;
}

.new-price {
  font-size: 2.2vw;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5vw;
}

.price-subtext {
  font-size: 0.7vw;
  opacity: 0.7;
}

.pricing-btn {
  width: 100%;
  padding: 1vw;
  font-size: 0.8vw;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-bottom: 0.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.pricing-btn:hover {
  transform: translateY(-0.2vw);
}

.pricing-btn-order {
  background: #E8621A;
  color: #fff;
}

.pricing-btn-order:hover {
  background: #FF732A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.3);
}

.pricing-btn-details {
  background: #fff;
  color: #323232;
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 8px;
}

.pricing-btn-details:hover {
  color: #E8621A;
  background: rgba(0,0,0,0.02);
}

.pricing-btn-details-dark {
  background: #fff;
  color: #323232;
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 8px;
}

.pricing-btn-details-dark:hover {
  background: #f0f0f0;
  box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.1);
}

.pricing-btn-details-dark img {
  width: 0.8vw;
}

/* BOTTOM INFO BLOCK */
.pricing-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 3vw;
}

.info-left {
  width: 30%;
}

.info-title {
  font-size: 1.8vw;
  text-transform: uppercase;
  color: #323232;
  font-weight: 500;
  margin-bottom: 1.5vw;
  line-height: 1.2;
}

.info-text {
  font-size: 1vw;
  color: #555;
  margin-bottom: 2vw;
  line-height: 1.4;
}

.info-subtext {
  font-size: 0.8vw;
  color: #323232;
  opacity: 0.7;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  width: 30%;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  font-size: 0.9vw;
  color: #323232;
}

.info-list li img {
  width: 1.1vw;
}

.info-actions {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1vw;
}

.info-btn-smeta {
  width: 100%;
  background: #FF732A;
  color: #fff;
  padding: 1.2vw;
  font-size: 0.9vw;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-btn-smeta:hover {
  background: #E8621A;
  transform: translateY(-0.2vw);
  box-shadow: 0 0.8vw 2vw rgba(255, 115, 42, 0.4);
}

.info-btn-calc {
  width: 100%;
  background: #F6F6F6;
  color: #323232;
  padding: 1.2vw;
  font-size: 0.9vw;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8vw;
  transition: all 0.3s ease;
}

.info-btn-calc:hover {
  background: #E0E0E0;
  transform: translateY(-0.2vw);
}

.info-btn-calc img {
  width: 1.2vw;
}

.traditions-btn-consult {
  width: fit-content;
  background: #FF732A;
  color: #fff;
  padding: 1.2vw;
  font-size: 0.9vw;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.traditions-btn-consult:hover {
  background: #E8621A;
  transform: translateY(-0.2vw);
  box-shadow: 0 0.8vw 2vw rgba(255, 115, 42, 0.4);
}

.gruz-btn-cta {
  width: 100%;
  background: #FF732A;
  color: #fff;
  padding: 1.2vw;
  font-size: 0.9vw;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.gruz-btn-cta:hover {
  background: #E8621A;
  transform: translateY(-0.2vw);
  box-shadow: 0 0.8vw 2vw rgba(255, 115, 42, 0.4);
}

.info-note {
  font-size: 1.2vw;
  color: #555;
  text-align: center;
  width: 100%;
  margin-top: 1vw;
  line-height: 1.2;
}

/* TRUST SECTION */
.trust-section {
  width: 100%;
  background: #323232;
  padding: 3vw 5vw;
  box-sizing: border-box;
}

.trust-container {
  width: 100%;
}

.trust-title {
  font-size: 2.2vw;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1vw;
  line-height: 1.2;
}

.trust-subtitle {
  font-size: 1.1vw;
  color: #888;
  margin-bottom: 1vw;
  line-height: 1.4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
}

.trust-card {
  border: 1px solid #E8621A;
  padding: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: transparent;
}

.trust-card:hover {
  background: rgba(232, 98, 26, 0.05);
  box-shadow: 0 0.5vw 1.5vw rgba(0,0,0,0.2);
}

.trust-card-title {
  font-size: 1vw;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}

.trust-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: 1vw;
}

.trust-icon {
  height: 2.5vw;
  width: auto;
}

.trust-icons-row {
  display: flex;
  gap: 0.5vw;
}

.trust-btn-details {
  font-size: 0.8vw;
  color: #888;
  text-decoration: underline;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.trust-btn-details:hover {
  color: #E8621A;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 0.5vw;
}

::-webkit-scrollbar-track {
  background: #323232;
}

::-webkit-scrollbar-thumb {
  background: #E8621A;
  border-radius: 0.25vw;
}

::-webkit-scrollbar-thumb:hover {
  background: #D55410;
}

/* CTA SECTION */
.cta-section {
  width: 100%;
  background: #323232;
  padding: 3vw 20vw;
}

.cta-container {
  width: 100%;
}

.cta-card {
  background: #fff;
  border-radius: 8px;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 100%;
  /* min-height: 29vw; */
  align-items: center;
  justify-content: center;
  padding-left: 3vw;
}

.cta-left {
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
  position: relative;
}

.cta-title {
  font-size: 1.5vw;
  font-weight: 500;
  color: #323232;
  text-transform: uppercase;
  margin-bottom: 2vw;
  line-height: 1.3;
  width: 100%;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: 100%;
  max-width: 25vw;
}

.cta-input {
  width: 100%;
  padding: 1.1vw;
  background: #F6F6F6;
  border: 1px solid #E8621A;
  border-radius: 8px;
  font-size: 0.9vw;
  color: #323232;
  outline: none;
}



.cta-right {
  width: 38%;
  position: relative;
  min-height: 29vw;
}

.cta-agent-img {
  position: absolute;
  bottom: 0;
  right: 0vw;
  height: 105%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
}

.cta-agent-info {
  position: absolute;
  bottom: 2vw;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.agent-role {
  font-size: 0.9vw;
  color: #898989;
  font-weight: 400;
  margin-bottom: 0.3vw;
}

.agent-name {
  font-size: 1.2vw;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
}

.cta-input::placeholder {
  color: #aaa;
}

.cta-btn {
  width: 100%;
  padding: 1vw;
  background: #FF732A;
  color: #fff;
  font-size: 0.9vw;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #E8621A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
  transform: translateY(-0.2vw);
}

.cta-agreements {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  margin-top: 0.8vw;
}

.cta-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6vw;
  cursor: pointer;
}

.cta-checkbox input {
  display: none;
}

.cta-checkbox .checkmark {
  width: 0.9vw;
  height: 0.9vw;
  border: 1px solid #ccc;
  border-radius: 0.2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}

.cta-checkbox input:checked + .checkmark::after {
  content: 'âœ“';
  color: #E8621A;
  font-size: 0.7vw;
  font-weight: bold;
}

.checkbox-text {
  font-size: 0.6vw;
  color: #aaa;
  line-height: 1.3;
}



/* TRADITIONS SECTION */
.traditions-section {
  width: 100%;
  background: #323232;
  padding: 3vw 5vw;
  color: #fff;
}

.traditions-container {
  width: 100%;
}

.traditions-title {
  font-size: 2vw;
  font-weight: 500;
  margin-bottom: 1vw;
  text-transform: uppercase;
  line-height: 1.2;
}

.traditions-grid {
  display: flex;
  justify-content: space-between;
  gap: 1vw;
  margin-bottom: 1vw;
}

.traditions-card {
  width: 49%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.traditions-card:nth-of-type(1) {
  background: #535353;
}

.traditions-card:nth-of-type(2) {
  background: #403F3F;
}

.traditions-card-header {
  z-index: 2;
  position: relative;
  padding: 1.5vw;
}

.traditions-card-title {
  font-size: 1.5vw;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5vw;
  width: 100%;
}

.traditions-card-subtitle {
  font-size: 0.8vw;
  color: #888;
  margin-bottom: 0;
  text-transform: uppercase;
  width: 100%;
}

.traditions-card-body {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1vw;
  padding-right: 1vw;
  z-index: 2;
}

.traditions-img-bg {
  width: 40%;
  height: auto;
  align-self: flex-end;
  object-fit: contain;
}

.traditions-body-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  gap: .5vw;
}

.traditions-list {
  list-style: none;
  margin-top: 0;
  width: 100%;
  text-align: left;
}

.traditions-list li {
  font-size: 0.9vw;
  color: #ddd;
  margin-bottom: 0.6vw;
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-weight: 400;
}

.traditions-list li img {
  width: 0.8vw;
  height: auto;
}

.traditions-footer-text {
  font-size: 0.7vw;
  color: #FFFFFF;
  text-transform: uppercase;
  width: 100%;
  line-height: 1.2;
}

.traditions-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2vw;
}

.traditions-col {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  padding-left: 2vw;
}

.traditions-bottom-text {
  font-size: 0.9vw;
  color: #888;
  text-transform: uppercase;
}

.traditions-bottom-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5vw 2vw;
}

.traditions-bottom-list li {
  font-size: 0.8vw;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 0.5vw;
}

.traditions-bottom-list li img {
  width: 0.8vw;
}


/* GRUZ 200 SECTION */
.gruz-section {
  width: 100%;
  background: #323232;
  padding: 3vw 5vw;
}

.gruz-container {
  width: 100%;
}

.gruz-title {
  font-size: 2vw;
  font-weight: 500;
  margin-bottom: 1vw;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.gruz-grid {
  display: flex;
  justify-content: space-between;
  gap: 1vw;
  margin-bottom: 2vw;
}

.gruz-main-card {
  width: 73%;
  background: #3B3B3B;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 25vw;
  padding: 0;
  padding-right: 3vw;
  overflow: hidden;
  flex-direction: row-reverse;
}

.gruz-card-left {
  width: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2vw 0;
}

.gruz-img {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  width: 50%;
  height: auto;
  min-height: 25vw;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.gruz-card-title {
  font-size: 1.6vw;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1vw;
  line-height: 1.2;
}

.gruz-cta-text {
  font-size: 1.2vw;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.3;
}

.gruz-right-col {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.gruz-cta-box {
  width: 100%;
  border: 1px solid #555;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2vw;
  text-align: center;
  background: transparent;
  gap: 1.5vw;
  min-height: 15vw;
}

.gruz-bottom-text {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  text-align: left;
  padding-left: 0;
}

.gruz-note {
  font-size: 0.7vw;
  color: #777;
  text-transform: uppercase;
  line-height: 1.4;
}

.gruz-highlight {
  font-size: 0.8vw;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 1.5vw;
  line-height: 1.4;
  width: 100%;
}

.gruz-list li {
  font-size: 0.9vw;
  color: #fff;
  margin-bottom: 0.6vw;
  display: flex;
  align-items: center;
  gap: 0.6vw;
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 4vw 5vw;
  background-color: #F9F9F9;
  width: 100%;
  padding: 3vw 5vw;
}

.reviews-container {
  max-width: 1550px;
  width: 100%;
  /* max-width: 90%; */
  margin: 0 auto;
}

.reviews-title {
  font-size: 1.9vw;
  font-weight: 400;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 3vw;
  line-height: 1.2;
}

.review-card {
  background: #fff;
  padding: 2vw;
  margin: 1vw 0;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  border-radius: 8px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.review-avatar-wrapper {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-info h4 {
  font-size: 1vw;
  color: #333;
  margin-bottom: 0.3vw;
  font-weight: 400;
  margin-top: 0;
}

.review-stars {
  color: #FFC107;
  font-size: 0.8vw;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.8vw;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.review-link {
  font-size: 0.8vw;
  color: #777;
  text-decoration: underline;
  margin-top: auto;
}

.reviews-carousel {
    /* overflow: visible !important; */
    position: relative; 
    z-index: 10;
}

.reviews-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  left: 0;
  margin: 0 !important;
  z-index: 20;
}

.reviews-carousel .owl-prev,
.reviews-carousel .owl-next {
  width: 2.4vw;
  height: 2.4vw;
  border-radius: 50%;
  background-color: #fff !important;
  box-shadow: 0 0.2vw 0.5vw rgba(0,0,0,0.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.reviews-carousel .owl-prev,
.reviews-carousel .owl-next {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
}

.reviews-carousel .owl-prev { left: -5vw; }
.reviews-carousel .owl-next { right: -5vw; }

.reviews-carousel .owl-prev:hover,
.reviews-carousel .owl-next:hover {
    background-color: #0A0A0A !important;
    border-color: #0A0A0A !important;
}

.reviews-carousel .owl-prev:hover svg path,
.reviews-carousel .owl-next:hover svg path {
    stroke: #fff !important;
}

.review-info h4 {
    font-size: 1.1vw;
    color: #444;
    font-weight: 500;
}

.review-text {
    color: #333;
    font-size: 0.85vw;
}

.reviews-title {
    margin-bottom: 2vw;
}

/* MEMORY SECTION (Monuments copy) */
.memory-section {
  width: 100%;
  padding: 3vw 5vw;
  background-color: #fff;
}

.memory-container {
  /* max-width: 90%; */
  margin: 0 auto;
}

.memory-title {
  font-size: 1.9vw;
  font-weight: 400;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 1vw;
  line-height: 1.2;
}

.memory-subtitle {
  font-size: 1.2vw;
  color: #898989;
  margin-bottom: 1vw;
  max-width: 34%;
  line-height: 1.4;
  font-weight: 400;
}

.memory-main-flex {
  display: flex;
  gap: 1vw;
}

.memory-left-col {
  width: 25%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #535353;
}

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

.memory-info-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2B2B2B; /* Solid dark bar */
  padding: 1.5vw;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  font-size: 0.9vw;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 400;
}

.memory-right-col {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

/* MEMORY CARDS */
.memory-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vw;
}

.memory-card {
  background: #3B3B3B;
  border-radius: 4px;
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* min-height: 14vw; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.memory-card:hover {
  transform: translateY(-0.3vw);
  box-shadow: 0 0.5vw 1.5vw rgba(0,0,0,0.3);
  background: #444; /* Slightly lighter on hover */
}

.memory-card-title {
  font-size: 1vw;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.memory-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 2vw; /* Ensure spacing if text is short */
}

.memory-card-icon {
  width: 2vw;
  height: auto;
  /* filter: brightness(0) invert(1); */
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.memory-card:hover .memory-card-icon {
  transform: scale(1.1);
}

.memory-card-btn {
  background: none;
  border: none;
  padding: 0;
  color: #aaa;
  text-decoration: underline;
  font-size: 0.8vw;
  cursor: pointer;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.memory-card:hover .memory-card-btn {
  color: #FF732A; /* Orange on hover */
  text-decoration-color: #FF732A;
}

/* GIFTS */
.memory-gifts {
  margin-top: 0;
}

.memory-gifts-title {
  font-size: 1.5vw;
  font-weight: 500;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 2vw;
}

.memory-gifts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vw;
}

.memory-gift-card {
  background: #F9F9F9;
  padding: 1vw;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* min-height: 16vw; */
}

.memory-gift-title {
  font-size: 1vw;
  color: #333;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1vw;
}

.memory-gift-desc {
  font-size: 0.85vw;
  color: #555;
  line-height: 1.4;
  margin-bottom: auto;
}

.memory-gift-btn {
  background: linear-gradient(90deg, #FF732A 0%, #FF5500 100%);
  color: #fff;
  border: none;
  padding: 1vw 0;
  font-size: 0.9vw;
  text-transform: uppercase;
  border-radius: 6px;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.5vw;
  box-shadow: 0 4px 10px rgba(255, 85, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.memory-gift-btn:hover {
  box-shadow: 0 6px 15px rgba(255, 85, 0, 0.4);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.memory-gifts-note {
  font-size: 0.85vw;
  color: #555;
  margin-top: 1.5vw;
}

/* SERVICES */
.memory-services {
  margin-top: 3vw;
}

.memory-services-flex {
  display: flex;
  gap: 1vw;
  width: 100%;
}

.memory-service-left,
.memory-service-right {
  /* width: calc(50% - 0.5vw); */
  border-radius: 4px;
  /* padding: 1.5vw; */
  position: relative;
  overflow: hidden;
  min-height: 25vw;
  display: flex;
}

/* Left Service (Light) */
.memory-service-left {
  width: 60%;
  background: #F9F9F9;
  padding: 1.5vw 0 0 1.5vw;
  flex-direction: row;
}

.memory-service-text {
  width: 55%;
  display: flex;
  flex-direction: column;
  z-index: 2;
  justify-content: space-between;
  padding-bottom: 1.5vw;
}

.memory-service-img-wrap {
  width: 45%;
  position: relative;
}

.memory-service-img {
    width: 100%;
    height: auto;
    /* position: absolute; */
    bottom: -3vw;
    right: -3vw;
    object-fit: contain;
}

/* Right Service (Dark) */
.memory-service-right {
  background: #3B3B3B;
  color: #fff;
  flex-direction: column;
  width: 40%;
  padding: 1.5vw;
}
.memory-service-left{
  /* width: 60%; */
}
.memory-service-title {
  font-size: 1.6vw;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1vw;
}
.memory-service-left .memory-service-title { color: #333; }
.memory-service-right .memory-service-title { color: #fff; }

.memory-service-desc {
  font-size: 0.8vw;
  text-transform: uppercase;
  margin-bottom: 2vw;
  line-height: 1.4;
  max-width: 90%;
}
.memory-service-left .memory-service-desc { color: #555; }
.memory-service-right .memory-service-desc { color: #aaa; }

.memory-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.memory-service-list li {
  font-size: 0.85vw;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 0.5vw;
}
.memory-service-left .memory-service-list li { color: #333; }
.memory-service-right .memory-service-list li { color: #ddd; }
.memory-service-list li img {width: 0.9vw;/* margin-top: 0.2vw; */}

.memory-service-list-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1vw;
}

.memory-service-btn {
    background: #FF732A;
    color: #fff;
    border: none;
    padding: 1vw 2vw;
    font-size: 0.8vw;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    margin-top: auto;
    transition: all 0.3s ease;
}

.memory-service-btn:hover {
    background: #FF5500;
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
    transform: translateY(-2px);
}


/* STATISTICS SECTION */
.stats-section {
  width: 100%;
  padding: 0 5vw; /* Extra bottom padding */
  background-color: #F8F8F8; /* Same as contract or slightly distinct? Screenshot looks same. */
  margin-top: 5vw;
}

.stats-container {
  max-width: 100%;
  margin: 0 auto;
}

.stats-title {
  font-size: 1.8vw;
  font-weight: 400;
  text-transform: uppercase;
  color: #323232;
  margin-bottom: 5vw;
  line-height: 1.25;
  max-width: 60%;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* Align numbers baseline roughly? Or center? Start looks safer */
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: none;
}

.stat-top {
  font-size: 0.9vw;
  color: #888;
  margin-bottom: 0.5vw;
}

.stat-number {
  font-size: 3.5vw;
  color: #FF732A;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1vw;
}

.stat-desc {
  font-size: 0.9vw;
  color: #555; /* Slightly darker than #777 */
  line-height: 1.4;
  margin-top: 0.5vw;
  font-weight: 400;
  max-width: 80%;
}

/* LOCATIONS SECTION */
.locations-section {
  width: 100%;
  padding: 0 5vw; /* No top padding to merge visually or close gap */
  background-color: #F8F8F8;
  margin-top: 5vw;
}

.locations-container {
  max-width: 100%;
  margin: 0 auto;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  width: 100%;
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease;
  width: calc((100% - 2vw) / 3);
}

/* Yandex map embed wrapper */
.location-map {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  height: 16vw;
}

/* Hide Yandex attribution links rendered above iframe */
.location-map > a {
  display: none;
}

.location-card iframe {
  display: block;
  width: 100% !important;
  height: 100%;
  min-height: 0;
  border: 0;
}

.location-card,
.location-info-card {
  min-height: 20vw;
}

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

.location-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.location-caption {
  margin-top: 1vw;
  font-size: 0.9vw;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  min-height: 2.4vw;
  line-height: 1.3;
}

.location-caption img {
  width: 1.2vw; /* Adjusted for Vector 7 */
  height: auto;
  opacity: 1;
}

.location-info-card {
  background: #fff;
  padding: 3vw;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: auto; /* Flex items stretch by default */
  width: calc((100% - 2vw) / 3);
  min-height: 15vw; /* Ensure minimum height */
}

.loc-info-title {
  font-size: 1vw;
  font-weight: 600;
  color: #555;
  margin: 0 0 1vw 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.loc-info-details {
  font-size: 0.85vw;
  color: #555;
  line-height: 1.5;
  margin-bottom: 2vw;
}

.loc-info-desc {
  font-size: 0.85vw;
  color: #555;
  line-height: 1.4;
  margin-bottom: 2vw;
  max-width: 90%;
}

.loc-info-phone {
  font-size: 1.6vw;
  color: #333;
  text-decoration: none;
  margin-bottom: 0.2vw;
  display: block;
}

/* FOOTER */
.footer {
  background: #333;
  color: #fff;
  padding: 3vw 5vw 2vw 5vw;
  margin-top: 5vw;
  width: 100%;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  border-bottom: 1px solid #444;
  padding-bottom: 3vw;
  margin-bottom: 1.5vw;
}

.footer-info {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}

.footer-logo {
  width: 16vw;
  /* margin-bottom: 1vw; */
  /* filter: brightness(0) invert(1); */ /* Ensure logo is white if it's black */
}

.footer-phone-btn {
  display: block;
  border: 1px solid #666;
  padding: 0.8vw 2vw;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.2vw;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: 16vw;
}

.footer-phone-btn:hover {
  border-color: #FF732A;
  color: #FF732A;
}

.footer-callback-btn {
  background: transparent;
  border: 1px solid #FF732A; /* Orange border matching screenshot */
  padding: 1vw 1vw;
  color: #ddd;
  font-size: .9vw;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: fit-content; /* Make full width like phone button */
  text-align: center;
  width: 16vw;
}

.footer-callback-btn:hover {
  background: #FF732A;
  color: #fff;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
}

.social-icon {
  width: 2.8vw;
  height: 2.8vw;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: #FF732A;
}

.social-icon img {
  width: 2.1vw;
  height: auto;
}

.footer-rutube-btn {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  border: 1px solid #fff;
  padding: 0 1vw;
  height: 2.8vw; /* Match height of social icons */
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 0.8vw;
  transition: border-color 0.3s ease;
}

.footer-rutube-btn:hover {
  border-color: #FF732A;
}

.footer-rutube-btn span {
  white-space: nowrap;
}

.footer-rutube-btn img {
  height: 1.2vw;
  width: auto;
}

.footer-addresses {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.footer-addr-item {
  font-size: 0.85vw;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-addr-item:hover {
  color: #FF732A;
}

.footer-addr-item img {
  width: 0.8vw;
  filter: brightness(0) invert(1);
}

.footer-nav {
  width: 70%;
  display: flex;
  justify-content: space-between;
}

.footer-col {
  width: 23%;
}

.footer-title {
  color: #777;
  font-size: 1.1vw;
  margin-bottom: 1.5vw;
  font-weight: 500;
}

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

.footer-list li {
  margin-bottom: 0.5vw;
}

.footer-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85vw;
  transition: color 0.3s ease;
  line-height: 1.2;
  display: block;
}

.footer-list a:hover {
  color: #FF732A;
}

.footer-bottom {
  font-size: 0.75vw;
  color: #555;
  margin-top: 1vw;
}

.privacy-policy {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy:hover {
  color: #888;
}

/* POPUP FORM */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none; /* Hidden by default - Flex when active */
  justify-content: center;
  align-items: center;
}

.popup-container {
  background: #fff;
  padding: 3vw 4vw;
  border-radius: 8px;
  width: 30vw;
  min-width: 320px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 1vw;
  right: 1.5vw;
  font-size: 2vw;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  line-height: 1;
  padding: 0;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #333;
}

.popup-logo {
  width: 6vw;
  margin-bottom: 1.5vw;
}

.popup-title {
  font-size: 1.8vw;
  color: #333;
  margin-bottom: 0.5vw;
  text-transform: uppercase;
  font-weight: 600;
}

.popup-subtitle {
  font-size: 1vw;
  color: #777;
  margin-bottom: 2vw;
}

.popup-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 1vw;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1vw;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #FF732A;
}

.form-policy {
  text-align: left;
  font-size: 0.8vw;
  color: #777;
}

.form-policy label {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  cursor: pointer;
}

.form-policy input[type="checkbox"] {
  accent-color: #FF732A;
}

.form-policy a {
  color: #333;
  text-decoration: underline;
}

.popup-submit-btn {
  background: linear-gradient(90deg, #FF732A 0%, #FF9D2A 100%);
  color: #fff;
  border: none;
  padding: 1vw;
  font-size: 1.1vw;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1vw;
}

.popup-submit-btn:hover {
  opacity: 0.9;
}

/* BREADCRUMBS */
.breadcrumbs-section {
  width: 100%;
  padding: 1vw 5vw;
}

.breadcrumbs-container {
  margin: 0 auto;
  display: flex;
  gap: 0.5vw;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5vw 1.2vw;
  border-radius: 2.5vw;
  font-size: 0.65vw;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
  line-height: 1;
}

/* Inactive (Link) */
a.breadcrumb-item {
  background-color: #F8F8F8;
  color: #535353;
  border: 1px solid #EAEAEA;
}

a.breadcrumb-item:hover {
  background-color: #E0E0E0;
}

/* Active (Current Page) */
.breadcrumb-item.active {
  background-color: #898989;
  color: #fff;
  border: 1px solid #898989;
}

/* ABOUT INFO SECTION */
.about-info-section {
    width: 100%;
    padding: 3vw 5vw 5vw 5vw;
    background-color: #F9F9F9;
}

.about-info-container {
    display: flex;
    justify-content: space-between;
    gap: 4vw;
    margin: 0 auto;
}

.about-info-left {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.about-main-title {
    font-size: 2.5vw;
    color: #FF732A;
    line-height: 1.2;
    margin-bottom: 2vw;
    text-transform: uppercase;
    font-weight: 400;
}

.about-logo {
    width: 12vw;
    margin-bottom: 2vw;
    height: auto;
}

.about-desc {
    font-size: 1vw;
    color: #555;
    line-height: 1.5;
    margin-bottom: 2vw;
    max-width: 90%;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    font-size: 0.9vw;
    color: #333;
    margin-bottom: 0.8vw;
}

.about-checklist li img {
    width: 1vw;
    height: 1vw;
    object-fit: contain;
}

/* RIGHT SIDE GRID */
.about-info-right {
    width: 55%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 1fr;
    gap: 1.5vw;
    height: 35vw;
}

.about-card {
    position: relative;
    border-radius: 0.5vw;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    padding: 1vw;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-0.2vw);
}

.about-card-wide {
    grid-column: 1 / -1;
    background-image: url('../img/Group\ 99.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.about-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.about-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.about-card-dark {
    background-color: #333;
}

.about-card-title {
    font-size: 1.2vw;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.about-card-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    width: 100%;
}

.about-card-plus {
    font-size: 4vw;
    color: #fff;
    font-weight: 200;
    line-height: 0.8;
}

.about-card-link-text {
    font-size: 0.8vw;
    color: #aaa;
    text-decoration: underline;
    transition: color 0.3s;
    margin-bottom: 0.5vw;
}

.about-card:hover .about-card-link-text {
    color: #fff;
}

/* ABOUT STEPS SECTION */
.about-steps-section {
    width: 100%;
    padding: 0 5vw;
}




.about-steps-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3vw;
}

/* Left Column (Title) */
.about-steps-left-col {
    width: 100%;
}

.about-steps-main-title {
    font-size: 2.2vw;
    color: #333;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1vw;
    line-height: 1.2;
}

.about-steps-subtitle {
    font-size: 1vw;
    color: #777;
    margin-left: 0.2vw;
}

/* Right Column (Cards) */
.about-steps-right-col {
    width: 100%;
    display: flex;
    gap: 1.5vw;
}

/* Card 01 (Dark Main) */
.about-steps-card-main {
    width: 50%;
    background-image: url('../img/Group\ 99.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0.5vw;
    overflow: hidden;
    color: #fff;
}

.about-steps-card-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-steps-card-content {
    position: relative;
    z-index: 2;
    padding: 2vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-steps-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about-steps-number-large {
    font-size: 1.5vw;
    color: #FF732A;
    font-weight: 600;
}

.about-steps-24-7 {
    text-align: right;
}

.about-steps-time {
    display: block;
    font-size: 4vw;
    font-weight: 300;
    line-height: 0.8;
}

.about-steps-time-sub {
    font-size: 0.7vw;
    color: #999;
    display: block;
    margin-top: 0.5vw;
}

.about-steps-center-content {
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.about-steps-card-title {
    font-size: 2vw;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.about-steps-card-text {
    font-size: 0.8vw;
    color: #ccc;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-steps-btn-group {
    display: flex;
    gap: 0.8vw;
    margin-top: 2vw;
}

.about-steps-btn-outline, .about-steps-btn-white {
    padding: 1vw 1.2vw;
    border-radius: 4px;
    font-size: 0.8vw;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5vw;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.1;
}

.about-steps-btn-outline {
    border: 1px solid #FF732A;
    color: #fff;
    width: 40%;
    justify-content: center;
}

.about-steps-btn-outline:hover {
    background: rgba(255, 115, 42, 0.1);
}

.about-steps-btn-outline img {
    filter: brightness(0) invert(1);
    width: 0.9vw;
}

.about-steps-btn-white {
    background: #fff;
    color: #333;
    width: 60%;
    justify-content: center;
    text-align: left;
}

.about-steps-btn-white:hover {
    opacity: 0.9;
}

.about-steps-btn-white img {
    width: 0.9vw;
}

/* Sidebar (Cards 02, 03, 04) */
.about-steps-sidebar {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.about-steps-card-light {
    background: #fff;
    padding: 1.5vw;
    border-radius: 0.5vw;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.about-steps-subgrid {
    display: flex;
    gap: 1.5vw;
    height: 100%;
}

.about-steps-sidebar > .about-steps-card-item {
    flex: 1; /* Matches height ratio roughly */
}

.about-steps-subgrid .about-steps-card-item {
    flex: 1;
}

.about-steps-number {
    font-size: 1.2vw;
    color: #FF732A;
    font-weight: 400;
}

.about-steps-item-title {
    font-size: 1.2vw;
    color: #898989;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.3;
}

.about-steps-item-text {
    font-size: 0.8vw;
    color: #666;
    line-height: 1.5;
    text-transform: uppercase;
}

/* HELP SECTION */
.help-section {
    width: 100%;
    padding: 5vw;
    background-color: #fff;
    margin-top: 5vw;
}

.help-container {
    margin: 0 auto;
}

.help-title {
    font-size: 2.2vw;
    color: #333;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 2.5vw;
    line-height: 1.2;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
}

.help-card {
    text-decoration: none;
    background-color: #F9F9F9;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-0.5vw);
}

.help-card-img-wrapper {
    width: 100%;
    height: 15vw;
    overflow: hidden;
}

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

.help-card:hover .help-card-img {
    transform: scale(1.05);
}

.help-card-content {
    padding: 1vw;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: .5vw;
    padding-bottom: 3vw;
}

.help-card-title {
    font-size: 1.1vw;
    color: #333;
    text-transform: uppercase;
    font-weight: 500;
    /* margin-bottom: 1vw; */
    line-height: 1.3;
}

.help-card-desc {
    font-size: 0.8vw;
    color: #888;
    text-transform: uppercase;
    line-height: 1.5;
    /* margin-bottom: 1.5vw; */
}

.help-card-footer {
    margin-top: auto;
}

.help-card-note {
    font-size: 0.85vw;
    color: #555;
    line-height: 1.4;
}


/* TURNKEY SECTION */
.turnkey-section {
    width: 100%;
    padding: 5vw;
    background-color: #333; /* Dark background */
    color: #fff;
}

.turnkey-container {
    margin: 0 auto;
}

.turnkey-header {
    margin-bottom: 3vw;
}

.turnkey-title {
    font-size: 2.2vw;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.5vw;
}

.turnkey-subtitle {
    font-size: 1vw;
    color: #999;
}

.turnkey-grid {
    display: flex;
    gap: 2vw;
    width: 100%;
}

.turnkey-col {
    width: 50%;
    background-color: #444; /* Slightly lighter dark for columns/cards if needed, or transparent */
    background-color: rgba(255,255,255,0.05);
    padding: 3vw;
    border-radius: 0.5vw;
}

.turnkey-col:first-child {
    background-color: #535353;
}

.turnkey-col-title {
    font-size: 1.3vw;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2vw;
}

.turnkey-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.turnkey-list li {
    display: flex;
    align-items: flex-start;
    gap: 1vw;
    font-size: 0.9vw;
    color: #ddd;
    /* margin-bottom: 1.2vw; */
    line-height: 1.4;
}

.turnkey-list li:last-child {
    margin-bottom: 0;
}

.turnkey-icon {
    width: 1.2vw;
    height: 1.2vw;
    object-fit: contain;
    margin-top: 0.1vw;
}

/* ABOUT PRICING SECTION */
.about-pricing-section {
    width: 100%;
    background: #fff;
    padding: 5vw;
}

.about-pricing-container {
    width: 100%;
    margin: 0 auto;
}

.about-pricing-title {
    font-size: 2.2vw;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 1vw;
    line-height: 1.2;
}

.about-pricing-subtitle {
    font-size: 1.1vw;
    color: #555;
    margin-bottom: 3vw;
    line-height: 1.4;
}

.about-pricing-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5vw;
}

.about-pricing-card {
    grid-column: span 2; /* Default: 3 cards in a row of 6 columns */
    padding: 1.5vw;
    display: flex;
    flex-direction: column;
    border-radius: 0.5vw;
    position: relative;
}

.about-card-light {
    background: #F8F8F8;
    color: #323232;
}

.about-card-dark {
    background: #323232;
    color: #fff;
}

/* Bottom row cards span 3 columns each (half width) */
.about-pricing-card.about-pricing-card-wide {
    grid-column: span 3;
}

.about-pricing-icon {
    margin-bottom: 1.5vw;
}

.about-pricing-icon img {
    height: 2.5vw;
    width: auto;
}

/* Invert icon for dark cards if needed */
.about-card-dark .about-pricing-icon img {
    filter: brightness(0) invert(1);
}

.about-pricing-card-title {
    font-size: 1.4vw;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1vw;
    line-height: 1.2;
}

.about-pricing-desc {
    font-size: 0.8vw;
    line-height: 1.4;
    margin-bottom: auto; /* Push content down */
    opacity: 0.8;
}

.about-pricing-price-block {
    margin-top: 2vw;
    margin-bottom: 1.5vw;
}

.about-old-price {
    font-size: 0.9vw;
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 0.5vw;
    text-transform: uppercase;
}

.about-new-price {
    font-size: 2.2vw;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5vw;
}

.about-price-subtext {
    font-size: 0.7vw;
    opacity: 0.7;
}

.about-pricing-btn {
    width: 100%;
    padding: 1vw;
    font-size: 0.8vw;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-bottom: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.about-pricing-btn:hover {
    transform: translateY(-0.2vw);
}

.about-btn-order {
    background: #E8621A;
    color: #fff;
}

.about-btn-order:hover {
    background: #FF732A;
    box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.3);
}

.about-btn-details {
    background: #fff;
    color: #323232;
    font-weight: 400;
    border: 1px solid transparent;
}

.about-btn-details:hover {
    color: #E8621A;
    background: rgba(0,0,0,0.02);
}

.about-btn-details-dark {
    background: #fff;
    color: #323232;
    font-weight: 400;
    border: 1px solid transparent;
}

.about-btn-details-dark:hover {
    background: #f0f0f0;
    box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.1);
}

.about-btn-details img, .about-btn-details-dark img {
    width: 0.8vw;
}

/* ABOUT AFTER FUNERAL SECTION */
.about-after-funeral-section {
    width: 100%;
    background: #fff;
    padding: 5vw;
}

.about-after-funeral-container {
    width: 100%;
    margin: 0 auto;
}

.about-after-funeral-title {
    font-size: 2.2vw;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    /* margin-bottom: 1vw; */
    line-height: 1.2;
}

.about-after-funeral-subtitle {
    font-size: 1.1vw;
    color: #555;
    margin-bottom: 2vw;
    line-height: 1.4;
}

.about-after-funeral-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
}

.about-after-funeral-card {
    background: #F8F8F8;
    display: flex;
    flex-direction: column;
    text-decoration: none; /* Ensure no underline for link */
    color: inherit;
    transition: box-shadow 0.3s ease; /* Add transition for hover effect */
}

.about-after-funeral-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-after-funeral-img-wrapper {
    width: 100%;
    height: 15vw; /* Adjust aspect ratio as needed */
    overflow: hidden;
}

.about-after-funeral-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-after-funeral-card:hover .about-after-funeral-img {
    transform: scale(1.05);
}

.about-after-funeral-content {
    padding: 1.5vw;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.about-after-funeral-card-title {
    font-size: 1.2vw;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 1vw;
    line-height: 1.3;
}

.about-after-funeral-text {
    font-size: 0.8vw;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5vw;
    text-transform: uppercase;
}

.about-after-funeral-links {
    margin-top: auto;
    display: flex;
    gap: 1vw;
}

.about-after-funeral-link {
    font-size: 0.8vw;
    color: #555;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.about-after-funeral-link:hover {
    color: #E8621A;
}

.about-after-funeral-note {
    font-size: 0.8vw;
    color: #555;
    margin-top: auto;
    font-style: italic;
}

/* ABOUT LEGAL SECTION */
.about-legal-section {
    width: 100%;
    background: #F6F6F6;
    padding: 5vw;
}

.about-legal-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 1.5vw;
}

.about-legal-block {
    background: #fff;
    padding: 3vw;
    border-radius: 0.5vw;
}

/* Left block width approx 30-35% */
.about-legal-container .about-legal-block:first-child {
    width: 35%;
}

/* Right block width remaining */
.about-legal-container .about-legal-block:last-child {
    width: 65%;
}

.about-legal-title {
    font-size: 1.2vw;
    font-weight: 500;
    text-transform: uppercase;
    color: #898989;
    margin-bottom: 1.5vw;
    line-height: 1.2;
}

.about-legal-text p {
    font-size: 0.9vw;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.about-legal-addresses {
    display: flex;
    flex-direction: column;
}

.about-addresses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
    margin-top: 2vw;
}

.about-address-item {
    width: 48%; /* Roughly half width to mimic 2-column grid */
    display: flex;
    align-items: flex-start;
    gap: 0.8vw;
    font-size: 0.9vw;
    color: #333;
    line-height: 1.4;
}

.about-address-icon {
    width: 0.8vw;
    height: auto;
    margin-top: 0.2vw;
}

/* ABOUT CONTACT SECTION */
.about-contact-section {
    width: 100%;
    /* background: #fff; */
    padding: 0 5vw;
    margin-top: 5vw;
}

.about-contact-container {
    width: 70%;
    margin: 0 auto;
    /* max-width: 60vw; */ /* Limit width for better form appearance */
    background: #ffffff;
    padding: 5vw;
}

.about-contact-title {
    font-size: 1.8vw;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 2vw;
    line-height: 1.2;
}

.about-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.about-contact-row {
    display: flex;
    gap: 1vw;
}

.about-contact-input {
    flex: 1;
    padding: 1vw 1.5vw;
    border: 1px solid #E8621A;
    border-radius: 0.5vw;
    font-size: 0.9vw;
    outline: none;
    color: #333;
}

.about-contact-input::placeholder, .about-contact-textarea::placeholder {
    color: #999;
}

.about-contact-textarea {
    width: 100%;
    padding: 1vw 1.5vw;
    border: 1px solid #E8621A;
    border-radius: 0.5vw;
    font-size: 0.9vw;
    outline: none;
    color: #333;
    resize: none;
    height: 8vw;
}

.about-contact-actions {
    display: flex;
    gap: 1vw;
    margin-top: 1vw;
}

.about-contact-btn {
    padding: 1vw 2vw;
    font-size: 0.8vw;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 0.5vw;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
}

.about-btn-submit {
    background: #E8621A;
    color: #fff;
    flex: 1; /* Adjust if needed, or set fixed width */
    max-width: 15vw;
}

.about-btn-submit:hover {
    background: #FF732A;
    box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.3);
}

.about-btn-messenger {
    background: #535353;
    color: #fff;
    flex: 1;
    max-width: 20vw;
}

.about-btn-messenger:hover {
    background: #333;
    box-shadow: 0 0.5vw 1.5vw rgba(0,0,0,0.2);
}

.about-btn-messenger img {
    height: 1vw;
    width: auto;
    filter: brightness(0) invert(1);
}

.about-contact-policy {
    margin-top: 1vw;
    display: flex;
    gap: 2vw;
}

.about-policy-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5vw;
    font-size: 0.6vw;
    color: #999;
    cursor: pointer;
    line-height: 1.3;
    max-width: 48%;
}

.about-policy-label input {
    margin-top: 0.1vw;

}

/* ABOUT FAQ SECTION */
.about-faq-section {
    width: 100%;
    background: #F8F8F8; /* Light background as per plan/screenshot check */
    padding: 5vw;
}

.about-faq-container {
    width: 70%;
    /* max-width: 60vw; */
    margin: 0 auto;
}

.about-faq-title {
    font-size: 1.8vw;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 2vw;
    line-height: 1.2;
}

.about-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.about-faq-item {
    background: #fff;
    border-radius: 0.2vw;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-faq-header {
    padding: 1.5vw 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.about-faq-question {
    font-size: 0.9vw;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    width: 90%;
}

.about-faq-icon {
    width: 1.2vw;
    height: 1.2vw;
    position: relative;
    transition: transform 0.3s ease;
}

/* Create Plus Icon using pseudo-elements */
.about-faq-icon::before,
.about-faq-icon::after {
    content: '';
    position: absolute;
    background: #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.about-faq-icon::before {
    width: 100%;
    height: 2px; /* Horizontal line */
}

.about-faq-icon::after {
    height: 100%;
    width: 2px; /* Vertical line */
}

/* Active State: Rotate to 45deg to form X */
.about-faq-item.active .about-faq-icon {
    transform: rotate(45deg);
}

.about-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.about-faq-answer {
    padding: 0 2vw 2vw 2vw;
    font-size: 0.9vw;
    color: #555;
    line-height: 1.5;
}

/* When active, allow height */
.about-faq-item.active .about-faq-body {
    max-height: 20vw; /* Arbitrary large enough height */
}



/* MONUMENTS HERO SECTION */
.monuments-card-skeleton{
  height:320px;
  background:linear-gradient(
  90deg,
  #f1f1f1 25%,
  #e5e5e5 37%,
  #f1f1f1 63%
  );
  background-size:400% 100%;
  animation:skeleton 1.4s ease infinite;
}

@keyframes skeleton{
  0%{background-position:100% 50%}
  100%{background-position:0 50%}
}

.monuments-hero {
  width: 100%;
  max-width: 100vw;
  padding: 0 5vw 2vw 5vw;
  /* background: #F6F6F6; */
  box-sizing: border-box;
  overflow-x: hidden;
}

.monuments-hero-wrap {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.monuments-hero-grid {
  display: flex;
  align-items: stretch;
  gap: 1vw;
  width: 100%;
  min-width: 0;
}

.monuments-hero-left {
  flex: 1 1 28%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.monuments-hero-headline {
  font-size: 3.2vw;
  font-weight: 400;
  color: #FF732A;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
  font-family: inherit;
  word-wrap: break-word;
}

.monuments-hero-desc {
  font-size: 1.2vw;
  color: #535353;
  line-height: 1.2;
  margin: 0;
  font-family: inherit;
  word-wrap: break-word;
  font-weight: 400;
}

.monuments-hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.monuments-hero-list li {
  display: flex;
  align-items: center;
  gap: 0.7vw;
  font-size: 0.9vw;
  color: #323232;
  line-height: 1.4;
  font-family: inherit;
  font-weight: 400;
  word-wrap: break-word;
}

.monuments-hero-list li img {
  width: 0.9vw;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.monuments-hero-center {
  /* flex: 1.2 1 36%; */
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monuments-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.monuments-hero-right {
  /* flex: 1 1 28%; */
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  width: 35%;
  padding: 2vw;
  height: fit-content;
}

.monuments-form-title {
  font-size: 1.4vw;
  font-weight: 400;
  color: #323232;
  text-transform: uppercase;
  margin: 0 0 1.5vw;
  font-family: inherit;
}

.monuments-form {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.monuments-form-input,
.monuments-form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 1vw 1.2vw;
  font-size: 0.9vw;
  border: 0.05vw solid #E5A77B;
  border-radius: 0.42vw;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
  color: #898989;
  font-weight: 400;
}

.monuments-form-input::placeholder,
.monuments-form-textarea::placeholder {
  color: #999;
}

.monuments-form-textarea {
  resize: vertical;
  min-height: 5vw;
}

.monuments-form-btn {
  width: 100%;
  padding: 1vw;
  font-size: 0.95vw;
  font-weight: 600;
  color: #fff;
  background: #FF732A;
  border: none;
  border-radius: 0.42vw;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: inherit;
}

.monuments-form-btn:hover {
  background: #E8621A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
  transform: translateY(-0.2vw);
}

.monuments-form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.monuments-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6vw;
  cursor: pointer;
  font-size: 0.65vw;
  color: #898989;
  line-height: 1.2;
  font-family: inherit;
  min-width: 0;
  font-weight: 400;
}

.monuments-form-check span:not(.monuments-form-checkmark) {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}

.monuments-form-check input {
  display: none;
}

.monuments-form-checkmark {
  flex-shrink: 0;
  width: 1vw;
  height: 1vw;
  border: 0.05vw solid #ccc;
  border-radius: 0.16vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monuments-form-check input:checked + .monuments-form-checkmark {
  background: #FF732A;
  border-color: #FF732A;
}

.monuments-form-check input:checked + .monuments-form-checkmark::after {
  content: 'âœ“';
  color: #fff;
  font-size: 0.65vw;
  font-weight: bold;
}

/* MONUMENTS SELECTOR SECTION */
.monuments-selector {
  width: 100%;
  padding: 3vw 5vw 4vw;
  background: #F8F8F8;
  box-sizing: border-box;
}

.monuments-selector-wrap {
  width: 100%;
  max-width: 100%;
}

.monuments-selector-heading1 {
  font-size: 1.9vw;
  font-weight: 400;
  color: #323232;
  text-transform: uppercase;
  margin: 0 0 0.3vw;
  font-family: inherit;
}

.monuments-selector-heading2 {
  font-size: 1.9vw;
  font-weight: 400;
  color: #323232;
  text-transform: uppercase;
  margin: 0 0 1vw;
  font-family: inherit;
}

.monuments-selector-desc {
  font-size: 1vw;
  font-weight: 400;
  color: #535353;
  line-height: 1.5;
  margin: 0 0 2.5vw;
  font-family: inherit;
}

.monuments-selector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  align-items: flex-start;
}

.monuments-selector-col {
  flex: 1 1 18vw;
  min-width: 0;
}

.monuments-selector-group {
  margin-bottom: 1.5vw;
}

.monuments-selector-label {
  display: block;
  font-size: 0.95vw;
  font-weight: 400;
  color: #323232;
  margin-bottom: 0.6vw;
  font-family: inherit;
}

.monuments-selector-dropdown-wrap {
  position: relative;
}

.monuments-selector-dropdown {
  width: 100%;
  padding: 0.9vw 1.2vw;
  font-size: 0.95vw;
  font-weight: 400;
  color: #fff;
  background: #535353;
  border: none;
  border-radius: 0.42vw;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.monuments-selector-dropdown svg {
  width: 0.8vw;
  height: 0.8vw;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.monuments-selector-dropdown-wrap.open .monuments-selector-dropdown svg {
  transform: rotate(180deg);
}

.monuments-selector-dropdown:hover {
  background: #636363;
}

.monuments-selector-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.3vw;
  background: #fff;
  border: 0.05vw solid #E0E0E0;
  border-radius: 0.42vw;
  box-shadow: 0 0.3vw 1vw rgba(0,0,0,0.1);
  list-style: none;
  padding: 0.5vw 0;
  z-index: 100;
  display: none;
}

.monuments-selector-dropdown-wrap.open .monuments-selector-dropdown-menu {
  display: block;
}

.monuments-selector-dropdown-menu li {
  padding: 0.7vw 1.2vw;
  font-size: 0.95vw;
  font-weight: 400;
  color: #323232;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.monuments-selector-dropdown-menu li:hover {
  background: #F5F5F5;
  color: #E8621A;
}

.monuments-selector-input {
  width: 100%;
  padding: 0.9vw 1.2vw;
  font-size: 0.95vw;
  font-weight: 400;
  color: #323232;
  background: #fff;
  border: 0.05vw solid #E0E0E0;
  border-radius: 0.42vw;
  font-family: inherit;
}

.monuments-selector-input::placeholder {
  color: #B0B0B0;
}

.monuments-selector-cta {
  flex: 1 1 22vw;
  min-width: 0;
  padding: 1.5vw;
  background: #fff;
  border: 0.05vw solid #E0E0E0;
  border-radius: 0.42vw;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}

.monuments-selector-cta-text {
  font-size: 0.95vw;
  font-weight: 400;
  color: #323232;
  line-height: 1.5;
  margin: 0;
  font-family: inherit;
  text-align: center;
}

.monuments-selector-cta-btn {
  width: 100%;
  padding: 1vw 1.2vw;
  font-size: 0.95vw;
  font-weight: 600;
  color: #fff;
  background: #FF732A;
  border: none;
  border-radius: 0.42vw;
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
  transition: all 0.3s ease;
}

.monuments-selector-cta-btn:hover {
  background: #E8621A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
  transform: translateY(-0.2vw);
}

/* MONUMENTS BENEFITS SECTION */
.monuments-benefits {
  width: 100%;
  padding: 4vw 5vw 5vw;
  background: #323232;
  box-sizing: border-box;
}

.monuments-benefits-wrap {
  width: 100%;
  max-width: 100%;
}

.monuments-benefits-title {
  font-size: 1.9vw;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 2.5vw;
  font-family: inherit;
}

.monuments-benefits-title-bottom {
  margin: 3.5vw 0 1.5vw;
}

.monuments-benefits-main {
  display: flex;
  gap: 1vw;
  align-items: stretch;
}

.monuments-benefits-grid {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  align-content: stretch;
  align-items: stretch;
}

.monuments-benefits-card {
  flex: 0 0 calc(50% - 0.6vw);
  min-width: 0;
  padding: 1.2vw 1.5vw;
  border: 0.05vw solid #FF732A;
  border-radius: 0.42vw;
  transition: border-color 0.2s;
}

.monuments-benefits-card:hover {
  border-color: #E8621A;
}

.monuments-benefits-card-title {
  font-size: 1.2vw;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 0.5vw;
  font-family: inherit;
}

.monuments-benefits-card-desc {
  font-size: 0.9vw;
  font-weight: 400;
  color: #ddd;
  line-height: 1.2;
  margin: 0;
  font-family: inherit;
}

.monuments-benefits-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}

.monuments-benefits-box {
  padding: 1.5vw 1.8vw;
  background: #424242;
  border: none;
  border-radius: 0.42vw;
}

.monuments-benefits-box:nth-child(2) {
  background: #403F3F;
}

.monuments-benefits-box-title {
  font-size: 1.2vw;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 0.8vw;
  font-family: inherit;
}

.monuments-benefits-box-desc {
  font-size: 0.9vw;
  font-weight: 400;
  color: #ddd;
  line-height: 1.5;
  margin: 0 0 0.8vw;
  font-family: inherit;
}

.monuments-benefits-box-addr {
  font-size: 1.2vw;
  font-weight: 400;
  color: #fff;
  margin: 0 0 1vw;
  font-family: inherit;
}

.monuments-benefits-box-btns {
  display: flex;
  gap: 0.8vw;
}

.monuments-benefits-btn {
  /* flex: 1; */
  padding: 0.9vw 1vw;
  font-size: 0.85vw;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 0.42vw;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.monuments-benefits-btn-primary {
  background: #FF732A;
  color: #fff;
  border: none;
}

.monuments-benefits-btn-primary:hover {
  background: #E8621A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
  transform: translateY(-0.2vw);
}

.monuments-benefits-btn-secondary {
  background: #fff;
  color: #323232;
  border: 0.05vw solid #535353;
}

.monuments-benefits-btn-secondary:hover {
  border-color: #FF732A;
  color: #FF732A;
}

.monuments-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.monuments-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 0.9vw;
  font-weight: 400;
  color: #ddd;
  margin-bottom: 0.5vw;
  font-family: inherit;
}

.monuments-benefits-list li:last-child {
  margin-bottom: 0;
}

.monuments-benefits-list li img {
  width: 0.9vw;
  height: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.monuments-benefits-bottom {
  display: flex;
  gap: 1.2vw;
}

.monuments-benefits-link {
  flex: 1;
  padding: 1.2vw 1.5vw;
  border: 0.05vw solid #E5A77B;
  border-radius: 0.42vw;
  text-decoration: none;
}

.monuments-benefits-link .monuments-benefits-card-title {
  color: #fff;
}

.monuments-benefits-link .monuments-benefits-card-desc {
  color: #ddd;
}

/* MONUMENTS CATALOG SECTION */
.monuments-catalog {
  width: 100%;
  padding: 3vw 5vw 5vw;
  background: #fff;
  box-sizing: border-box;
}

.monuments-catalog-wrap {
  width: 100%;
  max-width: 100%;
}

.monuments-catalog-title {
  font-size: 1.9vw;
  font-weight: 400;
  color: #323232;
  text-transform: uppercase;
  margin: 0 0 0.8vw;
  font-family: inherit;
}

.monuments-catalog-subtitle {
  font-size: 1.2vw;
  color: #898989;
  margin: 0 0 2.5vw;
  font-family: inherit;
  font-weight: 400;
}

.monuments-catalog-layout {
  display: flex;
  gap: 2.5vw;
  align-items: flex-start;
}

/* SIDEBAR FILTER */
.monuments-catalog-sidebar {
  flex: 0 0 20vw;
  min-width: 0;
}

.monuments-filter-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6vw;
  font-size: 1vw;
  color: #323232;
  margin-bottom: 1.5vw;
  font-family: inherit;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0;
  cursor: default;
}

.monuments-filter-search-icon {
  width: 1.2vw;
  height: 1.2vw;
}

.monuments-filter-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #323232;
  font-size: 1vw;
  font-family: inherit;
  outline: none;
}

.monuments-filter-search-input::placeholder {
  color: #777;
}

.monuments-filter-toggle-btn {
  display: none;
  border: none;
  background: transparent;
  padding: 0;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.monuments-filter-toggle-arrow {
  display: none;
  width: 0.9vw;
  height: 0.9vw;
  transition: transform 0.25s ease;
}

.monuments-catalog-sidebar.filter-open .monuments-filter-toggle-arrow {
  transform: rotate(180deg);
}

.monuments-filter-body {
  display: block;
}

.monuments-filter-select-wrap {
  margin-bottom: 1.2vw;
}

.monuments-filter-label {
  display: block;
  font-size: 0.8vw;
  color: #535353;
  margin-bottom: 0.4vw;
  font-family: inherit;
}

.monuments-filter-select {
  width: 100%;
  padding: 0.9vw 1.2vw;
  font-size: 0.9vw;
  color: #323232;
  background: #F5F5F5;
  border: 0.05vw solid #E0E0E0;
  border-radius: 0.42vw;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L6 6L10 2' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1vw center;
  background-size: 0.8vw;
  padding-right: 2.5vw;
  cursor: pointer;
  font-family: inherit;
}

.monuments-filter-check-group {
  margin: 1.5vw 0;
}

.monuments-filter-check-title {
  font-size: 0.8vw;
  color: #535353;
  margin-bottom: 0.8vw;
  font-family: inherit;
}

.monuments-filter-check-label {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 0.9vw;
  color: #323232;
  cursor: pointer;
  margin-bottom: 0.6vw;
  font-family: inherit;
}

.monuments-filter-checkbox {
  display: none;
}

.monuments-filter-checkmark {
  width: 1vw;
  height: 1vw;
  border: 0.05vw solid #999;
  border-radius: 0.16vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monuments-filter-checkbox:checked + .monuments-filter-checkmark {
  background: #FF732A;
  border-color: #FF732A;
}

.monuments-filter-checkbox:checked + .monuments-filter-checkmark::after {
  content: 'âœ“';
  color: #fff;
  font-size: 0.65vw;
  font-weight: bold;
}

.monuments-filter-reset {
  width: 100%;
  padding: 0.9vw 1.2vw;
  font-size: 0.9vw;
  color: #fff;
  background: #535353;
  border: none;
  border-radius: 0.42vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6vw;
  font-family: inherit;
  transition: all 0.3s ease;
}

.monuments-filter-reset:hover {
  background: #7a7a7a;
}

.monuments-filter-reset svg {
  width: 0.9vw;
  height: 0.9vw;
}

/* MAIN CONTENT */
.monuments-catalog-main {
  flex: 1;
  min-width: 0;
}

.monuments-catalog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
  margin-bottom: 2vw;
}

.monuments-catalog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6vw;
}

.monuments-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  padding: 0.5vw 1vw;
  font-size: 0.8vw;
  border-radius: 2vw;
  font-family: inherit;
}

.monuments-chip-dark {
  background: #323232;
  color: #fff;
}

.monuments-chip-light {
  background: #F0F0F0;
  color: #535353;
}

.monuments-chip-remove {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-size: 1.1vw;
  line-height: 1;
  opacity: 0.8;
}

.monuments-chip-remove:hover {
  opacity: 1;
}

.monuments-catalog-sort {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.9vw;
  color: #535353;
  font-family: inherit;
}

.monuments-sort-dropdown {
  position: relative;
}

.monuments-sort-btn {
  display: flex;
  align-items: center;
  gap: 0.4vw;
  background: none;
  border: none;
  color: #323232;
  font-size: 0.9vw;
  cursor: pointer;
  font-family: inherit;
  padding: 0.4vw 0;
}

.monuments-sort-btn:hover {
  color: #E8621A;
}

.monuments-sort-btn svg,
.monuments-sort-arrow {
  width: 0.8vw;
  height: 0.8vw;
  transition: transform 0.2s ease;
}

.monuments-sort-dropdown.open .monuments-sort-arrow {
  transform: rotate(180deg);
}

.monuments-sort-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.3vw;
  min-width: 12vw;
  background: #fff;
  border: 0.05vw solid #E0E0E0;
  border-radius: 0.42vw;
  box-shadow: 0 0.3vw 1vw rgba(0,0,0,0.1);
  list-style: none;
  padding: 0.5vw 0;
  z-index: 100;
  display: none;
}

.monuments-sort-dropdown.open .monuments-sort-menu {
  display: block;
}

.monuments-sort-menu li {
  padding: 0.6vw 1.2vw;
  font-size: 0.9vw;
  color: #323232;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.monuments-sort-menu li:hover {
  background: #F5F5F5;
  color: #E8621A;
}

/* CARDS GRID */
.monuments-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5vw;
}

.monuments-card {
  background: #fff;
  border: 0.05vw solid #E8E8E8;
  border-radius: 0.42vw;
  /* padding: 1.2vw; */
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.monuments-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #F6F4F5;
  padding: 1vw;
}

.monuments-card:hover {
  box-shadow: 0 0.28vw 1.11vw rgba(0,0,0,0.06);
}

.monuments-card-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  /* background: #F8F8F8; */
  border-radius: 0.42vw;
  overflow: hidden;
  /* margin-bottom: 1vw; */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.monuments-card-title {
  font-size: 1.1vw;
  font-weight: 400;
  color: #323232;
  margin: 0 0 0.3vw;
  font-family: inherit;
}

.monuments-card-type {
  font-size: 0.85vw;
  color: #888;
  margin: 0 0 0.6vw;
  font-family: inherit;
  background: #FFFFFF;
  padding: .5vw;
  border-radius: 8px;
  width: fit-content;
}

.monuments-card-desc {
  font-size: 0.8vw;
  color: #666;
  line-height: 1.4;
  margin: 0 0 0.8vw;
  flex: 1;
  font-family: inherit;
}

.monuments-card-price {
  font-size: 1vw;
  font-weight: 400;
  color: #323232;
  margin: 0 0 1vw;
  font-family: inherit;
}

.monuments-card-btn-primary,
.monuments-load-more {
  width: 100%;
  padding: 1vw;
  font-size: 0.85vw;
  font-weight: 600;
  color: #fff;
  background: #FF732A;
  border: none;
  border-radius: 0.42vw;
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
  transition: all 0.3s ease;
  margin-bottom: 0.6vw;
}

.monuments-card-btn-primary:hover,
.monuments-load-more:hover {
  background: #E8621A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
  transform: translateY(-0.2vw);
}

.monuments-card-btn-secondary {
  width: 100%;
  padding: 0.7vw;
  font-size: 0.8vw;
  color: #535353;
  background: #fff;
  border: 0.05vw solid #E0E0E0;
  border-radius: 0.42vw;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.monuments-card-btn-secondary:hover {
  border-color: #FF732A;
  color: #FF732A;
}

/* BUDGET FORM SECTION */
.budget-form-section {
  width: 100%;
  padding: 4vw 5vw;
  background: #F6F6F6;
  box-sizing: border-box;
}

.budget-form-wrap {
  width: 70%;
  /* max-width: 50vw; */
  margin: 0 auto;
}

.budget-form-box {
  background: #fff;
  border-radius: 0.5vw;
  /* box-shadow: 0 0.3vw 1.5vw rgba(0, 0, 0, 0.08); */
  padding: 2.5vw 3vw;
}

.budget-form-title {
  font-size: 1.25vw;
  font-weight: 400;
  color: #323232;
  text-transform: uppercase;
  margin: 0 0 1vw;
  font-family: inherit;
}

.budget-form-desc {
  font-size: 0.9vw;
  font-weight: 400;
  color: #535353;
  line-height: 1.5;
  margin: 0 0 2vw;
  font-family: inherit;
  width: 64%;
}

.budget-form {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.budget-form-row {
  display: flex;
  gap: 1.2vw;
}

.budget-form-row .budget-form-input,
.budget-form-row .budget-form-btn {
  flex: 1;
  min-width: 0;
}

.budget-form-input,
.budget-form-textarea {
  padding: 1vw 1.2vw;
  font-size: 0.9vw;
  font-weight: 400;
  color: #323232;
  background: #fff;
  border: 0.05vw solid #FF8C42;
  border-radius: 0.42vw;
  font-family: inherit;
}

.budget-form-input::placeholder,
.budget-form-textarea::placeholder {
  color: #999;
}

.budget-form-textarea {
  resize: vertical;
  min-height: 6vw;
}

.budget-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6vw;
  padding: 1vw 1.5vw;
  font-size: 0.9vw;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 0.42vw;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.budget-form-btn-primary {
  background: #FF8C42;
  color: #fff;
}

.budget-form-btn-primary:hover {
  background: #E8621A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
  transform: translateY(-0.2vw);
}

.budget-form-btn-secondary {
  background: #403F3F;
  color: #fff;
}

.budget-form-btn-secondary:hover {
  background: #323232;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.3);
  transform: translateY(-0.2vw);
}

.budget-form-btn-icon {
  width: 1.1vw;
  height: 1.1vw;
}

.budget-form-checkboxes {
  display: flex;
  gap: 1.5vw;
}

.budget-form-check {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6vw;
  font-size: 0.8vw;
  font-weight: 400;
  color: #535353;
  cursor: pointer;
  font-family: inherit;
}

.budget-form-check input {
  margin-top: 0.2vw;
  flex-shrink: 0;
}

.budget-form-check span {
  line-height: 1.4;
}

/* RITUAL LANDSCAPE SECTION */
.ritual-landscape {
  width: 100%;
  padding: 0 5vw;
  /* background: #F7F7F7; */
  box-sizing: border-box;
}

.ritual-landscape-wrap {
  display: flex;
  gap: 3vw;
  align-items: stretch;
  /* max-width: 90vw; */
  margin: 0 auto;
}

.ritual-landscape-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ritual-landscape-title {
  font-size: 3.2vw;
  font-weight: 400;
  color: #FF7034;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 1.5vw;
  font-family: inherit;
}

.ritual-landscape-desc {
  font-size: 1.2vw;
  font-weight: 400;
  color: #535353;
  line-height: 1.5;
  margin: 0 0 1.5vw;
  font-family: inherit;
}

.ritual-landscape-list {
  list-style: none;
  margin: 0 0 2vw;
  padding: 0;
}

.ritual-landscape-list li {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  font-size: .9vw;
  font-weight: 400;
  color: #323232;
  margin-bottom: 0.5vw;
  font-family: inherit;
}

.ritual-landscape-list li:last-child {
  margin-bottom: 0;
}

.ritual-landscape-list li img {
  width: 1.2vw;
  height: auto;
  flex-shrink: 0;
}

.ritual-landscape-btns {
  display: flex;
  gap: 1.2vw;
}

.ritual-landscape-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6vw;
  padding: 1vw 1.8vw;
  font-size: 0.95vw;
  font-weight: 500;
  border-radius: 0.42vw;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.ritual-landscape-btn-primary {
  background: #FF7034;
  color: #fff;
  text-transform: uppercase;
}

.ritual-landscape-btn-primary:hover {
  background: #E8621A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
  transform: translateY(-0.2vw);
}

.ritual-landscape-btn-secondary {
  background: #fff;
  color: #323232;
  border: 0.05vw solid #CCCCCC;
}

.ritual-landscape-btn-secondary:hover {
  border-color: #FF7034;
  color: #FF7034;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.1);
  transform: translateY(-0.2vw);
}

.ritual-landscape-btn-icon {
  width: 1.2vw;
  height: 1.2vw;
  object-fit: contain;
}

.ritual-landscape-btn-secondary:hover .ritual-landscape-btn-icon {
  filter: brightness(0) saturate(100%) invert(45%) sepia(93%) saturate(1500%) hue-rotate(350deg);
}

.ritual-landscape-right {
  flex: 1;
  min-width: 0;
  min-height: 25vw;
}

.ritual-landscape-img {
  width: 100%;
  height: 100%;
  min-height: 25vw;
  object-fit: cover;
  border-radius: 0.42vw;
}

/* RITUAL TYPES (Ð’Ð˜Ð”Ð« Ð ÐÐ‘ÐžÐ¢) SECTION */
.ritual-types {
  width: 100%;
  padding: 4vw 5vw 5vw;
  background: #FFFFFF;
  box-sizing: border-box;
}

.ritual-types-wrap {
  width: 100%;
  /* max-width: 90vw; */
  margin: 0 auto;
}

.ritual-types-title {
  font-size: 1.9vw;
  font-weight: 400;
  color: #323232;
  margin: 0 0 1.5vw;
  font-family: inherit;
}

.ritual-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  justify-content: flex-start;
}

.ritual-types-card {
  flex: 0 0 calc((100% - 2vw) / 3);
  min-width: 0;
  min-height: 23vw;
  background: #fff;
  /* border-radius: 0.5vw; */
  overflow: hidden;
  /* box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.08); */
  display: flex;
  flex-direction: column;
}

.ritual-types-card-img-wrap {
  width: 100%;
  height: 12vw;
  overflow: hidden;
  flex-shrink: 0;
}

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

.ritual-types-card-body {
  flex: 1;
  padding: 1vw 1.2vw;
  background: #F6F4F5;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.ritual-types-card-title {
  font-size: 1.2vw;
  font-weight: 400;
  color: #323232;
  margin: 0;
  font-family: inherit;
}

.ritual-types-card-desc {
  font-size: 0.9vw;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  font-family: inherit;
}

.ritual-types-card-btns {
  display: flex;
  gap: 0.8vw;
  margin-top: 0.2vw;
}

.ritual-types-card-btn {
  flex: 1;
  padding: 0.8vw 1vw;
  font-size: 0.85vw;
  font-weight: 400;
  border-radius: 0.42vw;
  cursor: pointer;
  font-family: inherit;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ritual-types-card-btn-primary {
  background: #FF7034;
  color: #fff;
}

.ritual-types-card-btn-primary:hover {
  background: #E8621A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
  transform: translateY(-0.2vw);
}

.ritual-types-card-btn-secondary {
  background: #fff;
  color: #323232;
  border: 0.05vw solid #CCCCCC;
}

.ritual-types-card-btn-secondary:hover {
  border-color: #FF7034;
  color: #FF7034;
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.1);
  transform: translateY(-0.2vw);
}

.ritual-types-card-btn-icon {
  width: 1vw;
  height: 1vw;
  object-fit: contain;
}

/* RITUAL CARE (Ð£Ð¥ÐžÐ” Ð—Ð ÐœÐžÐ“Ð˜Ð›ÐžÐ™) SECTION */
.ritual-care {
  width: 100%;
  padding: 4vw 5vw 5vw;
  background: #323232;
  box-sizing: border-box;
}

.ritual-care-wrap {
  width: 100%;
  /* max-width: 90vw; */
  margin: 0 auto;
}

.ritual-care-left {
  flex: 1;
  min-width: 0;
}

.ritual-care-top {
  /* margin-bottom: 1vw; */
}

.ritual-care-title {
  font-size: 1.9vw;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-family: inherit;
}

.ritual-care-desc {
  margin-bottom: 2vw;
}

.ritual-care-subtitle {
  font-size: 1.2vw;
  font-weight: 400;
  color: #898989;
  margin: 0;
  line-height: 1.4;
  font-family: inherit;
}

.ritual-care-main {
  display: flex;
  gap: 2vw;
  align-items: stretch;
}

.ritual-care-grid {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  justify-content: flex-start;
  min-width: 0;
  align-content: stretch;
}

.ritual-care-card {
  flex: 0 0 calc((100% - 2vw) / 3);
  padding: 1.2vw 1.5vw;
  background: #323232;
  border: 0.08vw solid #FF7034;
  border-radius: 0.42vw;
}

.ritual-care-card-title {
  font-size: 1.2vw;
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.4vw;
  font-family: inherit;
}

.ritual-care-card-desc {
  font-size: 0.9vw;
  font-weight: 400;
  color: #F6F4F5;
  margin: 0;
  line-height: 1.4;
  font-family: inherit;
}

.ritual-care-right {
  flex: 0 0 22vw;
  display: flex;
}

.ritual-care-box {
  flex: 1;
  padding: 1.5vw 1.8vw;
  background: #403F3F;
  border-radius: 0.42vw;
}

.ritual-care-box-title {
  font-size: 1.2vw;
  font-weight: 400;
  color: #fff;
  margin: 0 0 1.2vw;
  font-family: inherit;
}

.ritual-care-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ritual-care-list li {
  display: flex;
  align-items: self-start;
  gap: 0.6vw;
  margin-bottom: 0.8vw;
  font-size: 0.95vw;
  font-weight: 400;
  color: #fff;
  font-family: inherit;
}

.ritual-care-list li:last-child {
  margin-bottom: 0;
}

.ritual-care-list-icon {
  width: 0.9vw;
  height: 0.9vw;
  flex-shrink: 0;
  object-fit: contain;
  /* margin-top: 3px; */
}

.ritual-care-list a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.ritual-care-list a:hover {
  color: #FF7034;
}

/* BLOG (ÐŸÐžÐ›Ð•Ð—ÐÐÐ¯ Ð˜ÐÐ¤ÐžÐ ÐœÐÐ¦Ð˜Ð¯) SECTION */
.blog-section {
  width: 100%;
  padding: 0 5vw;
  /* background: #fff; */
  box-sizing: border-box;
}

.blog-wrap {
  width: 60%;
  /* max-width: 65vw; */
  margin: 0 auto;
}

.blog-title {
  font-size: 1.8vw;
  font-weight: 400;
  color: #FF7034;
  margin: 0 0 2.5vw;
  font-family: inherit;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  justify-content: flex-start;
}

.blog-card {
  flex: 0 0 calc((100% - 1vw) / 2);
  background: #fff;
  border-radius: 0.5vw;
  overflow: hidden;
  /* box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.08); */
  display: flex;
  flex-direction: column;
}

.blog-card-img-wrap {
  width: 100%;
  height: 14vw;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.blog-card-body {
  flex: 1;
  padding: 1.2vw 1.5vw;
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
}

.blog-card-title {
  font-size: 1.05vw;
  font-weight: 400;
  color: #323232;
  margin: 0;
  text-transform: uppercase;
  font-family: inherit;
}

.blog-card-desc {
  font-size: 0.9vw;
  font-weight: 400;
  color: #535353;
  margin: 0;
  line-height: 1.5;
  font-family: inherit;
}

.blog-card-link {
  font-size: 0.9vw;
  font-weight: 400;
  color: #323232;
  text-decoration: underline;
  margin-top: 0.2vw;
  font-family: inherit;
}

.blog-card-link:hover {
  color: #FF7034;
}

.blog-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5vw;
}

.blog-more-btn {
  padding: 1vw 2.5vw;
  font-size: 1vw;
  font-weight: 400;
  color: #fff;
  background: #FF7034;
  border: none;
  border-radius: 0.42vw;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.blog-more-btn:hover {
  background: #E8621A;
  box-shadow: 0 0.5vw 1.5vw rgba(232, 98, 26, 0.4);
  transform: translateY(-0.2vw);
}

/* BLOG DETAIL PAGE */
.blog-detail {
  width: 100%;
  padding: 4vw 5vw 5vw;
  background: #F5F5F5;
  box-sizing: border-box;
}

.blog-detail-wrap {
  width: 68%;
  /* max-width: 75vw; */
  margin: 0 auto;
  display: flex;
  gap: 5vw;
  align-items: flex-start;
}

.blog-detail-main {
  /* flex: 1; */
  min-width: 0;
  width: 100%;
}

.blog-detail-img-wrap {
  width: 70%;
  /* height: 22vw; */
  overflow: hidden;
  margin-bottom: 1.5vw;
  border-radius: 0.5vw;
}

.blog-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.blog-detail-title {
  font-size: 1.6vw;
  font-weight: 400;
  color: #323232;
  margin: 0 0 1.5vw;
  text-transform: uppercase;
  font-family: 'GraphikLCG', sans-serif;
}

.blog-detail-content {
  font-size: 1vw;
  font-weight: 400;
  color: #323232;
  line-height: 1.6;
  font-family: 'GraphikLCG', sans-serif;
}

.blog-detail-content p {
  margin: 0 0 1.2vw;
}

.blog-detail-content p:last-child {
  margin-bottom: 0;
}

.blog-detail-highlight {
  padding: 1.5vw 1.8vw;
  background: #403F3F;
  color: #fff;
  border-radius: 0.5vw;
  margin: 1.5vw 0;
}

.blog-detail-highlight p {
  margin: 0;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  font-family: 'GraphikLCG', sans-serif;
}

.blog-detail-faq {
  margin: 2vw 0;
}

.blog-detail-faq-item {
  margin-bottom: 1.2vw;
  padding: 1.2vw 1.5vw;
  background: #fff;
  border-radius: 0.5vw;
}

.blog-detail-faq-item:last-child {
  margin-bottom: 0;
}

.blog-detail-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
  padding: 1.2vw 0;
  cursor: pointer;
}

.blog-detail-faq-title {
  font-size: .9vw;
  font-weight: 400;
  color: #323232;
  margin: 0;
  font-family: 'GraphikLCG', sans-serif;
}

.blog-detail-faq-toggle {
  width: 1.2vw;
  height: 1.2vw;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.blog-detail-faq-toggle::before,
.blog-detail-faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8vw;
  height: 0.08vw;
  background: #323232;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

.blog-detail-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-detail-faq-item.active .blog-detail-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.blog-detail-faq-body {
  display: none;
  padding: 0 0 1.2vw;
}

.blog-detail-faq-item.active .blog-detail-faq-body {
  display: block;
}

.blog-detail-faq-body p {
  margin: 0;
  font-size: 0.95vw;
  font-weight: 400;
  color: #535353;
  line-height: 1.5;
  font-family: 'GraphikLCG', sans-serif;
}

.blog-detail-sidebar {
  /* flex: 0 0 22vw; */
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: 20vw;
  flex-shrink: 0;
}

.blog-detail-card {
  background: #fff;
  border-radius: 0.5vw;
  overflow: hidden;
  box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.blog-detail-card-img-wrap {
  width: 100%;
  height: 10vw;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-detail-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.blog-detail-card-body {
  padding: 1vw 1.2vw;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.blog-detail-card-title {
  font-size: .9vw;
  font-weight: 400;
  color: #323232;
  margin: 0;
  font-family: 'GraphikLCG', sans-serif;
}

.blog-detail-card-link {
  font-size: 0.8vw;
  font-weight: 400;
  color: #323232;
  text-decoration: underline;
  font-family: 'GraphikLCG', sans-serif;
}

.blog-detail-card-link:hover {
  color: #FF7034;
}

/* SUCCESS PAGE */
.success-section {
  width: 100%;
  min-height: 50vw;
  padding: 0 5vw;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.success-content {
  text-align: center;
  /* max-width: 40vw; */
}

.success-icon {
  width: 8vw;
  height: auto;
  margin-bottom: 2vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.success-title {
  font-size: 1.8vw;
  font-weight: 400;
  color: #323232;
  margin: 0 0 1vw;
  font-family: 'GraphikLCG', sans-serif;
  text-transform: uppercase;
}

.success-text {
  font-size: 1.1vw;
  font-weight: 400;
  color: #323232;
  margin: 0 0 2.5vw;
  font-family: 'GraphikLCG', sans-serif;
}

.success-btn {
  display: inline-block;
  padding: 1.2vw 2.5vw;
  background: #FF7034;
  color: #fff;
  font-size: 1vw;
  font-weight: 400;
  font-family: 'GraphikLCG', sans-serif;
  text-decoration: none;
  border-radius: 0.5vw;
  transition: background 0.3s, transform 0.2s;
}

.success-btn:hover {
  background: #E8621A;
  transform: translateY(-0.2vw);
}

/* ERROR 404 PAGE */
.error-section {
  width: 100%;
  min-height: 42vw;
  padding: 0vw 5vw;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.error-content {
  text-align: center;
  max-width: 45vw;
}

.error-icon {
  width: 100%;
  max-width: 25vw;
  height: auto;
  margin: 0 auto 2.5vw;
  display: block;
}

.error-title {
  font-size: 1.8vw;
  font-weight: 400;
  color: #323232;
  margin: 0 0 1vw;
  font-family: 'GraphikLCG', sans-serif;
  text-transform: uppercase;
}

.error-text {
  font-size: 1.1vw;
  font-weight: 400;
  color: #323232;
  margin: 0 0 2.5vw;
  font-family: 'GraphikLCG', sans-serif;
}

.error-btn {
  display: inline-block;
  padding: 1.2vw 2.5vw;
  background: #FF7034;
  color: #fff;
  font-size: 1vw;
  font-weight: 400;
  font-family: 'GraphikLCG', sans-serif;
  text-decoration: none;
  border-radius: 0.5vw;
  transition: background 0.3s, transform 0.2s;
}

.error-btn:hover {
  background: #E8621A;
  transform: translateY(-0.2vw);
}

/* ========== RESPONSIVE max-width: 1024px ========== */
/* Font +20%, container left/right padding -20% */

@media (max-width: 1024px) {
  /* HEADER & MENU */
  .header {
    padding: 0.84vw 20px;
  }

  .header-left {
    gap: 1vw;
  }

  .catalog-btn {
    font-size: 1.08vw;
    gap: 0.67vw;
    padding: 0.67vw 1.33vw;
  }

  .catalog-btn .hamburger-icon {
    width: 1.33vw;
    height: 1.33vw;
  }

  .catalog-btn .hamburger-icon span {
    height: 0.14vw;
    border-radius: 0.08vw;
  }

  .catalog-btn .hamburger-icon span:nth-child(1) {
    top: 0.25vw;
  }

  .catalog-btn .hamburger-icon span:nth-child(2) {
    top: 0.60vw;
  }

  .catalog-btn .hamburger-icon span:nth-child(3) {
    top: 0.95vw;
  }

  .catalog-btn.active .hamburger-icon span:nth-child(1),
  .catalog-btn.active .hamburger-icon span:nth-child(3) {
    top: 0.60vw;
  }

  .header-nav {
    gap: 1.8vw;
    margin-left: 0.6vw;
    padding-left: 1.2vw;
  }

  .header-nav a {
    font-size: 1.08vw;
  }

  .header-right {
    gap: 3.6vw;
  }

  .header-location {
    gap: 0.5vw;
  }

  .header-location .pin-icon {
    width: 1.44vw;
  }

  .header-location-text span:first-child {
    font-size: 1.08vw;
  }

  .header-location-text span:last-child {
    font-size: 1vw;
  }

  .header-phone {
    gap: 0.5vw;
  }

  .header-phone .phone-icon {
    width: 1.08vw;
    margin-top: 0.24vw;
  }

  .header-phone-text a:first-child {
    font-size: 1.32vw;
  }

  .header-phone-text a:last-child {
    font-size: 1vw;
  }

  .header-socials {
    gap: 0.5vw;
  }

  .header-socials a svg,
  .header-socials a img {
    width: 2.52vw;
    height: 2.52vw;
  }

  .catalog-menu {
    padding: 1.8vw 1.66vw 3vw;
  }

  .catalog-categories {
    gap: 1.2vw;
    min-width: 16.2vw;
    margin-right: 4.86vw;
  }

  .catalog-category-btn {
    font-size: 1.08vw;
    padding: 0.84vw 0.8vw;
  }

  .catalog-column {
    gap: 1.5vw;
    min-width: 16.2vw;
  }

  .catalog-group-title {
    font-size: 1.14vw;
    margin-bottom: 0.84vw;
  }

  .catalog-group-items {
    gap: 0.54vw;
  }

  .catalog-group-items a {
    font-size: 0.91vw;
  }

  .catalog-toggle-btn {
    font-size: 0.91vw;
    gap: 0.34vw;
    margin-top: 0.84vw;
  }

  .catalog-toggle-btn svg {
    width: 0.72vw;
    height: 0.72vw;
  }

  .catalog-hidden-items {
    gap: 0.54vw;
    margin-top: 0.54vw;
  }

  .catalog-hidden-items a {
    font-size: 0.91vw;
  }

  .catalog-static-group {
    gap: 0.42vw;
    margin-bottom: 0.6vw;
  }

  .catalog-static-header {
    font-size: 1.08vw;
    padding: 0.84vw 0.8vw;
    margin-bottom: 0.42vw;
  }

  .catalog-static-items {
    gap: 0.42vw;
    padding-left: 0.8vw;
  }

  .catalog-static-items a {
    font-size: 0.91vw;
  }

  /* BANNER */
  .banner-container {
    padding-left: 20px;
  }

  .banner-left {
    padding-top: 3.6vw;
  }

  .banner-logo {
    width: 14.4vw;
    margin-bottom: 2.4vw;
  }

  .banner-title {
    font-size: 3.84vw;
    margin-bottom: 1.8vw;
  }

  .banner-title .underline {
    border-bottom-width: 0.18vw;
  }

  .banner-subtitle {
    font-size: 1.92vw;
    margin-bottom: 1.2vw;
  }

  .banner-description {
    font-size: 1.92vw;
    margin-bottom: 2.4vw;
  }

  .banner-features {
    gap: 0.96vw;
  }

  .banner-features li {
    gap: 0.84vw;
    font-size: 1.08vw;
  }

  .banner-features li img {
    width: 1.44vw;
    height: 1.44vw;
  }

  .banner-right {
    padding: 4.8vw 2vw 8.4vw 1.6vw;
    min-height: 48vw;
  }

  .banner-man-wrapper {
    left: -8.4vw;
    width: 33.6vw;
  }

  .banner-content-box {
    gap: 3.6vw;
  }

  .banner-director-info {
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    z-index: 11;
  }

  .director-title {
    margin-bottom: 0.6vw;
  }

  .director-name {
    font-size: 1.32vw;
  }

  .banner-right-col {
    gap: 1.2vw;
  }

  .banner-contact-block {
    padding: 2vw;
    gap: 1.44vw;
    min-width: 21.6vw;
  }

  .contact-time-row {
    margin-bottom: 0.6vw;
  }

  .time-large {
    font-size: 4.2vw;
  }

  .time-small {
    font-size: 0.96vw;
    max-width: 7.2vw;
  }

  .banner-phone {
    font-size: 2.64vw;
  }

  .agent-time {
    font-size: 0.96vw;
    margin-top: -0.6vw;
    margin-bottom: 1.2vw;
  }

  .banner-btn {
    gap: 0.6vw;
    padding: 1.08vw;
    font-size: 0.9vw;
  }

  .btn-callback img {
    width: 1.08vw;
  }

  .btn-consult {
    margin-top: 0.6vw;
  }

  .banner-legal {
    margin-top: 0.6vw;
    font-size: 0.78vw;
    max-width: 24vw;
  }

  /* STEPS */
  .steps-section {
    padding: 0 20px 2.4vw 20px;
    margin-top: 7vw;
  }

  .steps-container {
    gap: 1.8vw;
  }

  .steps-sidebar {
    padding: 1.2vw 20px;
  }

  .steps-sidebar-title {
    font-size: 2.4vw;
    margin-bottom: 3vw;
  }

  .steps-list {
    gap: 0.96vw;
  }

  .step-item {
    padding: 1.2vw 20px;
    font-size: 0.96vw;
  }

  .steps-title {
    font-size: 2.4vw;
    margin-bottom: 1.2vw;
  }

  .steps-grid {
    gap: 1.8vw;
  }

  .step-card {
    padding: 1.2vw 20px;
    gap: 0.6vw;
  }

  .step-number {
    font-size: 1.8vw;
  }

  .step-card-title {
    font-size: 1.44vw;
  }

  .step-card-body {
    gap: 0.6vw;
  }

  .step-phone {
    gap: 0.6vw;
    font-size: 2.16vw;
  }

  .step-phone img {
    width: 1.44vw;
    height: 1.44vw;
  }

  .step-card-text {
    font-size: 1.08vw;
  }

  /* PRICING */
  .pricing-section {
    padding: 6vw 20px;
  }

  .pricing-title {
    font-size: 2.64vw;
    margin-bottom: 1.8vw;
  }

  .pricing-subtitle {
    font-size: 1.32vw;
    margin-bottom: 3.6vw;
  }

  .pricing-grid {
    gap: 1.8vw;
    margin-bottom: 4.8vw;
  }

  .pricing-card {
    padding: 1.2vw 20px;
  }

  .pricing-card-icon {
    margin-bottom: 1.8vw;
  }

  .pricing-card-icon img {
    height: 3vw;
  }

  .pricing-card-title {
    font-size: 1.68vw;
    margin-bottom: 1.2vw;
  }

  .pricing-card-desc {
    font-size: 0.96vw;
  }

  .pricing-price-block {
    margin-top: 3.6vw;
    margin-bottom: 1.8vw;
  }

  .old-price {
    font-size: 1.08vw;
    margin-bottom: 0.6vw;
  }

  .new-price {
    font-size: 2.64vw;
    margin-bottom: 0.6vw;
  }

  .price-subtext {
    font-size: 0.84vw;
  }

  .pricing-btn {
    padding: 1.2vw;
    font-size: 0.96vw;
    margin-bottom: 0.96vw;
    gap: 0.6vw;
  }

  .pricing-btn-details-dark img {
    width: 0.96vw;
  }

  .pricing-bottom-info {
    padding-top: 3.6vw;
  }

  .info-title {
    font-size: 2.16vw;
    margin-bottom: 1.8vw;
  }

  .info-text {
    font-size: 1.2vw;
    margin-bottom: 2.4vw;
  }

  .info-subtext {
    font-size: 0.96vw;
  }

  .info-list {
    gap: 0.96vw;
  }

  .info-list li {
    gap: 0.96vw;
    font-size: 1.08vw;
  }

  .info-list li img {
    width: 1.32vw;
  }

  .info-actions {
    gap: 1.2vw;
  }

  .info-btn-smeta {
    padding: 1.44vw;
    font-size: 1.08vw;
  }

  .info-btn-calc {
    padding: 1.44vw;
    font-size: 1.08vw;
    gap: 0.96vw;
  }

  .info-btn-calc img {
    width: 1.44vw;
  }

  .info-note {
    font-size: 1.44vw;
    margin-top: 1.2vw;
  }

  /* TRUST */
  .trust-section {
    padding: 3.6vw 20px;
  }

  .trust-title {
    font-size: 2.64vw;
    margin-bottom: 1.2vw;
  }

  .trust-subtitle {
    font-size: 1.32vw;
    margin-bottom: 1.2vw;
  }

  .trust-grid {
    gap: 1.8vw;
  }

  .trust-card {
    padding: 1.2vw 20px;
  }

  .trust-card-title {
    font-size: 1.2vw;
  }

  .trust-card-footer {
    margin-top: 1.2vw;
  }

  .trust-icon {
    height: 3vw;
  }

  .trust-icons-row {
    gap: 0.6vw;
  }

  .trust-btn-details {
    font-size: 0.96vw;
  }

  /* CTA */
  .cta-section {
    padding: 3.6vw 15vw;
  }

  .cta-card {
    padding-left: 1.6vw;
  }

  .cta-title {
    font-size: 1.8vw;
    margin-bottom: 2.4vw;
  }

  .cta-form {
    gap: 1.2vw;
    max-width: 30vw;
  }

  .cta-input {
    padding: 1.32vw;
    font-size: 1.08vw;
  }

  .cta-agent-info {
    bottom: 2.4vw;
  }

  .agent-role {
    font-size: 1.08vw;
    margin-bottom: 0.36vw;
  }

  .agent-name {
    font-size: 1.44vw;
  }

  .cta-btn {
    padding: 1.2vw;
    font-size: 1.08vw;
  }

  .cta-agreements {
    gap: 0.6vw;
    margin-top: 0.96vw;
  }

  .cta-checkbox {
    gap: 0.72vw;
  }

  .cta-checkbox .checkmark {
    width: 1.08vw;
    height: 1.08vw;
    border-radius: 0.24vw;
  }

  .cta-checkbox input:checked + .checkmark::after {
    font-size: 0.84vw;
  }

  .checkbox-text {
    font-size: 0.72vw;
  }

  /* TRADITIONS */
  .traditions-section {
    padding: 3.6vw 20px;
  }

  .traditions-title {
    font-size: 2.4vw;
    margin-bottom: 1.2vw;
  }

  .traditions-grid {
    gap: 1.2vw;
    margin-bottom: 1.2vw;
  }

  .traditions-card-header {
    padding: 1.8vw 20px;
  }

  .traditions-card-title {
    font-size: 1.8vw;
    margin-bottom: 0.6vw;
  }

  .traditions-card-subtitle {
    font-size: 0.96vw;
  }

  .traditions-card-body {
    gap: 1.2vw;
    padding-right: 1.2vw;
  }

  .traditions-body-content {
    gap: 0.6vw;
  }

  .traditions-list li {
    font-size: 1.2vw;
    margin-bottom: 0.72vw;
    gap: 0.72vw;
  }

  .traditions-list li img {
    width: 1.1vw;
  }

  .traditions-footer-text {
    font-size: 0.84vw;
  }

  .traditions-bottom {
    gap: 2.4vw;
  }

  .traditions-col {
    gap: 1.8vw;
    padding-left: 20px;
  }

  .traditions-bottom-text {
    font-size: 1.08vw;
  }

  .traditions-bottom-list {
    gap: 0.6vw 2.4vw;
  }

  .traditions-bottom-list li {
    font-size: 1.1vw;
    gap: 0.6vw;
  }

  .traditions-bottom-list li img {
    width: 0.96vw;
  }

  .traditions-btn-consult {
    padding: 1.44vw;
    font-size: 1.08vw;
  }

  /* GRUZ 200 */
  .gruz-section {
    padding: 3.6vw 20px;
  }

  .gruz-title {
    font-size: 2.4vw;
    margin-bottom: 1.2vw;
  }

  .gruz-grid {
    gap: 1.2vw;
    margin-bottom: 2.4vw;
  }

  .gruz-main-card {
    padding-right: 3.6vw;
    min-height: 30vw;
  }

  .gruz-card-left {
    padding: 2.4vw 0;
  }

  .gruz-img {
    min-height: 30vw;
  }

  .gruz-card-title {
    font-size: 1.92vw;
    margin-bottom: 1.2vw;
  }

  .gruz-cta-text {
    font-size: 1.44vw;
  }

  .gruz-right-col {
    gap: 2.4vw;
  }

  .gruz-cta-box {
    padding: 2.4vw 20px;
    gap: 1.8vw;
    min-height: 18vw;
  }

  .gruz-bottom-text {
    gap: 1.2vw;
  }

  .gruz-note {
    font-size: 0.84vw;
  }

  .gruz-highlight {
    font-size: 0.96vw;
    margin-bottom: 1.8vw;
  }

  .gruz-list li {
    font-size: 1.08vw;
    margin-bottom: 0.72vw;
    gap: 0.72vw;
  }

  .gruz-btn-cta {
    padding: 1.44vw;
    font-size: 1.08vw;
  }

  /* REVIEWS */
  .reviews-section {
    padding: 3.6vw 20px;
  }

  .reviews-title {
    font-size: 2.28vw;
    margin-bottom: 3.6vw;
  }

  .review-card {
    padding: 2.4vw 20px;
    margin: 1.2vw 0;
    gap: 1.8vw;
  }

  .review-header {
    gap: 1.2vw;
  }

  .review-avatar-wrapper {
    width: 4.8vw;
    height: 4.8vw;
  }

  .review-info h4 {
    font-size: 1.4vw;
    margin-bottom: 0.36vw;
  }

  .review-stars {
    font-size: 1.1vw;
  }

  .review-text {
    font-size: 1.1vw;
  }

  .review-link {
    font-size: 1.1vw;
  }

  /* MEMORY */
  .memory-section {
    padding: 3.6vw 20px;
  }

  .memory-title {
    font-size: 2.28vw;
    margin-bottom: 1.2vw;
  }

  .memory-subtitle {
    font-size: 1.44vw;
    margin-bottom: 1.2vw;
  }

  .memory-main-flex {
    gap: 1.2vw;
  }

  .memory-info-box {
    padding: 1.8vw 20px;
    gap: 1.2vw;
    font-size: 1.08vw;
  }

  .memory-right-col {
    gap: 3.6vw;
  }

  .memory-cards {
    gap: 1.2vw;
  }

  .memory-card {
    padding: 1.8vw 20px;
  }

  .memory-card-title {
    font-size: 1.2vw;
  }

  .memory-card-bottom {
    margin-top: 2.4vw;
  }

  .memory-card-icon {
    width: 2.4vw;
  }

  .memory-card-btn {
    font-size: 1.1vw;
  }

  .memory-gifts-title {
    font-size: 1.8vw;
    margin-bottom: 2.4vw;
  }

  .memory-gifts-grid {
    gap: 1.2vw;
  }

  .memory-gift-card {
    padding: 1.2vw 20px;
  }

  .memory-gift-title {
    font-size: 1.2vw;
    margin-bottom: 1.2vw;
  }

  .memory-gift-desc {
    font-size: 1.2vw;
  }

  .memory-gift-btn {
    padding: 1.2vw 0;
    font-size: 1.08vw;
    margin-top: 1.8vw;
  }

  .memory-gifts-note {
    font-size: 1.02vw;
    margin-top: 1.8vw;
  }

  .memory-services {
    margin-top: 3.6vw;
  }

  .memory-services-flex {
    gap: 1.2vw;
  }

  .memory-service-left {
    padding: 1.8vw 0 0 1.8vw;
    padding-bottom: 1.8vw;
  }

  .memory-service-right {
    padding: 1.8vw 20px;
  }

  .memory-service-title {
    font-size: 1.92vw;
    margin-bottom: 1.2vw;
  }

  .memory-service-desc {
    font-size: 1.1vw;
    margin-bottom: 2.4vw;
  }

  .memory-service-list li {
    font-size: 1.2vw;
    margin-bottom: 0.6vw;
    gap: 0.6vw;
  }

  .memory-service-list li img {
    width: 1.4vw;
  }

  .memory-service-btn {
    padding: 1.4vw 2.4vw;
    font-size: 1.1vw;
  }

  /* CONTRACT */
  .contract-section {
    padding: 0 20px;
    margin-top: 6vw;
  }

  .contract-flex {
    gap: 1.2vw;
  }

  .contract-title {
    font-size: 2.16vw;
    margin-bottom: 1.2vw;
  }

  .contract-subtitle {
    font-size: 1.2vw;
    margin-bottom: 3.6vw;
  }

  .contract-grid {
    gap: 1.2vw;
  }

  .contract-card {
    padding: 1.8vw 20px;
    gap: 1.2vw;
  }

  .contract-card h3 {
    font-size: 1.5vw;
  }

  .contract-card p {
    font-size: 1.2vw;
  }

  .contract-btn {
    padding: 1.2vw 3.6vw;
    font-size: 1.08vw;
  }

  /* STATS */
  .stats-section {
    padding: 0 20px;
    margin-top: 6vw;
  }

  .stats-title {
    font-size: 2.16vw;
    margin-bottom: 6vw;
  }

  .stat-top {
    font-size: 1.2vw;
    margin-bottom: 0.6vw;
  }

  .stat-number {
    font-size: 4.2vw;
    margin-bottom: 1.2vw;
  }

  .stat-desc {
    font-size: 1.2vw;
    margin-top: 0.6vw;
  }

  /* LOCATIONS */
  .locations-section {
    padding: 0 20px;
    margin-top: 6vw;
  }

  .locations-grid {
    gap: 1vw;
  }

  .location-card,
  .location-info-card {
    min-height: 26vw;
  }

  .location-map {
    height: 20vw;
  }

  .location-caption {
    margin-top: 1.2vw;
    font-size: 1.08vw;
    gap: 0.6vw;
  }

  .location-caption img {
    width: 1.44vw;
  }

  .location-info-card {
    padding: 3.6vw 20px;
    min-height: 18vw;
  }

  .location-card iframe {
    height: 100%;
    min-height: 0;
  }

  .loc-info-title {
    font-size: 1.2vw;
    margin-bottom: 1.2vw;
  }

  .loc-info-details {
    font-size: 1.02vw;
    margin-bottom: 2.4vw;
  }

  .loc-info-desc {
    font-size: 1.02vw;
    margin-bottom: 2.4vw;
  }

  .loc-info-phone {
    font-size: 1.92vw;
    margin-bottom: 0.24vw;
  }

  /* FOOTER */
  .footer {
    padding: 3.6vw 20px 2.4vw;
    margin-top: 6vw;
  }

  .footer-top {
    gap: 3.6vw;
    padding-bottom: 3.6vw;
    margin-bottom: 1.8vw;
  }

  .footer-info {
    gap: 1.44vw;
  }

  .footer-logo {
    width: 19.2vw;
  }

  .footer-phone-btn {
    padding: 0.96vw 2.4vw;
    font-size: 1.44vw;
    width: 19.2vw;
  }

  .footer-callback-btn {
    padding: 1.2vw;
    font-size: 1.08vw;
    width: 19.2vw;
  }

  .footer-socials {
    gap: 0.96vw;
    margin-top: 0.6vw;
    margin-bottom: 0.6vw;
  }

  .social-icon {
    width: 3.36vw;
    height: 3.36vw;
  }

  .social-icon img {
    width: 2.52vw;
  }

  .footer-rutube-btn {
    gap: 0.6vw;
    padding: 0 1.2vw;
    height: 3.36vw;
    font-size: 0.96vw;
  }

  .footer-rutube-btn img {
    height: 1.44vw;
  }

  .footer-addresses {
    gap: 0.6vw;
  }

  .footer-addr-item {
    font-size: 1.02vw;
    gap: 0.6vw;
  }

  .footer-addr-item img {
    width: 0.96vw;
  }

  .footer-title {
    font-size: 1.32vw;
    margin-bottom: 1.8vw;
  }

  .footer-list li {
    margin-bottom: 0.6vw;
  }

  .footer-list a {
    font-size: 1.02vw;
  }

  .footer-bottom {
    font-size: 0.9vw;
    margin-top: 1.2vw;
  }

  /* POPUP FORM */
  .popup-container {
    padding: 3.6vw 20px;
    width: 45vw;
    min-width: 320px;
  }

  .popup-close {
    top: 1.2vw;
    right: 20px;
    font-size: 3.4vw;
  }

  .popup-logo {
    width: 7.2vw;
    margin-bottom: 1.8vw;
  }

  .popup-title {
    font-size: 2.16vw;
    margin-bottom: 0.6vw;
  }

  .popup-subtitle {
    font-size: 1.2vw;
    margin-bottom: 2.4vw;
  }

  .popup-form {
    gap: 1.2vw;
  }

  .form-input {
    padding: 1.2vw;
    font-size: 1.2vw;
  }

  .form-policy {
    font-size: 0.96vw;
  }

  .form-policy label {
    gap: 0.6vw;
  }

  .popup-submit-btn {
    padding: 1.2vw;
    font-size: 1.32vw;
    margin-top: 1.2vw;
  }

  /* ABOUT PAGE */
  .about-info-section {
    padding: 0.6vw 20px 6vw;
  }

  .about-info-container {
    gap: 4.8vw;
  }

  .about-main-title {
    font-size: 3vw;
    margin-bottom: 2.4vw;
  }

  .about-logo {
    width: 14.4vw;
    margin-bottom: 2.4vw;
  }

  .about-desc {
    font-size: 1.2vw;
    margin-bottom: 2.4vw;
  }

  .about-checklist li {
    gap: 0.96vw;
    font-size: 1.08vw;
    margin-bottom: 0.96vw;
  }

  .about-checklist li img {
    width: 1.2vw;
    height: 1.2vw;
  }

  .about-info-right {
    gap: 1.8vw;
    height: 42vw;
  }

  .about-card {
    padding: 1.2vw 20px;
  }

  .about-card-title {
    font-size: 1.44vw;
  }

  .about-card-plus {
    font-size: 4.8vw;
  }

  .about-card-link-text {
    font-size: 0.96vw;
    margin-bottom: 0.6vw;
  }

  .about-steps-section {
    padding: 0 20px;
  }

  .about-steps-container {
    gap: 3.6vw;
  }

  .about-steps-main-title {
    font-size: 2.64vw;
    margin-bottom: 1.2vw;
  }

  .about-steps-subtitle {
    font-size: 1.2vw;
    margin-left: 0.24vw;
  }

  .about-steps-right-col {
    gap: 1.8vw;
  }

  .about-steps-card-content {
    padding: 2.4vw 20px;
  }

  .about-steps-number-large {
    font-size: 1.8vw;
  }

  .about-steps-time {
    font-size: 4.8vw;
  }

  .about-steps-time-sub {
    font-size: 0.84vw;
    margin-top: 0.6vw;
  }

  .about-steps-center-content {
    gap: 0.6vw;
  }

  .about-steps-card-title {
    font-size: 2.4vw;
  }

  .about-steps-card-text {
    font-size: 0.96vw;
  }

  .about-steps-btn-group {
    gap: 0.96vw;
    margin-top: 2.4vw;
  }

  .about-steps-btn-outline,
  .about-steps-btn-white {
    padding: 1.2vw 1.44vw;
    font-size: 0.96vw;
    gap: 0.6vw;
  }

  .about-steps-btn-outline img,
  .about-steps-btn-white img {
    width: 1.08vw;
  }

  .about-steps-sidebar {
    gap: 1.8vw;
  }

  .about-steps-card-light {
    padding: 1.8vw 20px;
    gap: 0.6vw;
  }

  .about-steps-subgrid {
    gap: 1.8vw;
  }

  .about-steps-number {
    font-size: 1.44vw;
  }

  .about-steps-item-title {
    font-size: 1.44vw;
  }

  .about-steps-item-text {
    font-size: 0.96vw;
  }

  .help-section {
    padding: 6vw 20px;
    margin-top: 6vw;
  }

  .help-title {
    font-size: 2.64vw;
    margin-bottom: 3vw;
  }

  .help-grid {
    gap: 1.8vw;
  }

  .help-card-img-wrapper {
    height: 18vw;
  }

  .help-card-content {
    padding: 1.2vw 20px;
    gap: 0.6vw;
    padding-bottom: 3.6vw;
  }

  .help-card-title {
    font-size: 1.32vw;
  }

  .help-card-desc {
    font-size: 0.96vw;
  }

  .help-card-note {
    font-size: 1.02vw;
  }

  .turnkey-section {
    padding: 6vw 20px;
  }

  .turnkey-header {
    margin-bottom: 3.6vw;
  }

  .turnkey-title {
    font-size: 2.64vw;
    margin-bottom: 0.6vw;
  }

  .turnkey-subtitle {
    font-size: 1.2vw;
  }

  .turnkey-grid {
    gap: 2.4vw;
  }

  .turnkey-col {
    padding: 3.6vw 20px;
  }

  .turnkey-col-title {
    font-size: 1.56vw;
    margin-bottom: 2.4vw;
  }

  .turnkey-list li {
    gap: 1.2vw;
    font-size: 1.08vw;
  }

  .turnkey-icon {
    width: 1.44vw;
    height: 1.44vw;
  }

  .about-pricing-section {
    padding: 6vw 20px;
  }

  .about-pricing-title {
    font-size: 2.64vw;
    margin-bottom: 1.2vw;
  }

  .about-pricing-subtitle {
    font-size: 1.32vw;
    margin-bottom: 3.6vw;
  }

  .about-pricing-grid {
    gap: 1.8vw;
  }

  .about-pricing-card {
    padding: 1.8vw 20px;
  }

  .about-pricing-icon {
    margin-bottom: 1.8vw;
  }

  .about-pricing-icon img {
    height: 3vw;
  }

  .about-pricing-card-title {
    font-size: 1.68vw;
    margin-bottom: 1.2vw;
  }

  .about-pricing-desc {
    font-size: 0.96vw;
  }

  .about-pricing-price-block {
    margin-top: 2.4vw;
    margin-bottom: 1.8vw;
  }

  .about-old-price {
    font-size: 1.08vw;
    margin-bottom: 0.6vw;
  }

  .about-new-price {
    font-size: 2.64vw;
    margin-bottom: 0.6vw;
  }

  .about-price-subtext {
    font-size: 0.84vw;
  }

  .about-pricing-btn {
    padding: 1.2vw;
    font-size: 0.96vw;
    margin-bottom: 0.96vw;
    gap: 0.6vw;
  }

  .about-btn-details img,
  .about-btn-details-dark img {
    width: 0.96vw;
  }

  .about-after-funeral-section {
    padding: 6vw 20px;
  }

  .about-after-funeral-title {
    font-size: 2.64vw;
  }

  .about-after-funeral-subtitle {
    font-size: 1.32vw;
    margin-bottom: 2.4vw;
  }

  .about-after-funeral-grid {
    gap: 1.8vw;
  }

  .about-after-funeral-img-wrapper {
    height: 18vw;
  }

  .about-after-funeral-content {
    padding: 1.8vw 20px;
  }

  .about-after-funeral-card-title {
    font-size: 1.44vw;
    margin-bottom: 1.2vw;
  }

  .about-after-funeral-text {
    font-size: 0.96vw;
    margin-bottom: 1.8vw;
  }

  .about-after-funeral-links {
    gap: 1.2vw;
  }

  .about-after-funeral-link {
    font-size: 0.96vw;
  }

  .about-after-funeral-note {
    font-size: 0.96vw;
  }

  .about-legal-section {
    padding: 6vw 20px;
  }

  .about-legal-container {
    gap: 1.8vw;
  }

  .about-legal-block {
    padding: 3.6vw 20px;
  }

  .about-legal-title {
    font-size: 1.44vw;
    margin-bottom: 1.8vw;
  }

  .about-legal-text p {
    font-size: 1.08vw;
  }

  .about-addresses-grid {
    gap: 1.2vw;
    margin-top: 2.4vw;
  }

  .about-address-item {
    gap: 0.96vw;
    font-size: 1.08vw;
  }

  .about-address-icon {
    width: 0.96vw;
  }

  .about-contact-section {
    padding: 0 20px;
    margin-top: 6vw;
  }

  .about-contact-container {
    padding: 6vw 20px;
  }

  .about-contact-title {
    font-size: 2.16vw;
    margin-bottom: 2.4vw;
  }

  .about-contact-form {
    gap: 1.2vw;
  }

  .about-contact-row {
    gap: 1.2vw;
  }

  .about-contact-input {
    padding: 1.2vw 1.8vw;
    font-size: 1.08vw;
  }

  .about-contact-textarea {
    padding: 1.2vw 1.8vw;
    font-size: 1.08vw;
    height: 9.6vw;
  }

  .about-contact-actions {
    gap: 1.2vw;
    margin-top: 1.2vw;
  }

  .about-contact-btn {
    padding: 1.2vw 2.4vw;
    font-size: 0.96vw;
    gap: 0.6vw;
  }

  .about-btn-messenger img {
    height: 1.2vw;
  }

  .about-contact-policy {
    margin-top: 1.2vw;
    gap: 2.4vw;
  }

  .about-policy-label {
    gap: 0.6vw;
    font-size: 0.72vw;
  }

  .about-faq-section {
    padding: 6vw 20px;
  }

  .about-faq-title {
    font-size: 2.16vw;
    margin-bottom: 2.4vw;
  }

  .about-faq-list {
    gap: 1.2vw;
  }

  .about-faq-item {
    border-radius: 0.6vw;
  }

  .about-faq-header {
    padding: 1.8vw 20px;
  }

  .about-faq-question {
    font-size: 1.08vw;
  }

  .about-faq-icon {
    width: 1.44vw;
  }

  .about-faq-answer {
    padding: 0 20px 2.4vw;
    font-size: 1.08vw;
  }

  /* BREADCRUMBS (monuments, about, blog pages) */
  .breadcrumbs-section {
    padding: 1.2vw 20px;
  }

  .breadcrumbs-container {
    gap: 0.6vw;
  }

  .breadcrumb-item {
    padding: 0.6vw 1.44vw;
    font-size: 0.78vw;
    border-radius: 3vw;
  }

  /* MONUMENTS PAGE */
  .monuments-hero {
    padding: 0 20px 2.4vw;
  }

  .monuments-hero-grid {
    gap: 1.2vw;
  }

  .monuments-hero-left {
    gap: 1.8vw;
    flex: 1 1 42%;
  }
.monuments-hero-center {
     flex: 1.2 1 30%;
     min-width: 0;
     display: flex;
     align-items: center;
     justify-content: center;
}
  .monuments-hero-headline {
    font-size: 3.84vw;
  }

  .monuments-hero-desc {
    font-size: 1.44vw;
  }

  .monuments-hero-list {
    gap: 0.6vw;
  }

  .monuments-hero-list li {
    gap: 0.84vw;
    font-size: 1.08vw;
  }

  .monuments-hero-list li img {
    width: 1.08vw;
  }

  .monuments-hero-right {
    padding: 2.4vw 20px;
  }

  .monuments-form-title {
    font-size: 1.68vw;
    margin-bottom: 1.8vw;
  }

  .monuments-form {
    gap: 1.2vw;
  }

  .monuments-form-input,
  .monuments-form-textarea {
    padding: 1.2vw 1.44vw;
    font-size: 1.08vw;
  }

  .monuments-form-textarea {
    min-height: 6vw;
  }

  .monuments-form-btn {
    padding: 1.2vw;
    font-size: 1.14vw;
  }

  .monuments-form-checkboxes {
    gap: 0.96vw;
  }

  .monuments-form-check {
    gap: 0.72vw;
    font-size: 0.78vw;
  }

  .monuments-form-checkmark {
    width: 1.2vw;
    height: 1.2vw;
  }

  .monuments-form-check input:checked + .monuments-form-checkmark::after {
    font-size: 0.78vw;
  }

  .monuments-selector {
    padding: 3.6vw 20px 4.8vw;
  }

  .monuments-selector-heading1,
  .monuments-selector-heading2 {
    font-size: 2.28vw;
  }

  .monuments-selector-heading2 {
    margin-bottom: 1.2vw;
  }

  .monuments-selector-desc {
    font-size: 1.2vw;
    margin-bottom: 3vw;
  }

  .monuments-selector-grid {
    gap: 2.4vw;
  }

  .monuments-selector-group {
    margin-bottom: 1.8vw;
  }

  .monuments-selector-label {
    font-size: 1.14vw;
    margin-bottom: 0.72vw;
  }

  .monuments-selector-dropdown {
    padding: 1.08vw 1.44vw;
    font-size: 1.14vw;
  }

  .monuments-selector-dropdown svg {
    width: 0.96vw;
    height: 0.96vw;
  }

  .monuments-selector-dropdown-menu li {
    padding: 0.84vw 1.44vw;
    font-size: 1.14vw;
  }

  .monuments-selector-input {
    padding: 1.08vw 1.44vw;
    font-size: 1.14vw;
  }

  .monuments-selector-cta {
    padding: 1.8vw 20px;
    gap: 1.44vw;
  }

  .monuments-selector-cta-text {
    font-size: 1.14vw;
  }

  .monuments-selector-cta-btn {
    padding: 1.2vw 1.44vw;
    font-size: 1.14vw;
  }

  .monuments-benefits {
    padding: 4.8vw 20px 6vw;
  }

  .monuments-benefits-title {
    font-size: 2.28vw;
    margin-bottom: 3vw;
  }

  .monuments-benefits-title-bottom {
    margin: 4.2vw 0 1.8vw;
  }

  .monuments-benefits-main {
    gap: 1.2vw;
  }

  .monuments-benefits-grid {
    gap: 1vw;
  }

  .monuments-benefits-card {
    padding: 1.44vw 20px;
  }

  .monuments-benefits-card-title {
    font-size: 1.44vw;
    margin-bottom: 0.6vw;
  }

  .monuments-benefits-card-desc {
    font-size: 1.08vw;
  }

  .monuments-benefits-right {
    gap: 1.44vw;
  }

  .monuments-benefits-box {
    padding: 1.8vw 20px;
  }

  .monuments-benefits-box-title {
    font-size: 1.44vw;
    margin-bottom: 0.96vw;
  }

  .monuments-benefits-box-desc {
    font-size: 1.08vw;
    margin-bottom: 0.96vw;
  }

  .monuments-benefits-box-addr {
    font-size: 1.44vw;
    margin-bottom: 1.2vw;
  }

  .monuments-benefits-box-btns {
    gap: 0.96vw;
  }

  .monuments-benefits-btn {
    padding: 1.08vw 1.2vw;
    font-size: 1.02vw;
  }

  .monuments-benefits-list li {
    gap: 0.72vw;
    font-size: 1.08vw;
    margin-bottom: 0.6vw;
  }

  .monuments-benefits-list li img {
    width: 1.08vw;
  }

  .monuments-benefits-bottom {
    gap: 1.44vw;
  }

  .monuments-benefits-link {
    padding: 1.44vw 20px;
  }

  .monuments-catalog {
    padding: 3.6vw 20px 6vw;
  }

  .monuments-catalog-title {
    font-size: 2.28vw;
    margin-bottom: 0.96vw;
  }

  .monuments-catalog-subtitle {
    font-size: 1.44vw;
    margin-bottom: 3vw;
  }

  .monuments-catalog-layout {
    gap: 3vw;
  }

  .monuments-catalog-sidebar {
    flex: 0 0 10vw;
  }

  .monuments-filter-header {
    gap: 0.72vw;
    font-size: 1.2vw;
    margin-bottom: 1.8vw;
  }

  .monuments-filter-toggle-arrow {
    width: 1.08vw;
    height: 1.08vw;
  }

  .monuments-filter-search-icon {
    width: 1.44vw;
    height: 1.44vw;
  }

  .monuments-filter-select-wrap {
    margin-bottom: 1.44vw;
  }

  .monuments-filter-label {
    font-size: 0.96vw;
    margin-bottom: 0.48vw;
  }

  .monuments-filter-select {
    padding: 1.08vw 1.44vw;
    font-size: 1.08vw;
  }

  .monuments-filter-check-group {
    margin: 1.8vw 0;
  }

  .monuments-filter-check-title {
    font-size: 0.96vw;
    margin-bottom: 0.96vw;
  }

  .monuments-filter-check-label {
    gap: 0.72vw;
    font-size: 1.08vw;
    margin-bottom: 0.72vw;
  }

  .monuments-filter-checkmark {
    width: 1.2vw;
    height: 1.2vw;
  }

  .monuments-filter-checkbox:checked + .monuments-filter-checkmark::after {
    font-size: 0.78vw;
  }

  .monuments-filter-reset {
    padding: 1.08vw 1.44vw;
    font-size: 1.08vw;
    gap: 0.72vw;
  }

  .monuments-filter-reset svg {
    width: 1.08vw;
    height: 1.08vw;
  }

  .monuments-catalog-bar {
    gap: 1.2vw;
    margin-bottom: 2.4vw;
  }

  .monuments-catalog-chips {
    gap: 0.72vw;
  }

  .monuments-chip {
    padding: 0.6vw 1.2vw;
    font-size: 0.96vw;
    gap: 0.6vw;
  }

  .monuments-chip-remove {
    font-size: 1.32vw;
  }

  .monuments-catalog-sort {
    gap: 0.6vw;
    font-size: 1.08vw;
  }

  .monuments-sort-btn {
    font-size: 1.08vw;
    gap: 0.48vw;
  }

  .monuments-sort-btn svg,
  .monuments-sort-arrow {
    width: 0.96vw;
    height: 0.96vw;
  }

  .monuments-sort-menu li {
    padding: 0.72vw 1.44vw;
    font-size: 1.08vw;
  }

  .monuments-catalog-grid {
    gap: 1.8vw;
  }

  .monuments-card-body {
    padding: 1.2vw 20px;
  }

  .monuments-card-title {
    font-size: 1.32vw;
    margin-bottom: 0.36vw;
  }

  .monuments-card-type {
    font-size: 1.02vw;
    margin-bottom: 0.72vw;
    padding: 0.6vw;
  }

  .monuments-card-desc {
    font-size: 0.96vw;
    margin-bottom: 0.96vw;
  }

  .monuments-card-price {
    font-size: 1.2vw;
    margin-bottom: 1.2vw;
  }

  .monuments-card-btn-primary {
    padding: 1.2vw;
    font-size: 1.02vw;
    margin-bottom: 0.72vw;
  }

  .monuments-card-btn-secondary {
    padding: 0.84vw;
    font-size: 0.96vw;
  }

  .budget-form-section {
    padding: 4.8vw 20px;
  }

  .budget-form-box {
    padding: 3vw 20px;
  }

  .budget-form-title {
    font-size: 1.5vw;
    margin-bottom: 1.2vw;
  }

  .budget-form-desc {
    font-size: 1.08vw;
    margin-bottom: 2.4vw;
  }

  .budget-form {
    gap: 1.8vw;
  }

  .budget-form-row {
    gap: 1.44vw;
  }

  .budget-form-input,
  .budget-form-textarea {
    padding: 1.2vw 1.44vw;
    font-size: 1.08vw;
  }

  .budget-form-textarea {
    min-height: 7.2vw;
  }

  .budget-form-btn {
    padding: 1.2vw 1.8vw;
    font-size: 1.08vw;
    gap: 0.72vw;
  }

  .budget-form-checkboxes {
    gap: 1.8vw;
  }

  .budget-form-check {
    gap: 0.72vw;
    font-size: 0.96vw;
  }

  .budget-form-btn-icon {
    width: 1.32vw;
    height: 1.32vw;
  }

  /* RITUAL PAGE */
  .ritual-landscape {
    padding: 0 20px;
  }

  .ritual-landscape-wrap {
    gap: 3.6vw;
  }

  .ritual-landscape-title {
    font-size: 3.84vw;
    margin-bottom: 1.8vw;
  }

  .ritual-landscape-desc {
    font-size: 1.44vw;
    margin-bottom: 1.8vw;
  }

  .ritual-landscape-list {
    margin-bottom: 2.4vw;
  }

  .ritual-landscape-list li {
    gap: 0.96vw;
    font-size: 1.08vw;
    margin-bottom: 0.6vw;
  }

  .ritual-landscape-list li img {
    width: 1.44vw;
  }

  .ritual-landscape-btns {
    gap: 1.44vw;
    margin-bottom: 2.3vw;
  }

  .ritual-landscape-btn {
    gap: 0.72vw;
    padding: 1.2vw 2.16vw;
    font-size: 1.14vw;
  }

  .ritual-landscape-btn-icon {
    width: 1.44vw;
    height: 1.44vw;
  }

  .ritual-landscape-right {
    min-height: 30vw;
  }

  .ritual-landscape-img {
    min-height: 30vw;
  }

  .ritual-types {
    padding: 4.8vw 20px 6vw;
  }

  .ritual-types-title {
    font-size: 2.28vw;
    margin-bottom: 1.8vw;
  }

  .ritual-types-grid {
    gap: 1vw;
  }

  .ritual-types-card-img-wrap {
    height: 14.4vw;
  }

  .ritual-types-card-body {
    padding: 1.2vw 20px;
    gap: 0.96vw;
  }

  .ritual-types-card-title {
    font-size: 1.44vw;
  }

  .ritual-types-card-desc {
    font-size: 1.08vw;
  }

  .ritual-types-card-btns {
    gap: 0.96vw;
    margin-top: 0.24vw;
  }

  .ritual-types-card-btn {
    padding: 0.96vw 1.2vw;
    font-size: 1.02vw;
    gap: 0.6vw;
  }

  .ritual-types-card-btn-icon {
    width: 1.2vw;
    height: 1.2vw;
  }

  .ritual-care {
    padding: 4.8vw 20px 6vw;
  }

  .ritual-care-title {
    font-size: 2.28vw;
  }

  .ritual-care-desc {
    margin-bottom: 2.4vw;
  }

  .ritual-care-subtitle {
    font-size: 1.44vw;
  }

  .ritual-care-main {
    gap: 2.4vw;
  }

  .ritual-care-grid {
    gap: 1vw;
  }

  .ritual-care-card {
    padding: 1.44vw 20px;
  }

  .ritual-care-card-title {
    font-size: 1.44vw;
    margin-bottom: 0.48vw;
  }

  .ritual-care-card-desc {
    font-size: 1.08vw;
  }

  .ritual-care-right {
    flex: 0 0 26.4vw;
  }

  .ritual-care-box {
    padding: 1.8vw 20px;
  }

  .ritual-care-box-title {
    font-size: 1.44vw;
    margin-bottom: 1.44vw;
  }

  .ritual-care-list li {
    gap: 0.72vw;
    margin-bottom: 0.96vw;
    font-size: 1.14vw;
  }

  .ritual-care-list-icon {
    width: 1.08vw;
    height: 1.08vw;
  }

  /* BLOG PAGE */
  .blog-section {
    padding: 0 20px;
  }

  .blog-title {
    font-size: 2.16vw;
    margin-bottom: 3vw;
  }

  .blog-grid {
    gap: 1vw;
  }

  .blog-card-body {
    padding: 1.44vw 20px;
    gap: 0.72vw;
  }

  .blog-card-img-wrap {
    height: 16.8vw;
  }

  .blog-card-title {
    font-size: 1.26vw;
  }

  .blog-card-desc {
    font-size: 1.08vw;
  }

  .blog-card-link {
    font-size: 1.08vw;
    margin-top: 0.24vw;
  }

  .blog-more-wrap {
    margin-top: 3vw;
  }

  .blog-more-btn {
    padding: 1.2vw 3vw;
    font-size: 1.2vw;
  }

  /* BLOG DETAIL PAGE */
  .blog-detail {
    padding: 3.8vw 20px 6vw;
  }

  .blog-detail-wrap {
    width: 80%;
    max-width: 100%;
    gap: 3vw;
  }

  .blog-detail-img-wrap {
    width: 100%;
    height: 26.4vw;
    margin-bottom: 1.8vw;
  }

  .blog-detail-title {
    font-size: 1.92vw;
    margin-bottom: 1.8vw;
  }

  .blog-detail-content {
    font-size: 1.2vw;
  }

  .blog-detail-content p {
    margin-bottom: 1.44vw;
  }

  .blog-detail-highlight {
    padding: 1.8vw 20px;
    margin: 1.8vw 0;
  }

  .blog-detail-highlight p {
    font-size: 1.2vw;
  }

  .blog-detail-faq {
    margin: 2.4vw 0;
  }

  .blog-detail-faq-item {
    margin-bottom: 1.44vw;
    padding: 1.44vw 20px;
  }

  .blog-detail-faq-header {
    padding: 1.44vw 0;
    gap: 1.2vw;
  }

  .blog-detail-faq-title {
    font-size: 1.08vw;
  }

  .blog-detail-faq-toggle {
    width: 1.44vw;
    height: 1.44vw;
  }

  .blog-detail-faq-body {
    padding-bottom: 1.44vw;
  }

  .blog-detail-faq-body p {
    font-size: 1.14vw;
  }

  .blog-detail-sidebar {
    gap: 1.2vw;
    width: 23vw;
  }

  .blog-detail-card-img-wrap {
    height: 12vw;
  }

  .blog-detail-card-body {
    padding: 1.2vw 20px;
    gap: 0.6vw;
  }

  .blog-detail-card-title {
    font-size: 1.08vw;
  }

  .blog-detail-card-link {
    font-size: 0.96vw;
  }

  /* ERROR PAGE */
  .error-section {
    min-height: 50vw;
    padding: 3.8vw 20px 6vw;
  }

  .error-content {
    max-width: 100%;
  }

  .error-icon {
    max-width: 30vw;
    margin-bottom: 3vw;
  }

  .error-title {
    font-size: 2.16vw;
  }

  .error-text {
    font-size: 1.32vw;
    margin-bottom: 3vw;
  }

  .error-btn {
    font-size: 1.2vw;
    padding: 1.44vw 3vw;
    border-radius: 0.6vw;
  }

  /* SUCCESS PAGE */
  .success-section {
    min-height: 60vw;
    padding: 3.8vw 20px 6vw;
  }

  .success-icon {
    width: 9.6vw;
    margin-bottom: 2.4vw;
  }

  .success-title {
    font-size: 2.16vw;
  }

  .success-text {
    font-size: 1.32vw;
    margin-bottom: 3vw;
  }

  .success-btn {
    font-size: 1.2vw;
    padding: 1.44vw 3vw;
    border-radius: 0.6vw;
  }

  .blog-wrap {
    width: 70%;
    /* max-width: 65vw; */
    margin: 0 auto;
}
}

/* ========== MOBILE 768px ========== */
@media (max-width: 768px) {
  /* HEADER - Hamburger sol, VK+Telegram saÄŸ */
  .header {
    padding: 12px 20px;
    background: #F8F8F8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }

  .header-left {
    gap: 0;
  }

  .header-nav {
    display: none;
  }

  .catalog-btn {
    padding: 10px 12px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #F0F0F0;
  }

  .catalog-btn-text {
    display: none;
  }

  .catalog-btn .hamburger-icon {
    width: 20px;
    height: 16px;
  }

  .catalog-btn .hamburger-icon span {
    height: 2px;
    width: 100%;
    border-radius: 1px;
  }

  .catalog-btn .hamburger-icon span:nth-child(1) {
    top: 2px;
  }

  .catalog-btn .hamburger-icon span:nth-child(2) {
    top: 7px;
  }

  .catalog-btn .hamburger-icon span:nth-child(3) {
    top: 12px;
  }

  .catalog-btn.active .hamburger-icon span:nth-child(1),
  .catalog-btn.active .hamburger-icon span:nth-child(3) {
    top: 7px;
  }

  .header-right {
    gap: 12px;
  }

  .header-location,
  .header-phone {
    display: none;
  }

  .header-socials a:nth-child(3) {
    display: none;
  }

  .header-socials a svg,
  .header-socials a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  /* MOBILE MENU - Full screen overlay */
  .catalog-overlay.open {
    background: rgba(0, 0, 0, 0.4);
  }

  .catalog-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    flex-direction: column;
    align-items: stretch;
    padding: 60px 20px 24px;
    overflow-y: auto;
    background: #F8F8F8;
    border: none;
    box-shadow: none;
    z-index: 101;
  }

  .catalog-menu.open {
    display: flex;
  }

  .mobile-menu-close {
    display: flex;
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #323232;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
  }

  .mobile-menu-close:hover {
    color: #E8621A;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E8E8E8;
  }

  .mobile-nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #323232;
    padding: 12px 0;
    transition: color 0.2s;
  }

  .mobile-nav-links a:hover {
    color: #E8621A;
  }

  .catalog-menu .catalog-categories {
    flex-direction: column;
    gap: 8px;
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .catalog-menu .catalog-category-btn {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 8px;
  }

  .catalog-subcategories {
    flex-direction: column;
    gap: 16px;
  }

  .catalog-subcategories.active {
    display: flex;
  }

  .catalog-column {
    min-width: 100%;
    gap: 16px;
  }

  .catalog-group-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .catalog-group-items,
  .catalog-group-items a,
  .catalog-static-items a,
  .catalog-hidden-items a {
    font-size: 14px !important;
  }

  .catalog-group-items {
    gap: 6px;
  }

  .catalog-static-group {
    gap: 6px;
    margin-bottom: 12px;
  }

  .catalog-static-header {
    font-size: 14px;
    padding: 12px 14px;
    margin-bottom: 6px;
  }

  .catalog-static-items {
    gap: 6px;
    padding-left: 14px;
  }

  .catalog-hidden-items {
    gap: 6px;
    margin-top: 6px;
  }

  .catalog-toggle-btn {
    font-size: 14px;
    margin-top: 8px;
    gap: 6px;
  }

  .catalog-toggle-btn svg {
    width: 12px;
    height: 12px;
  }

  .banner-logo {
    width: 216px;
    margin-bottom: 10px;
}
.banner-title {
  font-size: 34px;
  margin-bottom: 10px;
}


.banner-description ,
.banner-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
}

.banner-features li {
  gap: 5px;
  font-size: 13px;
}
.banner-features li img {
  width: 16px;
  height: 16px;
}

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


.banner-left {
  width: 100%;
 padding: 0 20px;
 margin-top: 20px;

}


.banner-right {
  width: 100%;
  padding: 20px;
  min-height: 300px;
  margin-top: 60px;
}

.banner-man-wrapper {
  left: 0;
  width: 55%;
  /* position: static; */
  bottom: 0;
}


.banner-content-box {
  gap: 20px;
  width: 70%;
  justify-content: flex-end;
  height: 100%;
}

.director-title {
  margin-bottom: 5px;
  font-size: 12px;
}

.director-name {
  font-size: 16px;
}

.time-large {
  font-size: 70px;
}

.banner-contact-block {
  padding: 19px;
  gap: 10px;
  min-width: fit-content;
}

.time-small {
  font-size: 18px;
  max-width: fit-content;
}

.banner-phone {
  font-size: 38px;
}
.agent-time {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}


.banner-btn {
  gap: 10px;
  padding: 12px;
  font-size: 16px;
}


.btn-callback img {
  width: 16px;
}


.banner-legal {
  margin-top: 10px;
  font-size: 9px;
  max-width: fit-content;
}


.banner-director-info {
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  z-index: 11;
  bottom: 20px;
  left: 20%;
}


.steps-section {
  padding: 0 20px 20px 20px;
  margin-top: 50px;
}


.steps-container {
  flex-direction: column-reverse;
  gap: 15px;
}

.steps-content {
  width: 100%;
  background: #F6F6F6;
  color: #323232;
}

.steps-title {
  font-size: 24px;
  margin-bottom: 20px;
}


.step-number {
  font-size: 18px;
}


.step-card-title {
  font-size: 18px;
}


.step-card-text {
  font-size: 15px;
}


.step-phone img {
  width: 18px;
  height: 18px;
}

.step-phone {
  gap: 5px;
  font-size: 24px;
}

.step-card-body {
  gap: 10px;
  flex-direction: column;
}


.steps-grid {
  gap: 15px;
  display: flex;
  flex-direction: column;
}

.step-card {
  padding: 10px 20px;
  gap: 10px;
}

.steps-sidebar {
  width: 100%;
  padding: 30px 20px;
}

.steps-sidebar-title {
  font-size: 24px;
  margin-bottom: 10px;
}


.steps-sidebar-title  br {
  display: none;
}


.step-item {
  padding: 14px 16px;
  font-size: 13px;
}

.steps-list {
  gap: 10px;
}


.pricing-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.pricing-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pricing-card-icon img {
  height: auto;
  width: 31px;
}
.pricing-grid {
  gap: 15px;
  margin-bottom: 20px;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  &::-webkit-scrollbar {
    display: none;
  }
  &::-webkit-scrollbar-track {
    background: transparent;
  }
}


.pricing-card {
  width: 300px;
  padding: 10px 20px;
  gap: 10px;
}

.pricing-card-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.pricing-card-desc {
  font-size: 15px;
}

.old-price {
  font-size: 18px;
  margin-bottom: 5px;
}

.new-price {
  font-size: 30px;
  margin-bottom: 5px;
}

.price-subtext {
  font-size: 12px;
}

.pricing-btn {
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  gap: 5px;
}

.pricing-price-block {
  margin-top: 10px;
  margin-bottom: 10px;
}


.pricing-btn-details-dark img {
  width: 20px;
}

.pricing-bottom-info {
  padding-top: 20px;
  flex-direction: column;
}

.info-left {
  width: 100%;
}

.info-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.info-text {
  font-size: 18px;
  margin-bottom: 10px;
}


.info-text  br {
  display: none;
}

.info-subtext {
  font-size: 15px;
}

.info-list {
  width: 100%;
  gap: 5px;
  margin-top: 10px;
}

.info-list li {
  gap: 5px;
  font-size: 13px;
}

.info-list li img {
  width: 16px;
}


.info-actions {
  width: 100%;
  gap: 15px;
  margin-top: 20px;
}
.info-btn-smeta {
  padding: 15px;
  font-size: 16px;
}
.info-btn-calc {
  padding: 10px;
  font-size: 16px;
  gap: 5px;
}
.info-btn-calc img {
  width: 24px;
}


.info-note {
  font-size: 18px;
  margin-top: 10px;
  text-align: center;
}


.pricing-section {
  padding: 30px 20px 40px 20px;
  margin-top: 20px;
}

.trust-section {
  padding: 30px 20px;
}

.trust-title {
  font-size: 24px;
  margin-bottom: 5px;
}

.trust-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.trust-grid {
  display: flex;
  gap: 15px;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
}

.trust-card {
  width: fit-content;
  padding: 10px 20px;
  gap: 10px;
  flex-shrink: 0;
}

.trust-card-title {
  font-size: 18px;
}


.trust-icon {
  height: 48px;
}

.trust-btn-details {
  font-size: 15px;
}

.cta-section {
  padding: 30px 20px;
}


.cta-card {
  padding-left: 0;
}


.cta-card {
  padding-left: 0;
  flex-direction: column-reverse;
  gap: 20px;
  padding: 10px 20px 20px 20px;
}

.cta-right {
  width: 100%;
  position: relative;
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
}

.cta-agent-img {
  height: auto;
  width: 80%;
  position: static;
  z-index: 1;
}
.agent-role {
  font-size: 12px;
  margin-bottom: 5px;
}
.agent-name {
  font-size: 16px;
}
.cta-agent-info {
  bottom: 20px;
}

.cta-left{
  width: 100%;
  align-items: center;
  justify-content: center;
}

.cta-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.cta-form {
  gap: 20px;
  max-width: 100%;
}

.cta-input {
  padding: 14px;
  font-size: 16px;
}


.cta-btn {
  padding: 14px;
  font-size: 16px;
}

.cta-checkbox {
  gap: 5px;
}
.cta-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.cta-checkbox input:checked + .checkmark::after {
  font-size: 13px;
}

.checkbox-text {
  font-size: 10px;
}


.cta-title {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.traditions-section {
  padding: 30px 20px;
}


.traditions-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.traditions-title br {
  display: none;
}

.traditions-grid {
  gap: 15px;
  margin-bottom: 15px;
  flex-direction: column;
}


.traditions-card {
  width: 100%;

}

.traditions-card-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.traditions-card-subtitle {
  font-size: 14px;
}

.traditions-card-body {
  gap: 20px;
  padding-right: 20px;
}


.traditions-img-bg {
  width: 50%;
  height: auto;
  align-self: flex-end;
  object-fit: contain;
}



.traditions-list li img {
  width: 16px;
}

.traditions-list li {
  font-size: 13px;
  margin-bottom: 5px;
  gap: 5px;
}


.traditions-footer-text {
  font-size: 13px;
}


.traditions-bottom {
  gap: 20px;
  flex-direction: column;
  margin-top: 20px;
}

.traditions-col {
  width: 100%;
  gap: 10px;
  padding-left: 0px;
}

.traditions-bottom-text {
  font-size: 13px;
}


.traditions-bottom-list li {
  width: 100%;
  font-size: 13px;
  gap: 5px;
}

.traditions-bottom-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.traditions-bottom-list li img {
  width: 16px;
}

.traditions-btn-consult {
  padding: 14px;
  font-size: 16px;
  margin-top: 10px;
}



.gruz-section {
  padding: 20px;
}


.gruz-grid {
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: column;
}


.gruz-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.gruz-main-card {
  width: 100%;
  padding-right: 0px;
  min-height: 200px;
  flex-direction: column;
}



.gruz-img {
  width: 75%;
  min-height: 200px;
}

.gruz-card-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.gruz-highlight {
  font-size: 14px;
  margin-bottom: 10px;
}


.gruz-list li img{
  width: 16px;
}
.gruz-list li {
  font-size: 13px;
  margin-bottom: 5px;
  gap: 5px;
}

.gruz-card-left {
  padding:30px 20px 0 20px;
  width: 100%;
}


.gruz-card-title br, .gruz-highlight br {
  display: none;
}


.gruz-right-col {
  width: 100%;
  gap: 15px;
  flex-direction: column-reverse;
}

.gruz-note {
  font-size: 13px;
}
.gruz-note br {
  display: none;
}
.gruz-cta-text {
  font-size: 16px;
}

.gruz-btn-cta {
  padding: 14px;
  font-size: 16px;
}

.gruz-cta-box {
  padding: 20px;
  gap: 15px;
  min-height: 18vw;
}

.reviews-section {
  padding: 30px 20px;
}

.reviews-title {
  font-size: 24px;
  margin-bottom: 20px;
}



.reviews-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.review-card {
  padding: 14px;
  margin: 0;
  gap: 10px;
}



.review-header {
  gap: 10px;
}

.review-avatar-wrapper {
  width: 70px;
  height: 70px;
}

.review-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}


.review-stars {
  font-size: 16px;
}



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


.review-link {
  font-size: 15px;

  margin-top: 10px;

}

.memory-section {
  padding: 30px 20px;
  margin-top: 20px;
}


.memory-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.memory-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  max-width: 100%;
  width: 100%;
}
.memory-main-flex {
  gap: 15px;
  flex-direction: column;
}


.memory-left-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.memory-main-img {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.memory-info-box {
 padding: 20px;
 gap: 15px;
 font-size: 13px;
 position: static;
}


.memory-right-col {
  width: 100%;
  gap: 15px;


}
.memory-cards {
  gap: 10px;
  overflow: hidden;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.memory-card {
  display: flex;
  flex-direction: column;
  width: fit-content;
  min-width: 252px;
  padding: 20px;
  gap: 10px;
  flex-shrink: 0;
}

.memory-card-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.memory-card-btn {
  font-size: 15px;
}

.memory-card-bottom {
  margin-top: 15px;
  gap: 60px;
  display: flex;
}


.memory-card-icon {
  width: auto;
}

.memory-gifts {
  margin-top: 10px;
}

.memory-gifts-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.memory-gifts-grid {
  gap: 10px;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;

}


.memory-gift-card {
  display: flex;
  flex-direction: column;
  width: fit-content;
  min-width: 252px;
  padding: 20px 10px;
}



.memory-gift-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.memory-gift-desc {
  font-size: 15px;
}

.memory-gift-btn {
  padding: 14px;
  font-size: 16px;
  margin-top: 10px;
}

.memory-gifts-note {
  font-size: 15px;
  margin-top: 20px;
}


.memory-services {
  margin-top: 20px;
}

.memory-services-flex {
  gap: 15px;
  flex-direction: column;
}


.memory-service-left {
  padding: 20px 10px 0 20px;
  padding-bottom: 0;
  width: 100%;
  position: relative;
  flex-direction: column;
}
.memory-service-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.memory-service-text {
  width: 100%;
}
.memory-service-desc {
  font-size: 14px;
  margin-bottom: 10px;
  max-width: 100%;
}

.memory-service-desc br {
 display: none;
}


.memory-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.memory-service-list li {
  font-size: 13px;
  margin-bottom: 5px;
  gap: 5px;
}


.memory-service-list li img {
  width: 16px;
}

.memory-service-text .memory-service-btn {
  padding: 14px 20px;
  font-size: 16px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: fit-content;
}

.memory-service-img-wrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.memory-service-img {
  width: 70%;

}

.memory-service-right {
  padding: 20px 10px;
  width: 100%;
}



.memory-service-right .memory-service-btn {
  padding: 14px 20px;
  font-size: 16px;
  margin-top: 15px;

}

.contract-section {
  padding: 0 20px;
  margin-top: 30px;
}

.contract-title {
  max-width: 100%;
  font-size: 24px;
  margin-bottom: 10px;
}


.contract-title br {
  display: none;
}

.contract-subtitle {
  max-width: 100%;
  font-size: 16px;
  margin-bottom: 15px;
}

.contract-flex {
  gap: 15px;
  flex-direction: column;
}

.contract-left {
  width: 100%;

}


.contract-right {
  width: 100%;

}


.contract-grid {
  display: flex;
  gap: 10px;
  flex-direction: column;
}


.contract-card {
  padding: 15px;
  gap: 10px;
}


.contract-card h3 {
  font-size: 18px;
}



.contract-card h3 br {
  display: none;
}

.contract-card p {
  font-size: 15px;
}

.contract-btn {
  padding: 14px;
  font-size: 16px;
  margin-top: 15px;
}


.stats-section {
  padding: 0 20px;
  margin-top: 50px;
}

.stats-title {
  font-size: 24px;
  max-width: 100%;
  margin-bottom: 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* gap: 15px; */
}

.stat-top {
  font-size: 15px;
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 15px;
  margin-top: 5px;
}

.stat-number {
  font-size: 44px;
  margin-bottom: 5px;
}

.stat-item {
  width: 48%;
}

.locations-section {
  padding: 0 20px;
  margin-top: 50px;
}

.location-card {
  width: 100%;
  margin-bottom: 15px;
  order: 2;

}

.location-map {
  width: 100%;
  height: 240px;
}

.location-card iframe {
  height: 100%;
  min-height: 0;
}


.locations-grid {
  gap: 15px;
}


.location-info-card {
  width: 100%;
  margin-bottom: 15px;
  order: 1;
  padding: 15px;
  min-height: 300px;
  justify-content: space-between;
}


.location-caption {
  margin-top: 10px;
  font-size: 15px;
  gap: 5px;
  min-height: 44px;
}



.loc-info-title {
  font-size: 15px;
  margin-bottom: 10px;
}

.loc-info-details {
  font-size: 15px;
  margin-bottom: 10px;
}


.loc-info-desc {
  font-size: 15px;
  margin-bottom: 10px;
}



.loc-info-phone {
  font-size: 24px;
  margin-bottom: 5px;
}


.location-caption img {
  width: 16px;
}

/* FOOTER - 768px altÄ± */
.footer {
  padding: 32px 20px 20px;
  margin-top: 40px;
}

.footer-top {
  flex-direction: column;
  gap: 24px;
  padding-bottom: 20px;
  margin-bottom: 16px;
}

.footer-info {
  width: 100%;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 235px;
}

.footer-phone-btn {
  width: 100%;
  max-width: 320px;
  padding: 14px 16px;
  font-size: 18px;
}

.footer-callback-btn {
  width: 100%;
  max-width: 320px;
  padding: 14px 16px;
  font-size: 18px;
}

.footer-socials {
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
}

.social-icon img {
  width: 46px;
}

.footer-rutube-btn {
  height: 49px;
  padding: 0 12px;
  gap: 8px;
  font-size: 16px;
}

.footer-rutube-btn img {
  height: 30px;
}

.footer-addresses {
  gap: 8px;
  align-items: center;
}

.footer-addr-item {
  font-size: 14px;
  gap: 8px;
  justify-content: center;
}

.footer-addr-item img {
  width: 12px;
}

.footer-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col {
  width: 100%;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.14); */
  padding-bottom: 10px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.footer-title::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.footer-col.open .footer-title::after {
  transform: rotate(-135deg);
}

.footer-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease, margin-top 0.2s ease;
}

.footer-col.open .footer-list {
  max-height: 700px;
  opacity: 1;
  margin-top: 10px;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  font-size: 13px;
  line-height: 1.35;
}

.footer-bottom {
  font-size: 13px;
  margin-top: 12px;
}

/* POPUP FORM - 768px altÄ± */
.popup-overlay {
  padding: 20px;
}

.popup-container {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  padding: 24px 20px;
  border-radius: 10px;
}

.popup-close {
  top: 10px;
  right: 12px;
  font-size: 30px;
}

.popup-logo {
  width: 84px;
  margin-bottom: 14px;
}

.popup-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.popup-subtitle {
  font-size: 14px;
  margin-bottom: 18px;
}

.popup-form {
  gap: 12px;
}

.form-input {
  padding: 12px;
  font-size: 14px;
}

.form-policy {
  font-size: 13px;
}

.form-policy label {
  gap: 8px;
}

.popup-submit-btn {
  padding: 14px;
  font-size: 14px;
  margin-top: 8px;
}

/* ABOUT BANNER (about-info) - 768px altÄ± */
.about-info-section {
  padding: 16px 20px 28px;
}

.about-info-container {
  flex-direction: column;
  gap: 24px;
}

.about-info-left {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Mobilde logo ustte gorunsun */
.about-logo {
  order: 1;
  width: 158px;
  margin-bottom: 0;
}

.about-main-title {
  order: 2;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.about-desc {
  order: 3;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.about-checklist {
  order: 4;
}

.about-checklist li {
  gap: 8px;
  font-size: 13px;
  margin-bottom: 10px;
}

.about-checklist li img {
  width: 16px;
  height: 16px;
}

.about-info-right {
  width: 100%;
  height: auto;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.about-info-right .about-card {
  border-radius: 0;
  padding: 14px 12px;
  min-height: 160px;
}

.about-info-right .about-card-wide {
  min-height: 120px;
}

.about-info-right .about-card-title {
  font-size: 14px;
  line-height: 1.25;
}

.about-info-right .about-card-plus {
  font-size: 52px;
  line-height: 1;
}

.about-info-right .about-card-link-text {
  font-size: 14px;
  margin-bottom: 4px;
}

/* ABOUT STEPS - 768px altÄ± */
.about-steps-section {
  padding: 0 20px;
  margin-top: 28px;
}

.about-steps-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-steps-left-col,
.about-steps-right-col {
  width: 100%;
}

.about-steps-main-title {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.about-steps-subtitle {
  font-size: 15px;
  margin-left: 0;
}

.about-steps-right-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.about-steps-card-main {
  min-height: 240px;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.about-steps-card-content {
  padding: 18px 16px;
}

.about-steps-top-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.about-steps-center-content {
  gap: 8px;
}

.about-steps-number-large {
  font-size: 18px;
}

.about-steps-card-title {
  font-size: 24px;
  line-height: 1.1;
}

.about-steps-card-text {
  font-size: 13px;
  line-height: 1.35;
}

.about-steps-24-7 {
  align-items: flex-start;
  text-align: left;
  gap: 6px;
}

.about-steps-time {
  font-size: 46px;
  line-height: 1;
}

.about-steps-time-sub {
  font-size: 12px;
  margin-top: 0;
}

.about-steps-btn-group {
  margin-top: 16px;
  gap: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.about-steps-btn-outline,
.about-steps-btn-white {
  width: 100%;
  justify-content: center;
  padding: 12px 14px;
  font-size: 13px;
  gap: 8px;
}

.about-steps-btn-outline img,
.about-steps-btn-white img {
  width: 14px;
}

.about-steps-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.about-steps-card-light {
  padding: 16px;
  gap: 10px;
  border-radius: 8px;
  width: 100%;
}

.about-steps-subgrid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.about-steps-sidebar > .about-steps-card-item,
.about-steps-subgrid .about-steps-card-item {
  width: 100%;
}

.about-steps-number {
  font-size: 16px;
}

.about-steps-item-title {
  font-size: 18px;
  line-height: 1.2;
}

.about-steps-item-text {
  font-size: 13px;
  line-height: 1.35;
}

.about-steps-item-title br,
.about-steps-item-text br,
.about-steps-card-title br,
.about-steps-card-text br {
  display: none;
}

/* HELP SECTION - 768px altÄ± */
.help-section {
  padding: 32px 20px;
  margin-top: 28px;
}

.help-title {
  font-size: 24px;
  margin-bottom: 18px;
  line-height: 1.15;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.help-card {
  width: 100%;
  min-height: 0;
}

.help-card-img-wrapper {
  height: 190px;
}

.help-card-content {
  padding: 14px 16px 18px;
  gap: 8px;
}

.help-card-title {
  font-size: 16px;
  line-height: 1.25;
}

.help-card-desc {
  font-size: 13px;
  line-height: 1.35;
}

.help-card-note {
  font-size: 13px;
  line-height: 1.35;
}

/* TURNKEY SECTION - 768px altÄ± */
.turnkey-section {
  padding: 32px 20px;
  margin-top: 28px;
}

.turnkey-header {
  margin-bottom: 18px;
}

.turnkey-title {
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1.15;
}

.turnkey-subtitle {
  font-size: 14px;
  line-height: 1.35;
}

.turnkey-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.turnkey-col {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
}

.turnkey-col-title {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.turnkey-list {
  gap: 10px;
}

.turnkey-list li {
  font-size: 13px;
  gap: 10px;
  line-height: 1.35;
}

.turnkey-icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ABOUT PRICING SECTION - 768px altÄ± (yatay kaydÄ±rma) */
.about-pricing-section {
  padding: 32px 20px;
  margin-top: 28px;
}

.about-pricing-title {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.15;
}

.about-pricing-subtitle {
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.about-pricing-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.about-pricing-grid::-webkit-scrollbar {
  display: none;
}

.about-pricing-card,
.about-pricing-card.about-pricing-card-wide {
  flex: 0 0 calc(100% - 48px);
  max-width: calc(100% - 48px);
  width: auto;
  grid-column: auto;
  border-radius: 8px;
  padding: 16px;
  scroll-snap-align: start;
}

.about-pricing-icon {
  margin-bottom: 12px;
}

.about-pricing-icon img {
  height: 30px;
}

.about-pricing-card-title {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-pricing-desc {
  font-size: 13px;
  line-height: 1.35;
}

.about-pricing-price-block {
  margin-top: 14px;
  margin-bottom: 14px;
}

.about-old-price {
  font-size: 12px;
  margin-bottom: 6px;
}

.about-new-price {
  font-size: 28px;
  margin-bottom: 6px;
}

.about-price-subtext {
  font-size: 11px;
}

.about-pricing-btn {
  padding: 12px;
  font-size: 12px;
  margin-bottom: 10px;
  gap: 8px;
}

.about-btn-details img,
.about-btn-details-dark img {
  width: 12px;
}

/* ABOUT AFTER FUNERAL - 768px altÄ± (yatay kaydÄ±rma) */
.about-after-funeral-section {
  padding: 32px 20px;
  margin-top: 28px;
}

.about-after-funeral-title {
  font-size: 24px;
  line-height: 1.15;
}

.about-after-funeral-subtitle {
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.about-after-funeral-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.about-after-funeral-grid::-webkit-scrollbar {
  display: none;
}

.about-after-funeral-card {
  flex: 0 0 calc(100% - 48px);
  max-width: calc(100% - 48px);
  min-width: calc(100% - 48px);
  scroll-snap-align: start;
}

.about-after-funeral-img-wrapper {
  height: 190px;
}

.about-after-funeral-content {
  padding: 14px 16px 18px;
}

.about-after-funeral-card-title {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.about-after-funeral-text {
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.about-after-funeral-links {
  gap: 10px;
  flex-wrap: wrap;
}

.about-after-funeral-link {
  font-size: 12px;
}

.about-after-funeral-note {
  font-size: 12px;
  line-height: 1.35;
}

/* ABOUT LEGAL SECTION - 768px altÄ± (alt alta) */
.about-legal-section {
  padding: 32px 20px;
  margin-top: 28px;
}

.about-legal-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-legal-container .about-legal-block:first-child,
.about-legal-container .about-legal-block:last-child {
  width: 100%;
}

.about-legal-block {
  padding: 16px;
  border-radius: 8px;
}

.about-legal-title {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-legal-text p {
  font-size: 13px;
  line-height: 1.35;
}

.about-addresses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.about-address-item {
  width: 100%;
  gap: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.about-address-icon {
  width: 12px;
  margin-top: 2px;
}

/* ABOUT CONTACT SECTION - 768px altÄ± (ekran kaplasÄ±n) */
.about-contact-section {
  padding: 0;
  margin-top: 28px;
  /* min-height: 100vh; */
  display: flex;
}

.about-contact-container {
  width: 100%;
  /* min-height: calc(100vh - 28px); */
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-contact-title {
  font-size: 24px;
  margin-bottom: 18px;
  line-height: 1.15;
}

.about-contact-form {
  gap: 12px;
}

.about-contact-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-contact-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 8px;
}

.about-contact-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
  height: 160px;
}

.about-contact-actions {
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.about-contact-btn {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  font-size: 13px;
  gap: 8px;
}

.about-btn-submit,
.about-btn-messenger {
  max-width: 100%;
}

.about-btn-messenger img {
  height: 14px;
}

.about-contact-policy {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-policy-label {
  max-width: 100%;
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
}

/* ABOUT FAQ SECTION - 768px altÄ± (ekrana sÄ±ÄŸsÄ±n) */
.about-faq-section {
  padding: 32px 20px;
  margin-top: 28px;
}

.about-faq-container {
  width: 100%;
}

.about-faq-title {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.about-faq-list {
  gap: 10px;
}

.about-faq-item {
  border-radius: 8px;
}

.about-faq-header {
  padding: 14px 14px;
  gap: 10px;
}

.about-faq-question {
  font-size: 13px;
  width: auto;
  flex: 1;
  line-height: 1.35;
  text-transform: none;
}

.about-faq-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.about-faq-answer {
  padding: 0 14px 14px;
  font-size: 13px;
  line-height: 1.4;
}

.about-faq-item.active .about-faq-body {
  max-height: 260px;
}

/* MONUMENTS HERO - 768px altÄ± */
.monuments-hero {
  padding: 0 20px 20px;
}

.monuments-hero-grid {
  flex-direction: column;
  gap: 16px;
}

.monuments-hero-left,
.monuments-hero-center,
.monuments-hero-right {
  width: 100%;
  min-width: 0;
}

.monuments-hero-left {
  gap: 12px;
}

.monuments-hero-headline {
  font-size: 34px;
  line-height: 1.1;
}

.monuments-hero-headline br {
  display: none;
}

.monuments-hero-desc {
  font-size: 16px;
  line-height: 1.3;
}

.monuments-hero-list {
  gap: 8px;
}

.monuments-hero-list li {
  gap: 8px;
  font-size: 14px;
  line-height: 1.35;
}

.monuments-hero-list li img {
  width: 16px;
}

.monuments-hero-center {
  justify-content: center;
}

.monuments-hero-img {
  width: 100%;
  max-width: 360px;
}

.monuments-hero-right {
  padding: 40px 20px;
}

.monuments-form-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.monuments-form {
  gap: 15px;
}

.monuments-form-input,
.monuments-form-textarea {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
}

.monuments-form-textarea {
  min-height: 140px;
}

.monuments-form-btn {
  padding: 14px;
  font-size: 14px;
  border-radius: 8px;
}

.monuments-form-checkboxes {
  gap: 10px;
}

.monuments-form-check {
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
}

.monuments-form-checkmark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.monuments-form-check input:checked + .monuments-form-checkmark::after {
  font-size: 10px;
}

/* MONUMENTS CATALOG - 768px altÄ± */
.monuments-catalog {
  padding: 18px 16px 28px;
}

.monuments-catalog-title {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.monuments-catalog-subtitle {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.monuments-catalog-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.monuments-catalog-sidebar {
  width: 100%;
  flex: 0 0 10vw;
}

.monuments-filter-header {
  margin-bottom: 0;
  padding: 0;
  border-radius: 8px;
  background: transparent;
}

.monuments-filter-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #ECEBEC;
  border: 1px solid #ECEBEC;
  color: #535353;
  justify-content: center;
}

.monuments-filter-toggle-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 18px;
}

.monuments-filter-toggle-text {
  font-size: 14px;
  line-height: 1.2;
  color: #535353;
}

.monuments-filter-search-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.monuments-filter-search-input {
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: #535353;
  border: 0;
  background: transparent;
}

.monuments-filter-search-input::placeholder {
  color: #535353;
  opacity: 1;
}

.monuments-filter-body {
  display: none;
  margin-top: 10px;
}

.monuments-catalog-sidebar.filter-open .monuments-filter-body {
  display: block;
  animation: monumentsFilterSlideIn 0.24s ease;
}

@keyframes monumentsFilterSlideIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.monuments-filter-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F6F6F6;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.monuments-filter-select-wrap {
  margin-bottom: 10px;
}

.monuments-filter-label {
  font-size: 13px;
  margin-bottom: 6px;
}

.monuments-filter-select {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 34px;
}

.monuments-filter-check-group {
  margin: 12px 0;
}

.monuments-filter-check-title {
  font-size: 13px;
  margin-bottom: 8px;
}

.monuments-filter-check-label {
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}

.monuments-filter-checkmark {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}

.monuments-filter-checkbox:checked + .monuments-filter-checkmark::after {
  font-size: 11px;
}

.monuments-filter-reset {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
  gap: 8px;
}

.monuments-filter-reset svg {
  width: 12px;
  height: 12px;
}

.monuments-catalog-main {
  width: 100%;
}

.monuments-catalog-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.monuments-catalog-chips {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.monuments-catalog-chips::-webkit-scrollbar {
  display: none;
}

.monuments-chip {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  gap: 8px;
}

.monuments-chip-dark {
  background: #535353;
}

.monuments-chip-light {
  background: #F8F8F8;
  border: 1px solid #BBBBBB;
  color: #535353;
}

.monuments-chip-remove {
  font-size: 20px;
}

.monuments-catalog-sort {
  font-size: 14px;
  gap: 6px;
  color: #686868;
}

.monuments-catalog-sort > span {
  color: #686868;
}

.monuments-sort-btn {
  font-size: 14px;
  color: #FF732A;
  gap: 6px;
}

.monuments-sort-btn svg,
.monuments-sort-arrow {
  width: 12px;
  height: 12px;
}

.monuments-sort-menu {
  min-width: 190px;
  margin-top: 6px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
}

.monuments-sort-menu li {
  padding: 10px 12px;
  font-size: 14px;
}

.monuments-catalog-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.monuments-catalog-grid::-webkit-scrollbar {
  display: none;
}

.monuments-card {
  flex: 0 0 calc(50% + 55px);
  min-width: calc(50% + 55px);
  border: 1px solid #D1D1D1;
  border-radius: 0;
  scroll-snap-align: start;
}

.monuments-card-img-wrap {
  aspect-ratio: 4 / 3;
}

.monuments-card-body {
  padding: 10px;
}

.monuments-card-title {
  font-size: 15px;
  margin-bottom: 6px;
}

.monuments-card-type {
  font-size: 12px;
  margin-bottom: 8px;
  padding: 6px 8px;
}

.monuments-card-desc {
  font-size: 12px;
  margin-bottom: 8px;
}

.monuments-card-price {
  font-size: 17px;
  margin-bottom: 6px;
}

.monuments-card-btn-primary {
  padding: 14px;
  font-size: 16px;
  margin-bottom: 8px;
  border-radius: 8px;
}

.monuments-card-btn-secondary {
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
}

/* MONUMENTS SELECTOR - 768px altÄ± (alt alta) */
.monuments-selector {
  padding: 28px 16px;
}

.monuments-selector-heading1,
.monuments-selector-heading2 {
  font-size: 24px;
  line-height: 1.15;
}

.monuments-selector-heading2 {
  margin-bottom: 10px;
}

.monuments-selector-desc {
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.monuments-selector-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.monuments-selector-col,
.monuments-selector-cta {
  width: 100%;
  flex: 0 0 auto;
}

.monuments-selector-group {
  margin-bottom: 10px;
}

.monuments-selector-label {
  font-size: 13px;
  margin-bottom: 6px;
}

.monuments-selector-dropdown,
.monuments-selector-input {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
}

.monuments-selector-dropdown svg {
  width: 12px;
  height: 12px;
}

.monuments-selector-dropdown-menu li {
  padding: 10px 12px;
  font-size: 14px;
}

.monuments-selector-cta {
  padding: 14px;
  border-radius: 8px;
  gap: 14px;
}

.monuments-selector-cta-text {
  font-size: 13px;
  line-height: 1.35;
}

.monuments-selector-cta-btn {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 8px;
}

/* MONUMENTS BENEFITS - 768px altÄ± */
.monuments-benefits {
  padding: 28px 16px;
}

.monuments-benefits-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.monuments-benefits-title-bottom {
  margin: 24px 0 12px;
}

.monuments-benefits-main {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.monuments-benefits-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.monuments-benefits-grid::-webkit-scrollbar {
  display: none;
}

.monuments-benefits-card {
  flex: 0 0 252px;
  min-width: 252px;
  padding: 14px;
}

.monuments-benefits-card-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.monuments-benefits-card-desc {
  font-size: 13px;
}

.monuments-benefits-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.monuments-benefits-box {
  padding: 14px;
}

.monuments-benefits-box-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.monuments-benefits-box-desc {
  font-size: 13px;
  margin-bottom: 8px;
}

.monuments-benefits-box-addr {
  font-size: 14px;
  margin-bottom: 10px;
}

.monuments-benefits-box-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.monuments-benefits-btn {
  width: 100%;
  padding: 14px 14px;
  font-size: 16px;
}

.monuments-benefits-list li {
  font-size: 13px;
  gap: 8px;
  margin-bottom: 8px;
}

.monuments-benefits-list li img {
  width: 14px;
}

.monuments-benefits-bottom {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.monuments-benefits-bottom::-webkit-scrollbar {
  display: none;
}

.monuments-benefits-link {
  flex: 0 0 252px;
  min-width: 252px;
  padding: 14px;
}

/* BUDGET FORM - 768px altÄ± */
.budget-form-section {
  padding: 28px 16px;
}

.budget-form-wrap {
  width: 100%;
}

.budget-form-box {
  padding: 16px;
  border-radius: 8px;
}

.budget-form-title {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.budget-form-desc {
  width: 100%;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.budget-form {
  gap: 10px;
}

.budget-form-row {
  flex-direction: column;
  gap: 10px;
}

.budget-form-input,
.budget-form-textarea {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
}

.budget-form-textarea {
  min-height: 130px;
}

.budget-form-btn {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 8px;
}

.budget-form-btn-icon {
  width: 16px;
  height: 16px;
}

.budget-form-checkboxes {
  flex-direction: column;
  gap: 10px;
}

.budget-form-check {
  width: 100%;
  gap: 8px;
  font-size: 12px;
}

.budget-form-check input {
  margin-top: 2px;
}

/* RITUAL LANDSCAPE - 768px altÄ± (alt alta) */
.ritual-landscape {
  padding: 0 16px;
}

.ritual-landscape-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ritual-landscape-left,
.ritual-landscape-right {
  width: 100%;
  flex: 0 0 auto;
}

.ritual-landscape-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.ritual-landscape-desc {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.ritual-landscape-list {
  margin-bottom: 12px;
}

.ritual-landscape-list li {
  font-size: 13px;
  gap: 8px;
  margin-bottom: 6px;
}

.ritual-landscape-list li img {
  width: 14px;
}

.ritual-landscape-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.ritual-landscape-btn {
  width: 100%;
  padding: 14px 14px;
  font-size: 16px;
  gap: 8px;
}

.ritual-landscape-btn-icon {
  width: 18px;
  height: 18px;
}

.ritual-landscape-right {
  min-height: 0;
}

.ritual-landscape-img {
  width: 100%;
  min-height: 220px;
  height: auto;
}

/* RITUAL TYPES - 768px altÄ± (bir satÄ±rda iki kart) */
.ritual-types {
  padding: 28px 16px;
}

.ritual-types-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.ritual-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ritual-types-card {
  flex: 0 0 calc((100% - 10px) / 2);
  min-height: 0;
}

.ritual-types-card-img-wrap {
  height: 150px;
}

.ritual-types-card-body {
  padding: 12px;
  gap: 8px;
}

.ritual-types-card-title {
  font-size: 15px;
}

.ritual-types-card-desc {
  font-size: 13px;
}

.ritual-types-card-btns {
  flex-direction: column;
  gap: 8px;
}

.ritual-types-card-btn {
  width: 100%;
  padding: 14px 12px;
  font-size: 16px;
  gap: 6px;
}

.ritual-types-card-btn-icon {
  width: 18px;
  height: 18px;
}

/* RITUAL CARE - 768px altÄ± */
.ritual-care {
  padding: 28px 16px;
}

.ritual-care-title {
  font-size: 24px;
}

.ritual-care-desc {
  margin-bottom: 14px;
}

.ritual-care-subtitle {
  font-size: 14px;
}

.ritual-care-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ritual-care-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ritual-care-grid::-webkit-scrollbar {
  display: none;
}

.ritual-care-card {
  flex: 0 0 255px;
  min-width: 255px;
  padding: 14px;
}

.ritual-care-card-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.ritual-care-card-desc {
  font-size: 13px;
}

.ritual-care-right {
  width: 100%;
  flex: 0 0 auto;
}

.ritual-care-box {
  padding: 14px;
}

.ritual-care-box-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.ritual-care-list li {
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.ritual-care-list-icon {
  width: 14px;
  height: 14px;
}

/* BLOG PAGE - 768px altÄ± (tam ekran, tek satÄ±rda 2 kart) */
.blog-section {
  padding: 0 16px;
}

.blog-wrap {
  width: 100%;
}

.blog-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-card {
  flex: 0 0 calc((100% - 10px) / 2);
  min-width: calc((100% - 10px) / 2);
  border-radius: 8px;
}

@media (max-width: 600px) {
  .blog-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .ritual-types-card {
    flex: 0 0 100%;
  }
}

.blog-card-img-wrap {
  height: 120px;
}

.blog-card-body {
  padding: 10px;
  gap: 8px;
}

.blog-card-title {
  font-size: 14px;
}

.blog-card-desc {
  font-size: 12px;
  line-height: 1.35;
}

.blog-card-link {
  font-size: 12px;
  margin-top: 10px;
}

.blog-more-wrap {
  margin-top: 12px;
}

.blog-more-btn {
  width: 100%;
  padding: 14px 14px;
  font-size: 16px;
  border-radius: 8px;
  margin-top: 15px;
}

/* BLOG DETAIL - 768px altÄ± (tam ekran, sidebar altta yatay) */
.blog-detail {
  padding: 0 16px 24px;
  min-height: 100vh;
}

.blog-detail-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-detail-main {
  width: 100%;
}

.blog-detail-img-wrap {
  width: 100%;
  height: 220px;
  margin-bottom: 12px;
  border-radius: 8px;
}

.blog-detail-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.blog-detail-content {
  font-size: 14px;
  line-height: 1.45;
}

.blog-detail-content p {
  margin-bottom: 12px;
}

.blog-detail-highlight {
  padding: 14px;
  border-radius: 8px;
  margin: 12px 0;
}

.blog-detail-highlight p {
  font-size: 13px;
}

.blog-detail-faq {
  margin: 14px 0;
}

.blog-detail-faq-item {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 8px;
}

.blog-detail-faq-header {
  padding: 10px 0;
  gap: 10px;
}

.blog-detail-faq-title {
  font-size: 13px;
}

.blog-detail-faq-toggle {
  width: 20px;
  height: 20px;
}

.blog-detail-faq-toggle::before,
.blog-detail-faq-toggle::after {
  width: 16px;
  height: 2px;
}

.blog-detail-faq-body {
  padding-bottom: 10px;
}

.blog-detail-faq-body p {
  font-size: 13px;
}

.blog-detail-sidebar {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blog-detail-sidebar::-webkit-scrollbar {
  display: none;
}

.blog-detail-card {
  flex: 0 0 252px;
  min-width: 252px;
  scroll-snap-align: start;
  border-radius: 8px;
  box-shadow: none;
}

.blog-detail-card-img-wrap {
  height: 140px;
}

.blog-detail-card-body {
  padding: 10px 12px;
  gap: 6px;
}

.blog-detail-card-title {
  font-size: 13px;
}

.blog-detail-card-link {
  font-size: 12px;
}

/* ERROR & SUCCESS - 768px altÄ± */
.error-section,
.success-section {
  min-height: 100vh;
  padding: 24px 16px;
}

.error-content,
.success-content {
  width: 100%;
  max-width: 100%;
}

.error-icon {
  width: 100%;
  max-width: 210px;
  margin: 0 auto 16px;
}

.success-icon {
  width: 72px;
  margin-bottom: 16px;
}

.error-title,
.success-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.error-text,
.success-text {
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.error-btn,
.success-btn {
  width: 100%;
  max-width: 320px;
  padding: 12px 14px;
  font-size: 13px;
  border-radius: 8px;
}


.breadcrumbs-section {
  padding: 15px 20px;
}

.breadcrumb-item {
  padding: 5px 7px;
  font-size: 13px;
  border-radius: 8px;
}

.breadcrumbs-container {
  gap: 10px;
}






}

/* ========== MOBILE 600px ========== */
@media (max-width: 600px) {

  .banner-right {
    width: 100%;
    padding: 20px;
    min-height: 300px;
    margin-top: 100px;
    flex-direction: column;
}


.banner-man-wrapper {
  width: 100%;
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -100px;
}

.banner-man {
  width: 70%;
  display: block;
}


.banner-content-box {
  gap: 20px;
  width: 100%;
  justify-content: flex-end;
  height: 100%;
  flex-direction: column;
}

.banner-director-info {
  align-items: flex-end;
  justify-content: flex-end;
  position: static;
  margin-top: -96px;
}

.banner-contact-block {
  width: 100%;
  padding: 19px;
  gap: 10px;
  min-width: fit-content;
}



.banner-btn {
  gap: 10px;
  padding: 14px;
  font-size: 16px;
}


.banner-legal {
  margin-top: 10px;
  font-size: 9px;
  max-width: 100%;
  text-align: left;
}

.banner-legal br {
  display: none;
}



.traditions-card-body {
  gap: 20px;
  padding-right: 0px;
  flex-direction: column-reverse;
}




.traditions-body-content {
  gap: 5px;
  width: 100%;
  padding: 10px
}

.traditions-img-bg {
  width: 90%;
  height: auto;
  align-self: start;
  object-fit: contain;
}


.help-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 14px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}





















}