@font-face {
    font-family: 'Bounded';
    src: url('css/Bounded-Regular.ttf') format('truetype');
}

.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.flex-3 {
  flex: 3;
}
.flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* hide arrows on input[number] */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

:root {
  --primary-color: #F67011;
  --light-gray: #f8f9fa;
  --text-gray: #707070;
  --white: #ffffff;
  --text-black: #212121;
  --text-white: #F9F9F9;
}

.card-light {
  background-color: #ECEBF0;
  color: var(--text-black);
}
.card-dark {
  background-color: #212121;
  color: var(--text-white);
}

.font-bounded {
  font-family: Bounded;
  font-weight: 400;
}
.color-sel {
  color: var(--primary-color);
}

html {
	margin:0px!important;
}
body {
  /* font-family: 'Manrope', sans-serif; */
  font-family: 'Roboto';
}
/* ==================== HEADER ==================== */
.header-section {
  background-color: white;
  padding: 30px 0;
  position: relative;
}

.midi-header-section {
  background-color: white;
  padding: 30px 0;
  position: relative;
}
.greey-header {
	background: #ecebf0; 
	border-radius: 35px;
	padding-top: 35px;
}
.midi-header-section .header-left {
  background-color: #ecebf0; 
  padding: 40px 30px;
  border-radius: 37px;
  height: 550px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* .banners {
	height: 560px;
} */
.banners > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 37px;
}
.header-right {
  padding-left: 32px;
	padding-top: 35px;
  z-index: 1;
}
.header-left {
  background-color: #ecebf0; 
  padding: 40px 30px;
  border-radius: 37px;
  height: 805px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.experience-card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  padding: 1.5rem;
  margin-right: .25rem;
  margin-left: .25rem;

  flex: 1;
  border-radius: 18px;
  background: var(--text-white);
  box-shadow: 0px 4px 13px 0px #21212117;
}
.experience-section .experience-card {
  background: #ECEBF0;
  max-width: 200px;
  padding: 1rem;
  margin-top: 1.5rem;
}
.experience-card > img {
  position: absolute;
  width: 45px;
  height: 45px;
  top: -22.5px;
  border-radius: 100%;
}
.experience-card p {
  font-weight: 500;
}

.projects-section .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, auto));
  width: 100%;
  grid-gap: 25px;
}
.gallery-item {
  width: 200px;
  height: 280px;
}
.gallery-item > img {
  height: 100%;
  object-fit: cover;
  border-radius: 17px;
}

.header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 3px;
	padding: 0 30px;
}
@media (min-width: 576px) {
    .header-menu {
	    padding: 0 90px;
    }
}

.logo {
  margin-right: 20px;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo svg {
  height: 100%;
  width: 100%;
}
.header-content {
	padding: 50px 0px;
}
.menu-item {
  position: relative;
  flex: 0 0 auto;
}
.dropdown-menu li {
	border-bottom:1px solid #ececec;
}

.dropdown-menu li:last-child {
	border-bottom:none;
}

.dropdown-menu a {
	text-transform: none;
  color: var(--text-black);
  font-weight: 400;
  width: 100%;
  justify-content: center;
  font-size: 1.25rem;
}

.phone {
  padding: 8px 12px;
  font-weight: 700;
  width: max-content;
  color: var(--primary-color);
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	text-align: center;

}
.menu-toggle {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-weight: 700;
  color: var(--text-black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.menu-toggle:hover {
  color: var(--primary-color);
}

.dropdown-menu {
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-top: 8px;
  border: none;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.dropdown-item {
  padding: 10px 15px;
  color: #555;
  font-weight: 500;
  transition: all 0.2s;
  border-radius: 6px;
  margin: 2px 5px;
  width: 100%;
  text-align: left;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
  padding-left: 18px;
}

.header-title {
  font-size: 2.9rem;
  line-height: 1.3;
  margin-bottom: 50px;
}
.head-social-links {
    border-radius: 50px;
	padding: 8px 0px 8px 25px;
    background: #fff;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.head-social-links a, .project-social-links a {
	display: inline;
	margin-right: 15px;
}
.header-title span {
  color: var(--primary-color);
  font-weight: 700;
}

.header-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 70px;
  max-width: 600px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 180px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
}

.btn-orange {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 400;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-orange:hover {
  background-color: #e66a00;
  border-color: #e66a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}
.midi-header-section .header-right {
  border-radius: 37px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  height: 550px;
}
.btn-arrow {
	border: none; 
	border-radius: 50%; 
	width: 48px; 
	height: 48px; 
  font-size: 21px;
	color: var(--primary-color);
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);

  /* fix for safari */
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

/* Mobile Header */
.mobile-header {
  display: none;
  background: white;
  height: 64px;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mobile-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  width: 36px;
  padding: 10px;
}
mobile-logo img {
  height: 100%;
  width: 100%;
}

.mobile-menu-toggle {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #e66a00;
  font-size: 1.5rem;
}

.mobile-menu-toggle:hover {
  color: var(--primary-color);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1001;
  display: none;
  flex-direction: column;
  align-items: left;
  padding-top: 20px;
  padding-left: 15px;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu-item {
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.mobile-menu-item:hover {
  color: var(--primary-color);
}
.mobile-contact-section {
  display: none;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #e66a00;
  font-size: 1.5rem;
  align-self: start;
  margin-bottom: 30px;
}

/* ==================== SYSTEMS SECTION ==================== */
.systems-section {
  padding: 20px 0;
  background-color: white;
}
@media (min-width: 576px) {
    .systems-section {
        padding: 80px 0;
    }
}

.systems-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.systems-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-black);
  font-family: Bounded;
  font-weight: 400;
}

.systems-title span {
  color: var(--primary-color);
  font-weight: 700;
}

.systems-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin-bottom: 40px;
}

.systems-image {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s;
}

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

.systems-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.systems-card {
  background: var(--text-black);
  border-radius: 37px;
  padding: 15px;
  color: white;
  display: flex;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.systems-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.systems-card-icon {
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.systems-card-icon img {
  height: 100%;
  width: 139px;
  /* height: 166px; */
  object-fit: cover;
  border-radius: 32px;
}

.systems-card-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.systems-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.systems-card-content h3 {
  font-size: 1.75rem;
  /* margin-bottom: 27px; */
  color: var(--text-white);
}

.systems-card-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #F2EFEA;
  margin-bottom: 0;
}

/* ==================== PROJECTS SLIDER ==================== */
.projects-section {
  padding: 20px 0;
  background-color: white;
  position: relative;
}
@media (min-width: 576px) {
    .projects-section {
        padding: 80px 0;
    }
}


.projects-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--text-black);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.projects-title span {
  color: var(--primary-color);
  font-weight: 700;
  margin-left: 5px;
}

.sliders-container {
  position: relative;
  height: 1250px;
}

.large-slider {
  height: 680px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  width: 100%;
  position: relative;
}

.large-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.large-slider:hover img {
  transform: scale(1.05);
}

.small-slider {
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.small-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.small-slider:hover img {
  transform: scale(1.03);
}

.slider-controls {
  position: absolute;
  bottom: 570px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 50px;
  z-index: 10;
}

.slider-btn-details {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
  width: 220px;
  text-align: center;
}

.slider-btn-details:hover {
  background-color: #e66a00;
  border-color: #e66a00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
}

.slider-arrows {
  display: flex;
  gap: 15px;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--text-black);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

/* ==================== CONSULTATION SECTION ==================== */
.consultation-section {
  padding: 50px 0;
  background-color: white;
}

.consultation-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom:40px;
}

.consultation-text {
  flex: 1;
}

.consultation-title {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--text-black);
}

.consultation-description {
  font-size: 1.2rem;
  color: var(--text-black);
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: justify;
}

.consultation-form {
  flex: 1;
}

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

.form-control {
  width: 100%;
  height: 60px;

  padding: 30px 15px;
  font-size: 1.1rem;
  transition: all 0.3s;

  border-radius: 35px;
  border: 1px solid #212121;
  box-shadow: 0px 4px 8.8px 1px #21212133 inset;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0px 4px 8.8px 1px rgba(255, 122, 0, 0.25) inset;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.form-check-input {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #ddd;
  margin-right: 12px;
  transition: all 0.3s;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
  cursor: pointer;
}

.btn-submit {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 18px 35px;
  border-radius: 10px;
  font-size: 1.2rem;
  width: 100%;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.btn-submit:hover {
  background-color: #e66a00;
  border-color: #e66a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.5);
}

.btn-submit::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: white;
}

/* ==================== CONTACTS & FOOTER ==================== */
.mobile-footer {
	display:none;
}
.contact-section {
  background-color: #000;
  color: var(--text-white);
  padding: 80px 0 30px;
}

.contact-section .section-title {
	color: var(--primary-color);
}


.contact-container {
  display: flex;
  gap: 50px;
}

.contact-map {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  height: 740px;
  background: #e0e0e0;
  position: relative;
}

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

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.contact-section-title i {
  margin-right: 12px;
  font-size: 1.4rem;
}

.contact-item {
  margin-top: 25px;
}

.contact-item h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.contact-item p {
  font-size: 1.1rem;
  color: var(--text-white);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.contact-item p i {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 1.2rem;
  min-width: 24px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.footer {
  background-color: #0a0a0a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1 0 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.footer-logo .brand {
  font-size: 15px;
  color: var(--text-white);
  font-family: Bounded;
  font-weight: 900;
  margin-bottom: 0px;
}

.footer-logo .social-links-small {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.footer-logo .social-links-small img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.footer-menu {
  flex: 1 0 250px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-menu-column {
  flex: 1 0 150px;
}

.footer-menu-column h5 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.footer-menu-column ul li {
  margin-bottom: 10px;
}

.footer-menu-column ul li a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-block;
}

.footer-menu-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* ==================== APARTMENTS SECTION ==================== */
.apartments-section {
  padding: 20px 0;
  background-color: white;
}
@media (min-width: 576px) {
    .apartments-section {
        padding: 80px 0;
    }
}

.apartments-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.apartments-section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--text-black);
  margin: 0;
}

.apartments-section-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0;
  text-align: right;
}

.apartments-container {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.apartment-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  flex: 1 0 300px;
  min-width: 280px;
}

.apartment-card:hover {
  transform: translateY(-10px);
}

.apartment-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: transform 0.5s;
}

.apartment-card:hover .apartment-image {
  transform: scale(1.05);
}

.apartment-caption {
  background: white;
  padding: 20px;
  border-radius: 0 0 16px 16px;
  font-size: 1.1rem;
  color: var(--text-black);
  font-weight: 500;
}

.apartment-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #333;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
  border: none;
}

.control-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.apartments-btn-details {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
  width: 100%;
  max-width: 220px;
  text-align: center;
}

.apartments-btn-details:hover {
  background-color: #e66a00;
  border-color: #e66a00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
}

/* ==================== MOBILE VERSIONS ==================== */
@media (max-width: 991px) {
  /* Header Mobile */
  .stats-container {
    display: none;
  }
  
  .header-left {
    height: 100%;
  }
	.img-line {
		display:none;
	}
  .header-right {
    display: none;
  }
  
  .header-section {
    padding: 15px 0;
  }
  
  .header-left, .header-right {
    padding: 20px 15px;
  }
  
  .header-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .header-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .stat-card {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .btn-orange {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  
  .mobile-header {
    display: block;
  }
  
  /* .header-menu {
    display: none;
  } */
  
  .mobile-menu-item {
    position: relative;
    width: 100%;
    max-width: 300px;
  }
  .mobile-menu-submenu {
   list-style: none;
   margin: 0;
   padding: 0;
   padding-left: 10px;
   margin-bottom: 10px;
  }
  .mobile-header-phone {
    color: #e66a00;
    font-weight: 600;
    margin-top: 15px;
  }

  .mobile-header-social-links {
    margin-top: 15px;
  }
  .mobile-header-social-links a {
    margin-left: 10px;
  }
  .mobile-menu-submenu a {
   text-decoration: none;
   color: #333;
  }

  .header-left, .header-right {
    margin-bottom: 20px;
  }
  
  .header-left {
    padding: 25px 15px;
  }
  
  .header-right {
    height: auto;
    min-height: 300px;
  }
  
  .banner-img {
    height: 250px;
    object-fit: cover;
  }
  
  /* Systems Mobile */
  .systems-content {
    flex-direction: column;
  }

  .systems-cards {
    align-items: center;
  }
  
  .systems-card {
    align-items: center;
    padding: 5px;
  }
  
  /* Projects Mobile */
  .sliders-container {
    height: 980px;
  }
  
  .large-slider {
    height: 680px;
  }
  
  .small-slider {
    height: 280px;
  }
  
  .slider-controls {
    bottom: 300px;
  }
  
  .slider-btn-details {
    width: 180px;
    padding: 14px 30px;
    font-size: 1rem;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  /* Consultation Mobile */
  .consultation-container {
    flex-direction: column;
    text-align: center;
  }
  
  .consultation-text, .consultation-form {
    flex: none;
    width: 100%;
  }
  
  .consultation-title {
    font-size: 2rem;
  }
  
  .consultation-description {
    font-size: 1rem;
  }
  
  .consultation-form {
    padding: 30px 25px;
  }
  
  /* Contacts Mobile */
  .contact-container {
    flex-direction: column;
  }
  
  .contact-map {
    height: 300px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-menu {
    gap: 25px;
  }
  
  /* Apartments Mobile */
  .apartments-container {
    gap: 25px;
  }
  
  .apartment-card {
    flex: 1 0 250px;
  }
  
  .apartment-image {
    height: 300px;
  }
  
  .apartments-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .apartments-section-subtitle {
    text-align: left;
    max-width: 100%;
  }
  
  /* Mobile Sections Hidden */
  .mobile-contact-section,
  .mobile-footer {
    display: none;
  }
}

@media (max-width: 767px) {
  /* Apartments Mobile */
  .apartments-container {
    gap: 20px;
  }
  
  .apartment-card {
    flex: 1 0 100%;
  }
  
  .apartment-image {
    height: 250px;
  }
  
  .apartments-section-title {
    font-size: 2rem;
  }
  
  .apartments-section-subtitle {
    font-size: 1.1rem;
  }
  
  .apartments-btn-details {
    padding: 16px 35px;
    font-size: 1.1rem;
  }
  
  /* Projects Mobile */
  .sliders-container {
    height: 830px;
  }
  
  .small-slider {
    height: 130px;
  }
  
  .slider-controls {
    bottom: 150px;
  }
  
  .slider-btn-details {
    width: 160px;
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  /* Header Mobile */
  .header-title {
    margin-top: 15px;
    font-size: 1.6rem;
  }
  
  .header-description {
    font-size: 0.9rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
 
  .mobile-menu-item {
    font-size: 1rem;
  }
  
  .header-left {
    padding: 20px 10px;
  }
	.banners {
	display: none;
	}
  /* Systems Mobile */
  .systems-title {
    font-size: 2rem;
  }
  
  .systems-description {
    font-size: 1rem;
  }
  
  .systems-card {
    display: flex;
    padding: 15px 15px;
  }
  
  .systems-card-icon i {
    font-size: 1.7rem;
  }
  
  /* Projects Mobile */
  .projects-title {
    font-size: 1.5rem;
  }
  
  .sliders-container {
    height: 730px;
  }
  
  .small-slider {
    height: 30px;
    border-radius: 10px;
  }
  
  .slider-controls {
    bottom: 50px;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
  
  .slider-btn-details {
    width: 100%;
    max-width: 200px;
  }
  
  .slider-arrows {
    width: 100%;
    justify-content: center;
  }
  
  /* Consultation Mobile */
  .consultation-title {
    font-size: 1.7rem;
  }
  
  .consultation-description {
    font-size: 0.95rem;
  }
  
  .form-control {
    height: 55px;
    font-size: 1rem;
  }
  
  .btn-submit {
    font-size: 1.1rem;
    padding: 16px;
  }
  
  .form-check {
    justify-content: center;
  }
  
  /* Contacts Mobile */
  .contact-map {
    height: 250px;
  }
  
  .contact-section-title {
    font-size: 1.5rem;
  }
  
  .contact-item h4 {
    font-size: 1.2rem;
  }
  
  .contact-item p {
    font-size: 1rem;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .footer-logo {
    margin-bottom: 30px;
  }
  
  .social {
    margin: 0 auto;
    margin-bottom: 15px;
  }
  
  /* Desktop Hidden, Mobile Shown */
  .contact-section,
  .footer {
    display: none;
  }
  
  .mobile-contact-section,
  .mobile-footer {
    display: block;
  }
  
  /* Mobile Contact Section */
  .mobile-contact-section {
	display: block;
    background-color: #000;
    color: var(--text-white);
    padding: 40px 20px 0;
  }
  
  .mobile-contact-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .mobile-contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    height: 250px;
    background: #e0e0e0;
  }
  
  .mobile-contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .mobile-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    align-items: center;
    text-align: center;
  }
  
  .mobile-contact-item {
    margin-bottom: 20px;

  }
  
  .mobile-contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
    align-items: center;
  }
  
  .mobile-contact-item p {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.6;
	text-align: center;
	margin-left: 20px;
  }
  
  .mobile-contact-item p i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    min-width: 20px;
  }
  
  .mobile-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .mobile-social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  /* Mobile Footer */
  .mobile-footer {
    background-color: #0a0a0a;
    padding: 40px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .mobile-footer-item {
    margin-bottom: 30px;
  }
  
  .mobile-footer-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .mobile-footer-item h4 i {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .mobile-footer-item p {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.6;
  }
  
  .mobile-footer-item p i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1rem;
  }
  
  .mobile-social-links-footer {
    display: flex;
    gap: 15px;
    margin: 20px 0;
  }
  
  .mobile-social-links-footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .mobile-logo {
    text-align: center;
    margin: 0 auto;
	 margin-bottom: 30px;
  }

  .mobile-logo p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
  }
  
  .mobile-footer .brand {
    font-size: 15px;
    color: var(--text-white);
    font-family: Bounded;
    font-weight: 900;
    margin-bottom: 0px;
  }

  .mobile-footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .mobile-footer-menu a {
    color: var(--text-white);
    text-decoration: none;
    text-align: center;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .mobile-footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 5px;
  }
  
  .mobile-footer-menu a:last-child {
    border-bottom: none;
  }
  
  .mobile-footer-contact {
    padding: 20px;
    margin-top: 30px;
  }
  
  .mobile-footer-contact h4 {
    font-size: 1.3rem;
	  text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .mobile-footer-contact h4 i {
    margin-right: 10px;
    font-size: 1.1rem;
  }
  
  .mobile-footer-contact p {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .mobile-footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1rem;
  }
  
  /* Apartments Mobile */
  .apartment-image {
    height: 220px;
  }
  
  .apartments-section-title {
    font-size: 1.8rem;
  }
  
    
  .apartments-section-title span {
    color: #e66a00;
  }
  
  .apartments-section-subtitle {
    display: none;
    font-size: 1rem;
  }
  
  .apartments-btn-details {
    max-width: 100%;
    width: 100%;
  }
}


.calculator-container {
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

/* Заголовок */
.calculator-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}

/* Табы */
.tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
}

.tab-btn {
  padding: 12px 30px;
  background: #f5f5f5;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #e8e8e8;
}

.tab-btn.active {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Сетка калькулятора */
.calculator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Секции калькулятора */
.calculator-section {
  background: var(--text-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  display: inline-block;
}

/* Группы ввода */
.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-control input {
  width: 80px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.quantity-control input:focus {
  border-color: var(--primary-color);
}

.input-group span {
  font-size: 14px;
  color: #888;
}

/* Радиогруппы */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

/* Результат */
.result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: #ECEBF0;
  border-radius: 37px;
}

.sub-result {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

  background: #ECEBF0;
  border-radius: 37px;
  padding-bottom: 35px;
  padding: 35px;
}

.result p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
  text-align: center;
}
.result strong {
  font-size: 71px;
  font-weight: 500;
  color: var(--primary-color);
  white-space: nowrap;
}
.result small {
  font-size: 12px;
  color: var(--text-gray);
}

.cost-value {
  font-size: 32px;
  font-weight: 700;
}

/* Дополнительные опции */
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.option-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.option-item img {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  padding: 15px;
  object-fit: contain;
}

.option-item label {
  font-size: 12px;
  color: #555;
  text-align: center;
  line-height: 1.4;
}

.option-item input {
  width: 60px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  outline: none;
}

.option-item input:focus {
  border-color: var(--primary-color);
}

/* Форма заявки */
.contact-form {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
  border-radius: 15px;
  color: #fff;
}

.form-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.form-fields input {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 0.3s ease;
}

.form-fields input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-fields input:focus {
  background: rgba(255, 255, 255, 0.25);
}

.submit-btn {
  background: #fff;
  color: var(--primary-color);
  font-weight: 600;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #fff;
}

.checkbox label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

/* Итоговая стоимость */
.form-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.total-cost {
  text-align: center;
}

.total-cost span:first-child {
  display: block;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.total-value {
  font-size: 48px;
  font-weight: 700;
  display: block;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .calculator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-left {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .calculator-container {
    padding: 20px;
  }
  
  .calculator-title {
    font-size: 22px;
  }
  
  .tabs {
    flex-wrap: wrap;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .total-value {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-btn {
    width: 100%;
    max-width: 300px;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .total-value {
    font-size: 28px;
  }
}

.quantity-counter {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #333;
  border-radius: 50px!important;
  width: 126px;
  height: 26px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.counter-btn {
  background: var(--primary-color);
  border-radius: 50%;
  border: none;
  color: white;
  width: 22px;
  height: 22px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  margin: 2px;
}

.counter-btn:hover {
  background: #e65a2a;
}

.counter-value {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  width: 82px;
  text-align: center;
  user-select: none;
  
}



 .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    /* Основной контейнер для блоков */
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 30px;
		margin-bottom: 60px;
    }
    
    /* Общий стиль для всех блоков */
    .timeline-item {
      background: #222;
      color: #fff;
      padding: 40px 90px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    /* Стили для заголовка */
    .timeline-item h3 {
      font-size: 35px;
	  font-weight: 900;
      margin-bottom: 25px;
      color: #fff;
      padding-bottom: 15px;
      position: relative;
    }
    
    /* Стили для текста */
    .timeline-item p {
      font-size: 18px;
      line-height: 1.8;
      color: #fff;
	  width:65%;	
      margin-bottom: 15px;
    }
    
    /* Последний блок всегда оранжевый */
    .timeline-item:last-child {
      background: var(--primary-color);
      color: #fff;

    }
    
   
    .timeline-item:last-child::before {
      background: #333;
    }
    
    .timeline-item:last-child h3::after {
      background: #333;
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
      .timeline-item {
        padding: 30px 25px;
      }
      
      .timeline-item h3 {
        font-size: 24px;
      }
      
      .timeline-item p {
        font-size: 16px;
		width: 100%;
      }
    }
    
    @media (max-width: 480px) {
      .timeline-item {
        padding: 25px 20px;
      }
      
      .timeline-item h3 {
        font-size: 20px;
      }
      
      .timeline-item p {
		width: 100%;
        font-size: 15px;
      }
    }

/* Секция с заголовком */
    .team-header {
      text-align: center;
      margin-bottom: 60px;
      padding: 0 20px;
    }
    
    .section-title {
      font-size: 36px;
      font-weight: 700;
      color: #333;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    
    .section-description {
      font-size: 18px;
      color: #666;
      max-width: 800px;
      margin: 20px auto 0;
      line-height: 1.8;
    }
    
        /* Сетка сотрудников */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }
    
    .team-member {
      display: flex;
      align-items: center;
      border-radius: 15px;
      padding: 25px;
      transition: transform 0.3s ease;
    }
    
    .team-member:hover {
      transform: translateY(-5px);
    }
    
    .member-avatar {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid #fff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      margin-right: 25px;
      flex-shrink: 0;
    }
    
    .member-info {
      text-align: left;
		margin-left: 12px;
    }
    
    .member-name {
      font-size: 24px;
      font-weight: 700;
      color: #333;
      margin-bottom: 8px;
      line-height: 1.2;
    }
    
    .member-position {
      font-size: 18px;
      color: #666;
      font-weight: 500;
      line-height: 1.5;
    }
    
    /* Адаптивность */
    @media (max-width: 992px) {
      .team-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .team-member {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }
      
      .member-avatar {
        margin-right: 0;
        margin-bottom: 20px;
      }
      
      .member-info {
        text-align: center;
      }
      
      .section-title {
        font-size: 28px;
      }
      
      .section-description {
        font-size: 16px;
      }
    }
    
    @media (max-width: 480px) {
      .member-avatar {
        width: 140px;
        height: 140px;
      }
      
      .member-name {
        font-size: 22px;
      }
      
      .member-position {
        font-size: 16px;
      }
    }
   /* Блок с логотипом и слоганом */
    .sankom-brand {
      display: block;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
	  margin-bottom: 20px;
    }
    
    .sankom-logo {
      font-size: 35px;
      font-weight: 900;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 30px;
      line-height: 1;
	  text-align:center;
    }
    
    
    .sankom-slogan {
      font-size: 20px;
      color: #666;
      line-height: 1.6;
      font-weight: 500;
	  text-align:center;		
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
      .sankom-brand {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }
      
      .sankom-divider {
        display: none;
      }
      
      .sankom-logo {
        font-size: 42px;
        margin: 0;
      }
      
      .sankom-slogan {
        font-size: 18px;
      }
    }
    
    @media (max-width: 480px) {
      .sankom-logo {
        font-size: 36px;
      }
      
      .sankom-slogan {
        font-size: 16px;
      }
    }

 /* Сетка вакансий */
    .jobs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }
    
    .job-card {
      padding: 30px;
      text-align: center;
    }
    
    .job-card:hover {
      transform: translateY(-5px);
    }
    
    .job-icon {
      width: 170px;
      height: 200px;
      margin: 0 auto 25px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    
    .job-icon svg {
      width: 50px;
      height: 50px;
      fill: #333;
    }
    
    .job-icon.orange {
      background: var(--primary-color);
    }
    
    .job-icon.orange svg {
      fill: #fff;
    }
    
    .job-title {
      font-size: 20px;
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
    }
    
    .job-description {
      font-size: 16px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 25px;
    }
    
    .job-button {
      border: none;

      border-radius: 41px;
      width: 155px;
      height: 40px;
      background: #F67011;

      color: white;
      display: flex;
      justify-content: center;
      align-items: center;

      font-size: 16px;
      font-weight: 600;

      cursor: pointer;
      transition: all 0.3s;
      text-transform: uppercase;
    }
    
    .job-button:hover {
      background: #e66a00;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
    }
    
    /* Модальное окно */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.3s;
    }
    
    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }
    
    .resume-form {
      background: white;
      width: 100%;
      max-width: 600px;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
      position: relative;
      transform: translateY(20px);
      transition: transform 0.3s;
    }
    
    .modal-overlay.active .resume-form {
      transform: translateY(0);
    }
    
    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      font-size: 32px;
      color: #999;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      transition: all 0.3s;
    }
    
    .modal-close:hover {
      color: var(--primary-color);
      background: rgba(255, 122, 0, 0.1);
      transform: rotate(90deg);
    }
    
    .form-title {
      font-size: 28px;
      font-weight: 700;
      color: #333;
      margin-bottom: 30px;
      text-align: center;
    }
    
    .form-group {
      margin-bottom: 25px;
    }
    
    .form-group label {
      display: block;
      font-size: 16px;
      color: #666;
      margin-bottom: 10px;
      font-weight: 500;
    }
    
    .form-control:focus {
      border-bottom: 1px solid var(--primary-color);
    }
    
    .form-control::placeholder {
      color: #999;
      font-size: 16px;
    }
    
    .form-note {
      font-size: 13px;
      color: #999;
      text-align: center;
      margin-top: 20px;
      line-height: 1.5;
    }
    
    .btn-submit {
      width: 100%;
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 16px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .btn-submit:hover {
      background: var(--primary-color);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
    }
    
    /* Адаптивность */
    @media (max-width: 992px) {
      .jobs-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }
    
    @media (max-width: 768px) {
      .jobs-grid {
        grid-template-columns: 1fr;
      }
      
      .section-title {
        font-size: 28px;
      }
    }
    
    @media (max-width: 576px) {
      .resume-form {
        padding: 30px 25px;
      }
      
      .form-title {
        font-size: 24px;
      }
      
      .form-control {
        font-size: 15px;
      }
      
      .btn-submit {
        font-size: 16px;
        padding: 14px;
      }
      
      .modal-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
      }
    }

.flat-card {
  border-radius: 40px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 991.98px) {
  .flat-card {
    width: fit-content;
  }
}

#projectsCarousel {
  max-height: 720px;
}
#projectsCarousel .flat-image img {
  max-height: 700px;
}
#homesCarousel .flat-image img {
  object-fit: cover;
  display: block;
  width: 100%;
}
.flat-image {
  display: block;
}
.flat-image img {
  /* height: 550px; */
  object-fit: cover;
  /* object-fit: contain; */
  display: block;
  width: 100%;
}

.flat-caption {
 	/* position: relative; */
  position: absolute;
	left: 10px;
	/* bottom: 160px; */
	bottom: 2rem;
	z-index: 99999;
}

.carousel-nav {
  margin-top: 1.5rem;
  width: 100%;
}
.carousel-nav .action {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.carousel-nav .action button:nth-child(1) {
  margin-right: 15px;
}


.carousel-item .row {
  flex-wrap: nowrap;
}
.carousel-item .row>* {
  flex-shrink: 1;
}

.flat-caption h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 10px 0;
  line-height: 1.3;
  color: #fff;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 107, 0, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-left: 2px solid white;
}

.carousel-control-prev-icon::before {
  transform: rotate(-45deg);
  margin-left: 3px;
}

.carousel-control-next-icon::before {
  transform: rotate(135deg);
  margin-right: 3px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #FF6B00;
  opacity: 0.5;
  transition: all 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

/* Адаптивность */
@media (max-width: 992px) {
  .flat-image img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .flat-image img {
    height: 300px;
  }
  
  .flat-caption h3 {
    font-size: 16px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
}

@media (max-width: 576px) {
  .flat-image img {
    height: 280px;
  }
}
    
    .contact-header {
      font-size: 24px;
      font-weight: 700;
      line-height: 1.3;
      color: var(--text-color);
    }
    
    .contacts-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
		align-items:center;
    }
    
    .phone-input-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .phone-input {
      width: 100%;
      padding: 16px 20px;
      border: 1px solid #333;
		background: #ecebf0;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-color);
      transition: border-color 0.3s;
    }
    
    .phone-input:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
    }
    
    .phone-input::placeholder {
      color: #999;
      font-weight: 400;
    }
    
    .privacy-checkbox {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--checkbox-color);
    }
    
    .privacy-checkbox input {
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: var(--primary-color);
    }
    
    .submit-btn {
      background-color: var(--primary-color);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 16px 24px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.3s;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      text-align: center;
      width: 220px;
      margin: 0 auto;
    }
    
    .submit-btn:hover {
      background-color: var(--primary-color);
    }
    
    .submit-btn:active {
      transform: scale(0.98);
    }
    
    .submit-btn i {
      font-size: 18px;
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
      .contact-block {
        padding: 25px;
      }
      
      .contact-header {
        font-size: 20px;
      }
      
      .submit-btn {
        width: 100%;
      }
    }
    
    @media (max-width: 48px) {
      .contact-block {
        padding: 20px;
      }
      
      .contact-header {
        font-size: 18px;
        line-height: 1.4;
      }
      
      .phone-input {
        padding: 14px 16px;
      }
    }	
.tabs-portfolio button {
	text-transform: uppercase;
	color: #333;
	font-weight: 600;
	border-bottom: 3px solid #333;
	padding: 0px 30px;
}

.tabs-portfolio button.active {
	color: var(--primary-color);
	border-bottom: 3px solid var(--primary-color);
	
}

.tabs-portfolio button:hover {
	color:#333;
	border-bottom: 3px solid var(--primary-color);
}

/*---------калькулятор---------*/
.calc {
  font-weight: 500;
  font-style: medium;
  font-size: 18px;
}

.calc .opt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.calc .calc__description {
  font-size: 20px;
  font-weight: 400;
  font-style: regular;
  color: #212121;
}

.calc h5 {
  font-weight: 800;
  font-style: Black;
  font-size: 25px;
  color: var(--primary-color);
  text-align: center;

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

.calc__tabs {
    display: flex;
    justify-content: space-around;
    min-height: 70px;

    background: #fff;
    border-radius: 36px;
}

.calc__tab {
  border: none;
  background: none;
  font-weight: 400;
  font-size: 18px;
  font-style: regular;
  line-height: 1;
  cursor: pointer;
	text-align: center;
  color: var(--primary-color);
  flex: 1;
  text-transform: uppercase;

  transition: all 0.3s;
}
.calc__tab:hover {
  font-size: 19px;
  font-weight: 700;
  font-style: bold;
}
@media (max-width: 767px) {
  .calc__tab {
    font-size: 12px;
  }
  .calc__tab:hover {
    font-size: 13px;
  }
}
.calc__tab:last-child {
    border-right: none; /* Убираем правую границу у последнего */
}
.calc__tab.is-active {
  font-weight: 700;
  font-style: bold;
}

.calc__pane {
    display: none
}
.calc__pane.is-active {
    display: block
}

.calc-divider {
  height: auto;
	border: 1px solid #D9D9D978;
}

.heat._column {
  margin: 10px;
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 37px;
  background:#fff;
  flex:1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heat._row {
  margin: 10px;
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 37px;
  background:#fff;
  flex:1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.water._row {
  margin: 10px;
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 37px;
  background:#fff;
  flex:1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
}

.incdec {
  min-width: 130px;
  max-width: 130px;
  min-height: 26px;
  max-height: 26px;

  border: 1px solid black;
  border-radius: 32px;
  padding: 2px;

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

.incdec button {
  border: none;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  border-radius: 100%;
  background-color: var(--primary-color);
  padding: 0;
}
.incdec input {
  width: 100%;
  border: none;
  text-align: center;
  padding: 0;
  font-size: 16px;
}
.incdec button :before {
  vertical-align: initial;
  color: white;
}
.call__pay {
  text-align: center;
  padding: 0px;
  margin-bottom: 0px;
}
.price {
  text-align: center;
  color: var(--primary-color);
}

.calc__bottom {
  margin: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-around;
  row-gap: 2rem;
}
@media (max-width: 991px) {
  .calc__bottom {
    margin: 0rem;
    margin-top: 2rem;
    margin-bottom: 0rem;
  }
}
.calc__bottom .result {
  flex: 1;
  /* width: 300px; */
  background: #ECEBF0;
  border-radius: 37px;
}
.calc__bottom .calc-form-container {
  flex: 3;
  /* width: 700px; */
  background: #ECEBF0;
  border-radius: 37px;
  z-index: 1;
}
.calc__bottom .form__lead .inputs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, auto));
  width: 100%;
  grid-gap: 10px;
}
.calc__bottom .form__lead .inputs * {
  margin-right: 10px;
  margin-bottom: 10px;
}
.calc__bottom .form__lead .inputs button.send-button {
  /* width: 120px; */
  height: 48px;

  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 32px;
  border: none;

  font-weight: 500;
  font-size: 15px;

  transition: all 0.3s;
  box-shadow: 0px 4px 10px 0px #21212133;

  display: flex;
  justify-content: center;
  align-items: center;
}
.calc__bottom .form__lead .inputs input {
  height: 48px;
  background: transparent;
  border-radius: 35px;
  border: 1px solid #212121;
  padding: 8px;
  /* box-shadow: 0px 4px 8.8px 1px #21212133 inset; */

  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.calc__bottom .form__lead .inputs input::placeholder {
  color: #BDBCBA;
}

.calc__bottom .form__lead .file {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  margin-bottom: 10px;
  column-gap: 50px;
}
.calc__bottom .form__lead .file .last {
  margin-top: 10px;
  color: var(--text-gray);
  font-weight: 400;
  font-size: 12px;
}
.calc__bottom .form__lead .file h4 {
  font-family: Bounded;
  font-weight: 400;
  size: 14px;
  margin-bottom: 0px;
}

.calc__bottom .form__lead .file .file-upload__container {
  display: flex;
  justify-content: center;
  align-items: center;

  border: 1px solid var(--primary-color);
  box-shadow: 0px 4px 10px 0px #21212133;
  border-radius: 32px;
  width: 145px;
  height: 30px;

  transition: all 0.3s;
}
.calc__bottom .form__lead .file .file-upload__container label {
  cursor: pointer;
}
.calc__bottom .form__lead .file .file-upload__container:hover {
  color: var(--text-white);
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}
.calc__bottom .form__lead .file .file-upload__text {
  font-weight: 500;
  size: 15px;
}
.calc__bottom .form__lead .file .file-upload__container input {
  display: none;
}

.calc__bottom .policy {
  font-size: 12px;
  font-weight: 400;

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

.calc__bottom .policy input {
  width: 24px;
  height: 24px;
  background: #F2EFEA;
  border: 0.4px solid #BDBCBA;
  margin-right: 15px;
}

.calc__bottom .policy a {
  color: var(--primary-color);
  text-decoration-color: var(--primary-color);
}

.primary-dot {
  background-color: var(--primary-color);
  min-width: 13px;
  min-height: 13px;
  max-width: 13px;
  max-height: 13px;
  border-radius: 100%;
}
.process-section .process-step {
  flex: 1;
  display: flex;
  position: relative;
}
.process-section .process-border {
  margin-left: 6px;
  margin-top: 6px;
  height: 100%;
  border-right: solid 1px var(--primary-color);
  position: absolute;
  width: 1px;
}
.process-section .primary-dot {
  margin-top: 6px;
}
.process-section .process-content {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 30px;

  font-size: 14px;
  font-weight: 400;
  font-style: Regular;
}
.process-section .process-content h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.carousel .carousel-row {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}

.carousel.grid .carousel-card {
  display: flex;
  flex: 1;
  padding: 30px;
  border-radius: 37px;
  margin: 15px;
}

.carousel.grid .card-image img {
  min-width: 150px;
}
.carousel.grid .card-image {
  flex: 2;

  border-radius: 37px;
  object-fit: cover;
  object-position: center;
  margin-right: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel.grid .card-content {
  flex: 3;

  display: flex;
  flex-direction: column;
}

.carousel.grid .card-content h3 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 20px;
}
.carousel.grid .card-content p {
  font-weight: 400;
  font-size: 14px;
}
.carousel.grid .card-content a {
  width: 180px;
  height: 45px;
  border-radius: 37px;
  background-color: var(--primary-color);

  color: var(--text-white);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  align-content: center;
  text-decoration: none;
}

.carousel.videos .carousel-card {
  flex: 1;
  border-radius: 37px;
  padding: 15px;
  max-width: 100%;

  object-fit: cover;
  object-position: center;

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

.carousel.videos .carousel-card iframe {
  width: 500px;
  height: 250px;
  border-radius: 37px;
}

.article-section .article-image {
  width: 100%;
  height: 600px;
  display: flex;
  margin-bottom: 50px;
}
.article-section .article-image img {
  flex: 1;

  object-fit: cover;
  object-position: center;
  height: 100%;
  
  border-radius: 37px;
}
.article-section h2 {
  margin-bottom: 30px;
}
.article-section p.date {
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 40px;
}
.article-section p.article {
  white-space: pre-wrap;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 40px;
}
.article-section p.tags {
  font-weight: 600;
  font-size: 22px;
}


#myTabContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#myTabContent > div {
  width: 100%;
}
#myTabContent .tabs-row {
  display: flex;
  flex: 1;
}
#myTabContent .tabs-row > * {
  height: 400px;
  margin: 25px;
  flex: 1;
  color: var(--text-white);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;

  text-decoration: none;
  pointer-events: all;
}
#myTabContent .tabs-row > * img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  position: absolute;
}
#myTabContent .tabs-row .tab-info {
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: start;
  justify-content: end;

  opacity: 0;
  transition: all 0.3s;
  text-transform: uppercase;
}
#myTabContent .tabs-row .tab-info:hover {
  opacity: 1;
  background-color: #21212199;
}
#myTabContent .tabs-row .tab-info h4 {
  font-weight: 600;
  font-size: 16px;
}








/* Примеры проектов */
.example-projects {
  margin-top: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.example-projects .title {
  font-family: Bounded;
  font-size: 30px;
  margin-bottom: 18px;
}
.example-projects .desc {
  font-size: 20px;
  margin-bottom: 50px;
  color: var(--text-gray);
}

.example-projects .houses {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 50px;
}

.example-projects .houses button {
  min-width: 130px;
  min-height: 80px;
  max-width: 130px;
  max-height: 80px;
  background: #ECEBF0;
  color: var(--primary-color);
  font-size: 125%;
  border: none;
  border-radius: 13px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;

  transition: all 0.1s ease-out;
}
.example-projects .houses button:hover {
  background: linear-gradient(180deg, #F67011 0%, rgba(246, 112, 17, 0.6) 100%);
  color: var(--text-white);
  opacity: 0.7;
}
.example-projects .houses button.active {
  background: linear-gradient(180deg, #F67011 0%, rgba(246, 112, 17, 0.6) 100%);
  color: var(--text-white);
}





.example-projects .gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  background: #ECEBF0;
  border-radius: 37px;
  padding: 70px;
}
.example-projects .tabs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  width: 100%;
  margin-bottom: 35px;
}

.example-projects .tabs button {
  padding: 15px;

  border: 2px solid #DCDDE5;
  color: var(--text-black);
  border-radius: 13px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: all 0.1s ease-out;
}
.example-projects .tabs button:hover {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  opacity: 0.7;
}
.example-projects .tabs button.active {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.example-projects .tab {
  display: none;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  height: 750px;
  overflow-x: hidden;
  overflow-y: auto;
}
.example-projects .tab.active {
  display: flex;
}

.example-projects .item-row {
  flex: 1;
  
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}
.example-projects .tab img {
  flex: 1;
  width: 20%;
  max-height: 350px;
  object-fit: cover;
  object-position: center;
  margin: 15px;
}

.example-projects *::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #5C5C5C;
}

/* Track */
.example-projects *::-webkit-scrollbar-track {
  width: 3px;
  height: 3px;
  background-color: #5C5C5C;
}

/* Handle */
.example-projects *::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background-color: var(--primary-color);
}
.example-projects *::-webkit-scrollbar-thumb:window-inactive {
  width: 3px;
  height: 3px;
  background-color: var(--primary-color);
}

.large-text-caption {
  color: #CDCDCD;
  filter: blur(4px);
  font-size: max(min(13vw, 180px), 70px);
  font-weight: 600;
  position: absolute;
  z-index: -1;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .large-text-caption {
    filter: blur(8px);
  }
}

.carousel-item a.flat-card {
  transition: all 0.3s;
}
.carousel-item a.flat-card:hover {
  transform: scale(0.98);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}