@charset "UTF-8";
body {
  background-color: #FAFBFF;
}

.main-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E7E3DA;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  min-height: 120px;
}
.main-header .logo-wrapper {
  flex-shrink: 0;
}
.main-header .logo-wrapper .logo-link {
  display: block;
  line-height: 0;
}
.main-header .logo-wrapper .logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 350px;
  max-height: 200px;
  min-width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-header .contact-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}
.main-header .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background-color: #F8F7F4;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.main-header .contact-info .contact-item:hover {
  background-color: #F3F1EA;
  transform: translateY(-2px);
}
.main-header .contact-info .contact-item i {
  font-size: 1.4rem;
  color: #4B5240;
}
.main-header .contact-info .contact-item div {
  display: flex;
  flex-direction: column;
}
.main-header .contact-info .contact-item .contact-label {
  font-size: 0.7rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-header .contact-info .contact-item .contact-value {
  font-size: 0.95rem;
  color: #1D1D1B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.main-header .contact-info .contact-item .contact-value:hover {
  color: #4B5240;
}
.main-header .contact-info .btn-call {
  display: flex;
  align-items: center;
  background-color: #4B5240;
  border: none;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(75, 82, 64, 0.2);
}
.main-header .contact-info .btn-call i {
  font-size: 1rem;
}
.main-header .contact-info .btn-call:hover {
  background-color: #3a4032;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(75, 82, 64, 0.3);
}
.main-header .contact-info .btn-call:active {
  transform: translateY(0);
}
.main-header .mobile-menu-btn {
  background: linear-gradient(135deg, #4B5240 0%, #3a4032 100%);
  border: none;
  color: #FFFFFF;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.main-header .mobile-menu-btn i {
  font-size: 1.5rem;
}
.main-header .mobile-menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.main-header .mobile-menu-btn:active {
  transform: scale(0.95);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main-header .header-top {
    padding: 20px 0;
    min-height: 100px;
  }
  .main-header .logo-img {
    max-width: 260px;
    max-height: 75px;
    min-width: 200px;
  }
  .main-header .contact-info {
    gap: 15px;
  }
  .main-header .contact-info .contact-item {
    padding: 6px 12px;
  }
  .main-header .contact-info .contact-item i {
    font-size: 1.2rem;
  }
  .main-header .contact-info .contact-item .contact-value {
    font-size: 0.85rem;
  }
  .main-header .contact-info .btn-call {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .main-header .header-top {
    padding: 15px 0;
    min-height: 80px;
  }
  .main-header .logo-img {
    max-width: 200px;
    max-height: 60px;
    min-width: 160px;
  }
  .main-header .mobile-menu-btn {
    width: 48px;
    height: 48px;
  }
  .main-header .mobile-menu-btn i {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .main-header .logo-img {
    max-width: 170px;
    max-height: 55px;
    min-width: 140px;
  }
  .main-header .mobile-menu-btn {
    width: 44px;
    height: 44px;
  }
}

.desktop-nav {
  background-color: #FFFFFF;
  border-top: 2px solid #F3F1EA;
  padding: 20px 0;
}
.desktop-nav .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-nav .nav-item {
  position: relative;
}
.desktop-nav .nav-link {
  display: inline-block;
  padding: 12px 24px;
  color: #1D1D1B;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.2s ease;
}
.desktop-nav .nav-link:hover {
  background-color: #F3F1EA;
  color: #1D1D1B;
}
.desktop-nav .nav-link.active {
  background-color: #4B5240;
  color: #FFFFFF;
}
.desktop-nav .nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "";
  border-top: 5px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.desktop-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #FFFFFF;
  border: 1px solid #E7E3DA;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  margin-top: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
}
.desktop-nav .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 14px;
  height: 14px;
  background-color: #FFFFFF;
  border-top: 1px solid #E7E3DA;
  border-left: 1px solid #E7E3DA;
  transform: rotate(45deg);
}
.desktop-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.desktop-nav .dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #1D1D1B;
  text-decoration: none;
  transition: all 0.15s ease;
  font-size: 0.95rem;
}
.desktop-nav .dropdown-item:hover {
  background-color: #F3F1EA;
  color: #1D1D1B;
}
.desktop-nav .dropdown-item.active {
  background-color: #4B5240;
  color: #FFFFFF;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .desktop-nav {
    padding: 15px 0;
  }
  .desktop-nav .nav-link {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
  .desktop-nav .nav-list {
    gap: 8px;
  }
}
.offcanvas {
  background-color: #FFFFFF;
}
.offcanvas .dropdown .dropdown-menu {
  position: static !important;
  transform: none !important;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  width: 100%;
}
.offcanvas .dropdown .dropdown-item {
  padding: 8px 16px 8px 32px;
  font-size: 0.9rem;
  border-radius: 10px;
  margin: 2px 0;
}
.offcanvas .dropdown .dropdown-item:hover {
  background-color: #F3F1EA;
}
.offcanvas .dropdown .dropdown-item.active {
  background-color: #4B5240;
  color: #FFFFFF;
}
.offcanvas.offcanvas-start {
  width: 320px;
}
.offcanvas .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid #E7E3DA;
}
.offcanvas .offcanvas-header .offcanvas-logo img {
  height: 45px;
  width: auto;
}
.offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
}
.offcanvas .offcanvas-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.offcanvas .mobile-nav {
  flex: 1;
  margin-bottom: 20px;
}
.offcanvas .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offcanvas .mobile-nav-item {
  margin-bottom: 8px;
}
.offcanvas .mobile-nav-item.dropdown {
  position: relative;
}
.offcanvas .mobile-nav-link {
  display: block;
  padding: 12px 16px;
  color: #1D1D1B;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.offcanvas .mobile-nav-link:hover {
  background-color: #F3F1EA;
}
.offcanvas .mobile-nav-link.active {
  background-color: #4B5240;
  color: #FFFFFF;
}
.offcanvas .mobile-nav-link.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offcanvas .mobile-nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  content: "▼";
  font-size: 0.7rem;
  border: none;
}
.offcanvas .dropdown-menu {
  position: static !important;
  float: none !important;
  width: 100%;
  background-color: #F8F7F4;
  border: none;
  border-radius: 12px;
  padding: 8px;
  margin-top: 5px;
  box-shadow: none;
}
.offcanvas .dropdown-menu .dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #1D1D1B;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.offcanvas .dropdown-menu .dropdown-item:hover {
  background-color: #E7E3DA;
}
.offcanvas .dropdown-menu .dropdown-item.active {
  background-color: #4B5240;
  color: #FFFFFF;
}
.offcanvas .mobile-contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #E7E3DA;
}
.offcanvas .mobile-contact hr {
  display: none;
}
.offcanvas .mobile-contact .contact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #F8F7F4;
  padding: 12px 16px;
  border-radius: 50px;
  color: #1D1D1B;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.offcanvas .mobile-contact .contact-pill i {
  width: 20px;
  color: #4B5240;
  font-size: 1rem;
}
.offcanvas .mobile-contact .contact-pill span {
  flex: 1;
}
.offcanvas .mobile-contact .contact-pill a {
  color: #1D1D1B;
  text-decoration: none;
  flex: 1;
}
.offcanvas .mobile-contact .contact-pill a:hover {
  color: #4B5240;
}
.offcanvas .mobile-contact .btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #4B5240;
  border: none;
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.offcanvas .mobile-contact .btn-call i {
  font-size: 1rem;
}
.offcanvas .mobile-contact .btn-call:hover {
  background-color: #3a4032;
  transform: translateY(-2px);
}
.offcanvas .mobile-contact .btn-call:active {
  transform: translateY(0);
}

@media (max-width: 575px) {
  .offcanvas.offcanvas-start {
    width: 100%;
  }
}
.modal .modal-dialog {
  max-width: 450px;
}
.modal .modal-content {
  background-color: #FFFFFF;
  border: 1px solid #E7E3DA;
  border-radius: 20px;
  overflow: hidden;
}
.modal .modal-header {
  border-bottom: 1px solid #E7E3DA;
  padding: 20px 24px;
}
.modal .modal-header .modal-title {
  color: #1D1D1B;
  font-weight: 600;
  font-size: 1.25rem;
}
.modal .modal-body {
  padding: 24px;
}
.modal .modal-body .form-label {
  color: #1D1D1B;
  font-weight: 500;
  margin-bottom: 8px;
}
.modal .modal-body .form-control {
  border: 1px solid #E7E3DA;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.2s ease;
}
.modal .modal-body .form-control:focus {
  border-color: #4B5240;
  box-shadow: 0 0 0 3px rgba(75, 82, 64, 0.1);
  outline: none;
}
.modal .modal-footer {
  border-top: 1px solid #E7E3DA;
  padding: 16px 24px 24px;
}
.modal .modal-footer .btn-outline-stone {
  border: 1px solid #E7E3DA;
  color: #1D1D1B;
  background-color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 40px;
  transition: 0.2s;
}
.modal .modal-footer .btn-outline-stone:hover {
  background-color: #F3F1EA;
  border-color: #E7E3DA;
}
.modal .modal-footer .btn-submit {
  background-color: #4B5240;
  border: none;
  color: #FFFFFF;
  padding: 10px 28px;
  border-radius: 40px;
  transition: 0.2s;
}
.modal .modal-footer .btn-submit:hover {
  background-color: #3a4032;
}

.genplan-page {
  padding: 2rem 0 4rem;
  background-color: #f9f7f3;
  min-height: 100vh;
}
.genplan-page .page-title {
  color: #4e5b4a;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .genplan-page .page-title {
    font-size: 2rem;
  }
}
.genplan-page .page-subtitle {
  color: #7f8c7a;
  font-size: 1.2rem;
  font-weight: 400;
}
.genplan-page .section-title {
  color: #4e5b4a;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.genplan-page .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #b6ccb0;
  border-radius: 2px;
}
.genplan-page .map-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.9254901961);
  border: 1px solid #dcd7cc;
}
.genplan-page .map-container .genplan-map {
  width: 100%;
  height: 550px;
}
@media (max-width: 767px) {
  .genplan-page .map-container .genplan-map {
    height: 400px;
  }
}
.genplan-page .map-container .map-type-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 5px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 5px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #dcd7cc;
}
.genplan-page .map-container .map-type-selector .map-type-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5a4a;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.genplan-page .map-container .map-type-selector .map-type-btn i {
  color: #7f8c7a;
}
.genplan-page .map-container .map-type-selector .map-type-btn:hover {
  background-color: #f3f0e9;
}
.genplan-page .map-container .map-type-selector .map-type-btn.active {
  background-color: #9aa899;
  color: white;
}
.genplan-page .map-container .map-type-selector .map-type-btn.active i {
  color: white;
}
.genplan-page .settlements-list {
  margin-top: 1rem;
}
.genplan-page .settlements-list .settlement-card {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid #e5e0d5;
  transition: all 0.2s ease;
}
.genplan-page .settlements-list .settlement-card:hover {
  box-shadow: 0 8px 24px rgba(154, 168, 153, 0.1);
  border-color: #b6ccb0;
  transform: translateY(-2px);
}
.genplan-page .settlements-list .settlement-card .settlement-info .settlement-title {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.genplan-page .settlements-list .settlement-card .settlement-info .settlement-title a {
  color: #4e5b4a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.genplan-page .settlements-list .settlement-card .settlement-info .settlement-title a:hover {
  color: #6a7c63;
}
.genplan-page .settlements-list .settlement-card .settlement-info .settlement-description {
  color: #7f8c7a;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.genplan-page .settlements-list .settlement-card .settlement-info .settlement-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.genplan-page .settlements-list .settlement-card .settlement-info .settlement-stats .stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #7f8c7a;
  padding: 4px 0;
  border-left: 3px solid #9aa899;
  padding-left: 10px;
}
.genplan-page .settlements-list .settlement-card .settlement-info .settlement-stats .stat-badge i {
  color: #9aa899;
  font-size: 0.85rem;
}
.genplan-page .settlements-list .settlement-card .settlement-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  height: 100%;
}
@media (max-width: 767px) {
  .genplan-page .settlements-list .settlement-card .settlement-actions {
    margin-top: 1rem;
    flex-direction: row;
  }
  .genplan-page .settlements-list .settlement-card .settlement-actions .btn {
    flex: 1;
  }
}
.genplan-page .settlements-list .settlement-card .settlement-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  border-radius: 40px;
}
.genplan-page .settlements-list .settlement-card .settlement-actions .btn i {
  font-size: 0.9rem;
}
.genplan-page .settlements-list .settlement-card .settlement-actions .btn-primary {
  background-color: #9aa899;
  border: none;
  color: white;
}
.genplan-page .settlements-list .settlement-card .settlement-actions .btn-primary:hover {
  background-color: rgb(132.1968253968, 149.219047619, 130.980952381);
  transform: translateY(-1px);
}
.genplan-page .settlements-list .settlement-card .settlement-actions .btn-outline-success {
  border: 1px solid #9aa899;
  color: #9aa899;
  background-color: transparent;
}
.genplan-page .settlements-list .settlement-card .settlement-actions .btn-outline-success:hover {
  background-color: #9aa899;
  color: white;
  transform: translateY(-1px);
}
.genplan-page .map-tooltip {
  background-color: rgba(255, 255, 255, 0.9254901961);
  color: #4a5a4a;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #dcd7cc;
  border-left: 3px solid #9aa899;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1000;
  line-height: 1.5;
}
.genplan-page .map-tooltip strong {
  color: #6a7c63;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .genplan-page .settlements-list .settlement-card .settlement-actions .btn {
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .genplan-page {
    padding: 1rem 0 2rem;
  }
  .genplan-page .map-container .map-type-selector {
    top: 10px;
    right: 10px;
  }
  .genplan-page .map-container .map-type-selector .map-type-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  .genplan-page .map-container .map-type-selector .map-type-btn i {
    font-size: 0.75rem;
  }
  .genplan-page .settlements-list .settlement-card {
    padding: 1rem;
  }
  .genplan-page .settlements-list .settlement-card .settlement-info .settlement-title {
    font-size: 1.1rem;
  }
  .genplan-page .settlements-list .settlement-card .settlement-info .settlement-description {
    font-size: 0.85rem;
  }
  .genplan-page .settlements-list .settlement-card .settlement-info .settlement-stats {
    gap: 10px;
  }
  .genplan-page .settlements-list .settlement-card .settlement-info .settlement-stats .stat-badge {
    font-size: 0.75rem;
  }
}
.settlement-page {
  padding: 2rem 0 4rem;
  background-color: #f9f7f3;
  min-height: 100vh;
}
.settlement-page .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.settlement-page .breadcrumb .breadcrumb-item a {
  color: #9aa899;
  text-decoration: none;
}
.settlement-page .breadcrumb .breadcrumb-item a:hover {
  color: #6a7c63;
  text-decoration: underline;
}
.settlement-page .breadcrumb .breadcrumb-item.active {
  color: #3c403c;
}
.settlement-page .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(60, 64, 60, 0.3);
}
.settlement-page .page-title {
  color: #4e5b4a;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .settlement-page .page-title {
    font-size: 2rem;
  }
}
.settlement-page .page-subtitle {
  color: #7f8c7a;
  font-size: 1.2rem;
  font-weight: 400;
}
.settlement-page .settlement-gallery {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #dcd7cc;
}
.settlement-page .settlement-gallery .gallery-main {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.settlement-page .settlement-gallery .gallery-main img {
  width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.settlement-page .settlement-gallery .gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
}
.settlement-page .settlement-gallery .gallery-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.settlement-page .settlement-gallery .gallery-thumbnails::-webkit-scrollbar-track {
  background: #f3f0e9;
  border-radius: 2px;
}
.settlement-page .settlement-gallery .gallery-thumbnails::-webkit-scrollbar-thumb {
  background: #9aa899;
  border-radius: 2px;
}
.settlement-page .settlement-gallery .gallery-thumbnails .thumbnail {
  flex: 0 0 80px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.settlement-page .settlement-gallery .gallery-thumbnails .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.settlement-page .settlement-gallery .gallery-thumbnails .thumbnail:hover {
  opacity: 0.8;
}
.settlement-page .settlement-gallery .gallery-thumbnails .thumbnail.active {
  opacity: 1;
  border-color: #9aa899;
}
.settlement-page .section-title {
  color: #4e5b4a;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.settlement-page .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #b6ccb0;
  border-radius: 2px;
}
.settlement-page .map-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.9254901961);
  border: 1px solid #dcd7cc;
}
.settlement-page .map-container .plots-map {
  width: 100%;
  height: 500px;
}
@media (max-width: 767px) {
  .settlement-page .map-container .plots-map {
    height: 350px;
  }
}
.settlement-page .map-container .map-legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 12px 15px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #dcd7cc;
}
.settlement-page .map-container .map-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.settlement-page .map-container .map-legend .legend-item:last-child {
  margin-bottom: 0;
}
.settlement-page .map-container .map-legend .legend-item .legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.settlement-page .map-container .map-legend .legend-item .legend-color.status-free {
  background-color: rgba(111, 198, 52, 0.2);
  border: 2px solid #6FC634;
}
.settlement-page .map-container .map-legend .legend-item .legend-color.status-reserved {
  background-color: rgba(255, 165, 0, 0.2);
  border: 2px solid #FFA500;
}
.settlement-page .map-container .map-legend .legend-item .legend-color.status-sold {
  background-color: rgba(220, 53, 69, 0.2);
  border: 2px solid #dc3545;
}
.settlement-page .map-container .map-legend .legend-item .legend-text {
  color: #4a5a4a;
}
.settlement-page .map-container .map-type-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 5px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 5px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #dcd7cc;
}
.settlement-page .map-container .map-type-selector .map-type-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5a4a;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.settlement-page .map-container .map-type-selector .map-type-btn i {
  color: #7f8c7a;
}
.settlement-page .map-container .map-type-selector .map-type-btn:hover {
  background-color: #f3f0e9;
}
.settlement-page .map-container .map-type-selector .map-type-btn.active {
  background-color: #9aa899;
  color: white;
}
.settlement-page .map-container .map-type-selector .map-type-btn.active i {
  color: white;
}
.settlement-page .info-block {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #dcd7cc;
  height: 100%;
}
.settlement-page .info-block .settlement-description {
  color: #4a5a4a;
  line-height: 1.8;
  font-size: 1rem;
}
.settlement-page .stats-block {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #dcd7cc;
  height: 100%;
}
.settlement-page .stats-block .stats-title {
  color: #4e5b4a;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.settlement-page .stats-block .stats-list .stat-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f3f0e9;
}
.settlement-page .stats-block .stats-list .stat-item:last-child {
  border-bottom: none;
}
.settlement-page .stats-block .stats-list .stat-item .stat-label {
  color: #7f8c7a;
  font-weight: 400;
}
.settlement-page .stats-block .stats-list .stat-item .stat-value {
  font-weight: 500;
  color: #4a5a4a;
}
.settlement-page .stats-block .stats-list .stat-item .stat-value.status-free-text {
  color: #6FC634;
}
.settlement-page .stats-block .stats-list .stat-item .stat-value.status-reserved-text {
  color: #FFA500;
}
.settlement-page .stats-block .stats-list .stat-item .stat-value.status-sold-text {
  color: #dc3545;
}
.settlement-page .stats-block .stats-list .stat-item .stat-value.price-text {
  color: #4e5b4a;
  font-size: 1.1rem;
  font-weight: 600;
}
.settlement-page .plots-list {
  margin-top: 1rem;
}
.settlement-page .plots-list .plot-card {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid #e5e0d5;
  transition: all 0.2s ease;
}
.settlement-page .plots-list .plot-card:hover {
  box-shadow: 0 8px 24px rgba(154, 168, 153, 0.1);
  border-color: #b6ccb0;
}
.settlement-page .plots-list .plot-card .plot-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 90px;
  width: 100%;
}
.settlement-page .plots-list .plot-card .plot-image picture, .settlement-page .plots-list .plot-card .plot-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.settlement-page .plots-list .plot-card .plot-image .plot-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  color: white;
  backdrop-filter: blur(2px);
}
.settlement-page .plots-list .plot-card .plot-image .plot-badge.status-free {
  background-color: #6FC634;
}
.settlement-page .plots-list .plot-card .plot-image .plot-badge.status-reserved {
  background-color: #FFA500;
}
.settlement-page .plots-list .plot-card .plot-image .plot-badge.status-sold {
  background-color: #dc3545;
}
.settlement-page .plots-list .plot-card .plot-info .plot-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.settlement-page .plots-list .plot-card .plot-info .plot-title a {
  color: #4e5b4a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.settlement-page .plots-list .plot-card .plot-info .plot-title a:hover {
  color: #6a7c63;
}
.settlement-page .plots-list .plot-card .plot-info .plot-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0.5rem;
}
.settlement-page .plots-list .plot-card .plot-info .plot-details .detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7f8c7a;
  font-size: 0.9rem;
}
.settlement-page .plots-list .plot-card .plot-info .plot-details .detail-item i {
  color: #9aa899;
  font-size: 0.9rem;
}
.settlement-page .plots-list .plot-card .plot-info .plot-utilities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.settlement-page .plots-list .plot-card .plot-info .plot-utilities .utility-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #f3f0e9;
  color: #4a5a4a;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.settlement-page .plots-list .plot-card .plot-info .plot-utilities .utility-tag i {
  color: #9aa899;
  font-size: 0.7rem;
}
.settlement-page .plots-list .plot-card .plot-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .settlement-page .plots-list .plot-card .plot-actions {
    margin-top: 1rem;
    flex-direction: row;
  }
  .settlement-page .plots-list .plot-card .plot-actions .btn {
    flex: 1;
  }
}
.settlement-page .plots-list .plot-card .plot-actions .btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  border-radius: 40px;
}
.settlement-page .plots-list .plot-card .plot-actions .btn i {
  font-size: 0.9rem;
}
.settlement-page .plots-list .plot-card .plot-actions .btn-primary {
  background-color: #9aa899;
  border: none;
  color: white;
}
.settlement-page .plots-list .plot-card .plot-actions .btn-primary:hover {
  background-color: rgb(132.1968253968, 149.219047619, 130.980952381);
}
.settlement-page .plots-list .plot-card .plot-actions .btn-outline-success {
  border: 1px solid #9aa899;
  color: #9aa899;
  background-color: transparent;
}
.settlement-page .plots-list .plot-card .plot-actions .btn-outline-success:hover {
  background-color: #9aa899;
  color: white;
}
.settlement-page .map-tooltip {
  background-color: rgba(255, 255, 255, 0.9254901961);
  color: #4a5a4a;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #dcd7cc;
  border-left: 3px solid #9aa899;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1000;
  line-height: 1.5;
}
.settlement-page .map-tooltip strong {
  color: #6a7c63;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .settlement-page .stats-block {
    margin-top: 1.5rem;
  }
  .settlement-page .plots-list .plot-card .plot-actions .btn {
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .settlement-page {
    padding: 1rem 0 2rem;
  }
  .settlement-page .map-container .map-legend {
    left: 10px;
    bottom: 10px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  .settlement-page .map-container .map-legend .legend-color {
    width: 16px;
    height: 16px;
  }
  .settlement-page .map-container .map-type-selector {
    top: 10px;
    right: 10px;
  }
  .settlement-page .map-container .map-type-selector .map-type-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  .settlement-page .map-container .map-type-selector .map-type-btn i {
    font-size: 0.8rem;
  }
  .settlement-page .plots-list .plot-card .plot-image {
    height: 80px;
  }
  .settlement-page .plots-list .plot-card .plot-info .plot-title {
    font-size: 1rem;
  }
  .settlement-page .plots-list .plot-card .plot-info .plot-details {
    gap: 10px;
  }
  .settlement-page .plots-list .plot-card .plot-info .plot-details .detail-item {
    font-size: 0.8rem;
  }
}
.plot-page {
  padding: 2rem 0 4rem;
  background-color: #f9f7f3;
  min-height: 100vh;
}
.plot-page .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.plot-page .breadcrumb .breadcrumb-item a {
  color: #9aa899;
  text-decoration: none;
  transition: color 0.2s ease;
}
.plot-page .breadcrumb .breadcrumb-item a:hover {
  color: #6a7c63;
  text-decoration: underline;
}
.plot-page .breadcrumb .breadcrumb-item.active {
  color: #3c403c;
}
.plot-page .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(60, 64, 60, 0.3);
}
.plot-page .page-title {
  color: #4e5b4a;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  display: inline-block;
}
@media (max-width: 767px) {
  .plot-page .page-title {
    font-size: 2rem;
  }
}
.plot-page .page-title .page-num {
  font-size: 1.5rem;
  font-weight: 400;
  color: #7f8c7a;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .plot-page .page-title .page-num {
    font-size: 1.2rem;
    display: block;
    margin-left: 0;
    margin-top: 0.25rem;
  }
}
.plot-page .page-subtitle {
  color: #7f8c7a;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.plot-page .plot-status-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 1rem;
  color: white;
  margin-top: 0.5rem;
}
.plot-page .plot-status-badge.status-free {
  background-color: #6FC634;
}
.plot-page .plot-status-badge.status-reserved {
  background-color: #FFA500;
}
.plot-page .plot-status-badge.status-sold {
  background-color: #dc3545;
}
.plot-page .plot-gallery {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #dcd7cc;
}
.plot-page .plot-gallery .gallery-main {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}
.plot-page .plot-gallery .gallery-main img {
  width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.plot-page .plot-gallery .gallery-main .gallery-main-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  color: white;
  font-size: 0.9rem;
}
.plot-page .plot-gallery .gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
}
.plot-page .plot-gallery .gallery-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.plot-page .plot-gallery .gallery-thumbnails::-webkit-scrollbar-track {
  background: #f3f0e9;
  border-radius: 2px;
}
.plot-page .plot-gallery .gallery-thumbnails::-webkit-scrollbar-thumb {
  background: #9aa899;
  border-radius: 2px;
}
.plot-page .plot-gallery .gallery-thumbnails .thumbnail {
  flex: 0 0 100px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}
.plot-page .plot-gallery .gallery-thumbnails .thumbnail img {
  width: 100%;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.plot-page .plot-gallery .gallery-thumbnails .thumbnail .thumbnail-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 0.7rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plot-page .plot-gallery .gallery-thumbnails .thumbnail:hover {
  opacity: 0.8;
}
.plot-page .plot-gallery .gallery-thumbnails .thumbnail.active {
  opacity: 1;
  border-color: #9aa899;
}
.plot-page .section-title {
  color: #4e5b4a;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.plot-page .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #b6ccb0;
  border-radius: 2px;
}
.plot-page .plot-info-card {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #dcd7cc;
  height: 100%;
}
.plot-page .plot-info-card .info-list .info-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f0e9;
}
.plot-page .plot-info-card .info-list .info-item:last-child {
  border-bottom: none;
}
.plot-page .plot-info-card .info-list .info-item.price-item {
  background-color: rgba(154, 168, 153, 0.1);
  margin: 0.5rem -1rem;
  padding: 1rem;
  border-radius: 12px;
  border-bottom: none;
}
.plot-page .plot-info-card .info-list .info-item .info-label {
  color: #7f8c7a;
  font-weight: 400;
}
.plot-page .plot-info-card .info-list .info-item .info-value {
  font-weight: 500;
  color: #4a5a4a;
  text-align: right;
}
.plot-page .plot-info-card .info-list .info-item .info-value.status-free-text {
  color: #6FC634;
}
.plot-page .plot-info-card .info-list .info-item .info-value.status-reserved-text {
  color: #FFA500;
}
.plot-page .plot-info-card .info-list .info-item .info-value.status-sold-text {
  color: #dc3545;
}
.plot-page .plot-info-card .info-list .info-item .info-value.price-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4e5b4a;
}
.plot-page .plot-utilities-card {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #dcd7cc;
  height: 100%;
}
.plot-page .plot-utilities-card .utilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 575px) {
  .plot-page .plot-utilities-card .utilities-grid {
    grid-template-columns: 1fr;
  }
}
.plot-page .plot-utilities-card .utilities-grid .utility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  background-color: #f3f0e9;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.plot-page .plot-utilities-card .utilities-grid .utility-item i {
  color: #9aa899;
  font-size: 1.1rem;
}
.plot-page .plot-utilities-card .utilities-grid .utility-item span {
  color: #4a5a4a;
  font-size: 0.95rem;
}
.plot-page .plot-utilities-card .utilities-grid .utility-item:hover {
  background-color: #e8e2d8;
  transform: translateX(3px);
}
.plot-page .plot-utilities-card .plot-action {
  text-align: center;
}
.plot-page .plot-utilities-card .plot-action .btn-call-large {
  background-color: #9aa899;
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 300px;
}
.plot-page .plot-utilities-card .plot-action .btn-call-large:hover {
  background-color: rgb(132.1968253968, 149.219047619, 130.980952381);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(154, 168, 153, 0.3);
}
.plot-page .plot-utilities-card .plot-action .btn-call-large:active {
  transform: translateY(0);
}
.plot-page .plot-description-card {
  background: rgba(255, 255, 255, 0.9254901961);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #dcd7cc;
}
.plot-page .plot-description-card .plot-description {
  color: #4a5a4a;
  line-height: 1.8;
  font-size: 1rem;
}
.plot-page .map-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.9254901961);
  border: 1px solid #dcd7cc;
}
.plot-page .map-container .plot-map {
  width: 100%;
  height: 500px;
}
@media (max-width: 767px) {
  .plot-page .map-container .plot-map {
    height: 350px;
  }
}
.plot-page .map-container .map-type-selector {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 5px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 5px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #dcd7cc;
}
.plot-page .map-container .map-type-selector .map-type-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5a4a;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.plot-page .map-container .map-type-selector .map-type-btn i {
  color: #7f8c7a;
}
.plot-page .map-container .map-type-selector .map-type-btn:hover {
  background-color: #f3f0e9;
}
.plot-page .map-container .map-type-selector .map-type-btn.active {
  background-color: #9aa899;
  color: white;
}
.plot-page .map-container .map-type-selector .map-type-btn.active i {
  color: white;
}
.plot-page .btn-back {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  background-color: #e7e3d9;
  color: #2d3a2d;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.plot-page .btn-back i {
  transition: transform 0.2s ease;
}
.plot-page .btn-back:hover {
  background-color: #dad3c5;
}
.plot-page .btn-back:hover i {
  transform: translateX(-3px);
}

@media (max-width: 991px) {
  .plot-page .plot-info-card,
  .plot-page .plot-utilities-card {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .plot-page {
    padding: 1rem 0 2rem;
  }
  .plot-page .map-container .map-type-selector {
    top: 10px;
    right: 10px;
  }
  .plot-page .map-container .map-type-selector .map-type-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  .plot-page .map-container .map-type-selector .map-type-btn i {
    font-size: 0.8rem;
  }
  .plot-page .plot-info-card .info-list .info-item.price-item .info-value.price-value {
    font-size: 1.1rem;
  }
  .plot-page .btn-call-large {
    max-width: 100% !important;
  }
}
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  padding: 3rem 0 0 0;
}
.footer a {
  color: #b8c4b3;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer .footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem !important;
  margin-bottom: 2rem;
}
.footer .footer-top .footer-logo .company {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.footer .footer-top .footer-logo .company::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #b8c4b3, transparent);
  border-radius: 2px;
}
.footer .footer-top .footer-politics .politics-link {
  color: #b8c4b3;
  font-size: 0.95rem;
  border-bottom: 1px dotted rgba(184, 196, 179, 0.5);
  padding-bottom: 2px;
}
.footer .footer-top .footer-politics .politics-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}
.footer .footer-top .footer-copy {
  font-size: 0.9rem;
  color: #999999;
  line-height: 1.4;
}
.footer .footer-middle .footer-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.footer .footer-middle .footer-section:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.footer .footer-middle .footer-title,
.footer .footer-middle .footer-title-static {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.3px;
  position: relative;
}
.footer .footer-middle .footer-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
}
.footer .footer-middle .footer-title .toggle-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
}
.footer .footer-middle .footer-title .toggle-icon::before, .footer .footer-middle .footer-title .toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #b8c4b3;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.footer .footer-middle .footer-title .toggle-icon::before {
  top: 9px;
  left: 4px;
  width: 12px;
  height: 2px;
}
.footer .footer-middle .footer-title .toggle-icon::after {
  top: 4px;
  left: 9px;
  width: 2px;
  height: 12px;
}
.footer .footer-middle .footer-title[aria-expanded=true] .toggle-icon {
  transform: rotate(45deg);
}
.footer .footer-middle .form-section .form-description {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.footer .footer-middle .form-section .callback-form .form-group {
  margin-bottom: 1rem;
}
.footer .footer-middle .form-section .callback-form .form-group .form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.footer .footer-middle .form-section .callback-form .form-group .form-control::-moz-placeholder {
  color: #888888;
}
.footer .footer-middle .form-section .callback-form .form-group .form-control::placeholder {
  color: #888888;
}
.footer .footer-middle .form-section .callback-form .form-group .form-control:focus {
  outline: none;
  border-color: #b8c4b3;
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(184, 196, 179, 0.1);
}
.footer .footer-middle .form-section .callback-form .form-group textarea.form-control {
  resize: vertical;
  font-family: inherit;
}
.footer .footer-middle .form-section .callback-form .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #4B5240 0%, #5a6a4e 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.footer .footer-middle .form-section .callback-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(75, 82, 64, 0.4);
}
.footer .footer-middle .form-section .callback-form .btn-submit:active {
  transform: translateY(0);
}
.footer .footer-middle .form-section .callback-form .form-note {
  margin-top: 1rem;
  text-align: center;
}
.footer .footer-middle .form-section .callback-form .form-note small {
  font-size: 0.75rem;
  color: #888888;
}
.footer .footer-middle .form-section .callback-form .form-note small a {
  color: #b8c4b3;
}
.footer .footer-middle .form-section .callback-form .form-note small a:hover {
  color: #ffffff;
}
.footer .footer-middle .footer-meta {
  transition: all 0.3s ease;
}
.footer .footer-middle .footer-meta .meta-subsection {
  margin-bottom: 1.2rem;
}
.footer .footer-middle .footer-meta .meta-subsection:last-child {
  margin-bottom: 0;
}
.footer .footer-middle .footer-meta .meta-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #c8d4c3;
  margin-bottom: 0.7rem;
  letter-spacing: 0.2px;
}
.footer .footer-middle .footer-meta .meta-item {
  display: flex;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer .footer-middle .footer-meta .meta-item:last-child {
  margin-bottom: 0;
}
.footer .footer-middle .footer-meta .meta-label {
  min-width: 90px;
  color: #999999;
  font-weight: 500;
}
.footer .footer-middle .footer-meta .meta-text {
  color: #e0e0e0;
  flex: 1;
}
.footer .footer-middle .footer-meta .meta-link {
  color: #b8c4b3;
}
.footer .footer-middle .footer-meta .meta-link:hover {
  color: #ffffff;
}
.footer .footer-middle .footer-meta .meta-phones {
  flex: 1;
}
.footer .footer-middle .footer-meta .meta-phones .meta-link {
  white-space: nowrap;
}
.footer .footer-middle .footer-meta .footer-social {
  margin-top: 0.5rem;
}
.footer .footer-middle .footer-meta .footer-social .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.3rem;
  transition: all 0.2s ease;
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link:hover {
  transform: translateY(-3px);
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link:hover.youtube {
  background-color: #ff0000;
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link:hover.vk {
  background-color: #0077ff;
}
.footer .footer-middle .footer-meta .footer-social .social-links .social-link:hover.telegram {
  background-color: #0088cc;
}
.footer .footer-middle .footer-meta .developer-block {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-middle .footer-meta .developer-block .developer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  transition: all 0.2s ease;
}
.footer .footer-middle .footer-meta .developer-block .developer-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.footer .footer-middle .footer-meta .developer-block .developer-link .developer-text {
  font-size: 0.85rem;
  color: #999999;
}
.footer .footer-middle .footer-meta .developer-block .developer-link .developer-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #b8c4b3;
  transition: color 0.2s ease;
}
@media (max-width: 767px) {
  .footer {
    padding: 2rem 0 0 0;
  }
  .footer .footer-top {
    text-align: center;
  }
  .footer .footer-top .footer-logo .company::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer .footer-top .footer-copy {
    text-align: center !important;
  }
  .footer .footer-middle .footer-section {
    padding: 1.2rem;
  }
  .footer .footer-middle .footer-title {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .footer .footer-middle .meta-item {
    flex-wrap: wrap;
  }
  .footer .footer-middle .meta-item .meta-label {
    min-width: 100%;
    margin-bottom: 0.2rem;
  }
  .footer .footer-middle .meta-item .meta-text,
  .footer .footer-middle .meta-item .meta-link,
  .footer .footer-middle .meta-item .meta-phones {
    padding-left: 0.5rem;
  }
  .footer .footer-middle .social-links {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .meta-phones {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .meta-phones .meta-link {
    white-space: normal !important;
  }
}/*# sourceMappingURL=settlement-page.css.map */