/* Import header styles */
@import url('header.css');
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}
/* Main Content */
.main-content {
  margin-left: 230px;
  /* padding: 20px; */
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}
/* Адаптивність */
@media (max-width: 1200px) {
  .main-content {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .main-content {
    padding: 15px;
  }
}
/* Контейнер для сторінок */
.page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 1200px) {
  .page-container {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .page-container {
    padding: 10px;
  }
}
/* Banner Section */
.banner {
  position: relative;
  height: 50vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
  overflow: hidden;
}
.banner-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.7));
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.banner-text {
  margin-bottom: 20px;
}
.banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}
.banner h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.banner p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.banner-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.9s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.banner-buttons .btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #3498db;
  color: white;
  border: 2px solid #3498db;
}
.btn-primary:hover {
  background: #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-secondary:hover {
  background: white;
  color: #3498db;
  transform: translateY(-2px);
}
.banner-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  animation: fadeInUp 1s ease 1.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.feature-item i {
  font-size: 1.2rem;
  color: #3498db;
}
/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .banner {
    height: auto;
    min-height: 50vh;
    padding: 60px 20px;
  }
  .banner h1 {
    font-size: 1.8rem;
  }
  .banner h2 {
    font-size: 1.2rem;
  }
  .banner p {
    font-size: 0.9rem;
  }
  .banner-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .banner-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .banner-features {
    flex-direction: column;
    gap: 15px;
  }
  .feature-item {
    justify-content: center;
  }
}
/* Services Section */
.services {
  padding: 60px 0;
  background: white;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  font-size: 2.2em;
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 30px; */
  /* max-width: 1400px; */
  width: 100%;
  margin: 0 auto;
  /* padding: 0 20px; */
}
.service-card {
  position: relative;
  height: 400px;
  /* border-radius: 15px; */
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}
.service-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img {
  transform: scale(1.1);
}
.service-card-content {
  position: absolute;
  top: 0;
  left: 0;
  /* transform: translate(-50%, -50%); */
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  background: linear-gradient(to bottom, rgba(6, 27, 66, 0.2), rgba(6, 7, 15, 0.7));
  padding: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-card-content {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}
.service-card h3 {
  color: rgb(189, 189, 189);
  font-size: 1.4em;
  font-weight: 100;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 10px 10px 10px rgba(5, 0, 0, 5);
  transition: transform 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}
.service-card:hover h3 {
  transform: scale(1.1);
}
.service-card::before {
  display: none;
}
.service-card:hover::before {
  display: none;
}
.service-card p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}
.service-card .btn-learn-more {
  display: inline-block;
  padding: 10px 25px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
  border: 2px solid #3498db;
}
.service-card:hover .btn-learn-more {
  background: transparent;
  color: #3498db;
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: 300px;
  }
  .service-card h3 {
    font-size: 1.5em;
  }
}
/* About Section */
.about {
  background: white;
  padding: 60px 0;
  margin: 40px 0;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-text h2 {
  color: #2c3e50;
  margin-bottom: 20px;
}
.about-text ul {
  list-style: none;
  margin-top: 20px;
}
.about-text ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.about-text ul li:before {
  content: "✓";
  color: #3498db;
  position: absolute;
  left: 0;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
/* Gallery Section */
.gallery {
  padding: 40px 0;
  background: #f8f9fa;
}
.gallery .container {
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 20px;
  /* width: 100%; */
  max-width: 100%;
}
.gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  font-size: 2.2em;
  position: relative;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 20px;
  border: 2px solid #3498db;
  background: transparent;
  color: #3498db;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: #3498db;
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  transform: scale(1);
}
.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(52, 152, 219, 0.9), rgba(44, 62, 80, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;
  color: white;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 600;
}
.gallery-item-overlay p {
  font-size: 1.1em;
  margin: 5px 0;
  opacity: 0.9;
}
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-filters {
    gap: 10px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.9em;
  }
}
/* Pricing Sections */
.pricing,
.design-pricing {
  padding: 60px 0;
  background: #f8f9fa;
}
.pricing h2,
.design-pricing h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}
.pricing-grid,
.design-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.price-card,
.design-price-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-card.featured,
.design-price-card.featured {
  transform: scale(1.05);
  border: 2px solid #3498db;
}
.price-card:hover,
.design-price-card:hover {
  transform: translateY(-5px);
}
.price-card h3,
.design-price-card h3 {
  color: #2c3e50;
  margin-bottom: 20px;
}
.price {
  font-size: 2em;
  color: #3498db;
  margin-bottom: 20px;
}
.price-card ul,
.design-price-card ul {
  list-style: none;
  margin-bottom: 30px;
}
.price-card ul li,
.design-price-card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.price-card ul li:before,
.design-price-card ul li:before {
  content: "✓";
  color: #3498db;
  position: absolute;
  left: 0;
}
.pricing-note {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 40px;
  padding: 20px;
}
.pricing-note p {
  font-size: 0.9em;
  line-height: 1.4;
}
.price-card .btn,
.design-price-card .btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 30px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #3498db;
}
.price-card .btn:hover,
.design-price-card .btn:hover {
  background: transparent;
  color: #3498db;
  transform: translateY(-3px);
}
/* Construction Prices Section */
.construction-prices {
  padding: 60px 0;
  background: #f8f9fa;
}
.construction-prices h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}
.construction-prices-accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.price-accordion-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.price-accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}
.price-accordion-header h3 {
  color: #2c3e50;
  margin: 0;
  font-size: 1.2em;
}
.price-accordion-header i {
  color: #3498db;
  transition: transform 0.3s ease;
}
.price-accordion-item.active .price-accordion-header i {
  transform: rotate(180deg);
}
.price-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.price-accordion-item.active .price-accordion-content {
  max-height: 1000px;
  padding: 20px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.price-table th,
.price-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.price-table th {
  background: #f8f9fa;
  color: #2c3e50;
  font-weight: 600;
}
.price-table tr:hover {
  background: #f8f9fa;
}
.price-table td:last-child {
  color: #3498db;
  font-weight: 600;
}
@media (max-width: 768px) {
  .price-table {
    display: block;
    overflow-x: auto;
  }
  .price-accordion-header h3 {
    font-size: 1.1em;
  }
}
/* Advantages Section */
.advantages {
  padding: 60px 0;
  background: white;
}
.advantages h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.advantage-card {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-5px);
}
.advantage-card i {
  font-size: 2.5em;
  color: #3498db;
  margin-bottom: 20px;
}
.advantage-card h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}
/* FAQ Section */
.faq {
  padding: 60px 0;
  background: #f8f9fa;
}
.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}
.faq-accordion {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.faq-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}
.faq-header h3 {
  color: #2c3e50;
  margin: 0;
  font-size: 1.1em;
}
.faq-header i {
  color: #3498db;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-header i {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-content {
  max-height: 500px;
  padding: 20px;
}
.faq-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) {
  .faq-accordion {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .faq-header h3 {
    font-size: 1em;
  }
}
/* Contact Section */
.contact {
  padding: 60px 0;
  background: white;
}
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}
.contact-info {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}
.contact-info p {
  margin-bottom: 10px;
}
.contact-info a {
  color: #3498db;
  text-decoration: none;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
.contact-form textarea {
  height: 150px;
  resize: vertical;
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #2980b9;
}
/* Work Process Section */
.work-process {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.work-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
}
.work-process h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
  font-size: 2.2em;
  position: relative;
}
.work-process-grid {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.work-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 100px;
  right: 100px;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(52, 152, 219, 0.3),
      rgba(52, 152, 219, 0.6) 50%,
      rgba(52, 152, 219, 0.3));
  z-index: 1;
}
.work-process-item {
  flex: 0 1 calc(16.666% - 20px);
  text-align: center;
  padding: 20px 15px;
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.work-process-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.work-process-number {
  width: 60px;
  height: 60px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 auto 15px;
  position: relative;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
.work-process-item:hover .work-process-number {
  background: #2c3e50;
  transform: scale(1.1);
}
.work-process-item h3 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 600;
}
.work-process-item p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 1200px) {
  .work-process-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .work-process-grid::before {
    display: none;
  }
  .work-process-item {
    flex: 0 1 calc(33.333% - 20px);
  }
}
@media (max-width: 768px) {
  .work-process-item {
    flex: 0 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .work-process-item {
    flex: 0 1 100%;
  }
}
/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.slider-controls button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-controls button:hover {
  background: rgba(255, 255, 255, 0.4);
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: white;
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer Styles */
.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 50px;
  margin-left: 230px;
  position: relative;
  z-index: 10;
  width: calc(100% - 230px);
  transition: margin-left 0.3s ease, width 0.3s ease;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 30px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto 30px auto;
  padding: 0 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  margin-top: 30px;
  max-width: 1400px;
  margin: 30px auto 0 auto;
  padding: 20px 30px 0 30px;
}

.footer-logo {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  color: #ecf0f1;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.footer-contact h3,
.footer-services h3,
.footer-social h3 {
  color: #3498db;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h3::after,
.footer-services h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 1px;
}

.footer-contact ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.footer-services li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.footer-contact i,
.footer-services i {
  margin-right: 12px;
  color: #3498db;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #3498db;
}

.footer-services a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.footer-services a:hover {
  color: #3498db;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.social-icon {
  color: #ecf0f1;
  font-size: 18px;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #34495e, #2c3e50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(52, 152, 219, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  color: #3498db;
  background: linear-gradient(135deg, #3498db, #2980b9);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
  border-color: rgba(52, 152, 219, 0.5);
}

/* Анімації для футера */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-content > * {
  animation: fadeInUp 0.6s ease-out;
}

.footer-content > *:nth-child(1) { animation-delay: 0.1s; }
.footer-content > *:nth-child(2) { animation-delay: 0.2s; }
.footer-content > *:nth-child(3) { animation-delay: 0.3s; }

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  color: #bdc3c7;
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer {
    margin-left: 0;
    width: 100%;
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 30px;
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .footer {
    margin-left: 0;
    padding: 30px 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-left: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-services,
  .footer-social {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px 20px 0 20px;
  }
  
  .footer-logo {
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 25px 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-left: 0;
    text-align: center;
    padding: 0 15px;
  }
  
  .footer-contact ul,
  .footer-services ul {
    display: inline-block;
    text-align: left;
  }
  
  .social-icons {
    justify-content: center;
    gap: 12px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .footer-bottom {
    padding: 20px 15px 0 15px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 20px 0 15px;
  }
  
  .footer-content {
    gap: 20px;
    padding: 0 15px;
  }
  
  .footer-contact h3,
  .footer-services h3,
  .footer-social h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .footer-contact h3::after,
  .footer-services h3::after,
  .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact li,
  .footer-services li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .footer-logo img {
    max-width: 100px;
  }
  
  .footer-logo p {
    font-size: 13px;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .footer-bottom {
    padding: 20px 15px 0 15px;
  }
  
  .footer-copyright p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 15px 0 10px;
  }
  
  .footer-content {
    gap: 15px;
  }
  
  .footer-contact li,
  .footer-services li {
    font-size: 13px;
  }
  
  .footer-logo img {
    max-width: 80px;
  }
  
  .footer-logo p {
    font-size: 12px;
  }
  
  .social-icons {
    gap: 8px;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  
  .footer-bottom {
    padding: 15px 15px 0 15px;
  }
}

@media (max-width: 360px) {
  .footer {
    padding: 12px 0 8px;
  }
  
  .footer-content {
    gap: 12px;
  }
  
  .footer-contact h3,
  .footer-services h3,
  .footer-social h3 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .footer-contact li,
  .footer-services li {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .footer-logo img {
    max-width: 70px;
  }
  
  .footer-logo p {
    font-size: 11px;
  }
  
  .social-icons {
    gap: 6px;
  }
  
  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .footer-bottom {
    padding: 12px 15px 0 15px;
  }
  
  .footer-copyright p {
    font-size: 11px;
  }
}
/* Article Section */
.article-section {
  padding: 60px 0;
  background: #f8f9fa;
  margin-left: 30px;
}
.article-section h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}
.article-section p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #34495e;
}
.article-section ul {
  list-style: none;
  margin: 20px 0;
}
.article-section ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.article-section ul li:before {
  content: "✓";
  color: #3498db;
  position: absolute;
  left: 0;
}
/* === Article Section Modern Styles === */
.article-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08), 0 1.5px 6px rgba(52,152,219,0.08);
    margin: 48px 0 32px 0;
    padding: 40px 0 32px 0;
}
.article-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.article-section .article h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2d3a4a;
    letter-spacing: 0.5px;
}
.article-section .article h3 {
    font-size: 1.3rem;
    color: #3498db;
    margin-top: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}
.article-section .article h4 {
    font-size: 1.1rem;
    color: #2d3a4a;
    margin-top: 18px;
    margin-bottom: 6px;
    font-weight: 500;
}
.article-section .article ul {
    margin: 0 0 18px 18px;
    padding-left: 18px;
}
.article-section .article ul li {
    margin-bottom: 7px;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    position: relative;
}
.article-section .article ul li::before {
    content: '\2022';
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.article-section .article p {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.7;
}
.article-section .article-note {
    background: #f4faff;
    border-left: 4px solid #3498db;
    border-radius: 8px;
    padding: 18px 22px;
    margin: 28px 0 18px 0;
    color: #25608a;
    font-size: 1rem;
}
.article-section .cta-button {
    margin-top: 24px;
    text-align: center;
}
.article-section .btn {
    background: linear-gradient(90deg, #3498db 0%, #25608a 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(52,152,219,0.08);
    text-decoration: none;
    display: inline-block;
}
.article-section .btn:hover {
    background: linear-gradient(90deg, #25608a 0%, #3498db 100%);
}
@media (max-width: 600px) {
    .article-section {
        padding: 18px 0 12px 0;
    }
    .article-section .container {
        padding: 0 6px;
    }
    .article-section .article h2 {
        font-size: 1.3rem;
    }
}
/* Interior Design Styles Section */
.design-styles {
  padding: 60px 0;
  background: #f8f9fa;
  margin-left: 30px;
}
.design-styles h2 {
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.2em;
  position: relative;
  padding-bottom: 15px;
}
.design-styles h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
}
.design-styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.design-style-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.design-style-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.design-style-image {
  height: 250px;
  overflow: hidden;
}
.design-style-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.design-style-card:hover .design-style-image img {
  transform: scale(1.1);
}
.design-style-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.design-style-content h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.5em;
  position: relative;
  padding-bottom: 10px;
}
.design-style-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #3498db;
}
.design-style-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.design-style-content ul {
  list-style: none;
  margin-bottom: 20px;
}
.design-style-content ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: #555;
}
.design-style-content ul li:before {
  content: "✓";
  color: #3498db;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.design-style-note {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
  color: #3498db;
  font-style: italic;
}
.design-styles-note {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.design-styles-note p {
  margin-bottom: 25px;
  line-height: 1.8;
  color: #555;
}
.design-consult-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
.design-consult-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #2980b9, #3498db);
}
@media (max-width: 1200px) {
  .design-styles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .design-styles-grid {
    grid-template-columns: 1fr;
  }
  .design-style-image {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .design-styles {
    margin-left: 0;
    padding: 40px 0;
  }
  .design-styles h2 {
    font-size: 1.8em;
  }
  .design-style-content h3 {
    font-size: 1.3em;
  }
}
/* Process Gallery */
.process-gallery {
  padding: 60px 0;
  background: #f8f9fa;
}
.process-gallery h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay i {
  color: white;
  font-size: 2em;
}
/* Repair Stages */
.repair-stages {
  padding: 60px 0;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  position: relative;
}
.repair-stages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #3498db, #2ecc71);
}
.repair-stages .container {
  max-width: 1400px;
  margin: 0 auto;
}
.repair-stages h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  color: #2c3e50;
}
.stages-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding: 20px 0;
}
.stages-grid::after {
  content: '';
  position: absolute;
  top: 100px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}
.stage-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.stage-item:hover {
  transform: translateY(-10px);
}
.stage-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #3498db;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}
.stage-icon {
  margin: 20px 0;
  font-size: 2em;
  color: #3498db;
}
.stage-item h3 {
  margin: 15px 0;
  color: #2c3e50;
  font-size: 1.2em;
}
.stage-item p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 1200px) {
  .stages-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stage-item {
    flex: 0 1 calc(33.333% - 20px);
    margin-bottom: 20px;
  }
  .stages-grid::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .stage-item {
    flex: 0 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .stage-item {
    flex: 0 1 100%;
  }
}
/* Additional Article */
.additional-article {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}
.additional-article .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.additional-article h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}
.additional-article p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #34495e;
}
.additional-article ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}
.additional-article ul li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}
.additional-article ul li:before {
  content: "✓";
  color: #3498db;
  position: absolute;
  left: 0;
}
.additional-article .cta-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.additional-article .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #3498db;
  margin: 0 auto;
}
.additional-article .btn:hover {
  background: transparent;
  color: #3498db;
  transform: translateY(-3px);
}
/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-grid,
  .stages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid,
  .stages-grid {
    grid-template-columns: 1fr;
  }
  .article-section,
  .process-gallery,
  .repair-stages,
  .additional-article {
    padding: 40px 0;
  }
  .stage-item {
    padding: 20px;
  }
  .stage-icon {
    width: 60px;
    height: 60px;
  }
  .stage-icon i {
    font-size: 1.5em;
  }
}
/* Promo Section Styles */
.promo-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}
.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.promo-text {
  flex: 1;
  position: relative;
}
.promo-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.promo-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.promo-image img:hover {
  transform: scale(1.05);
}
.promo-highlight {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #e6e6e6;
  position: relative;
  overflow: hidden;
}
.promo-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
}
.promo-badge {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}
.promo-highlight-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 20px 0;
  padding-left: 15px;
  border-left: 4px solid #3498db;
}
.btn-accent {
  background-color: #3498db;
  color: white;
  border: none;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}
.btn-accent:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}
@media (max-width: 992px) {
  .promo-content {
    flex-direction: column;
  }
  .promo-highlight {
    padding: 30px;
  }
}
/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 0;
  background: white;
}
.why-choose-us h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}
.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5em;
}
.benefit-text h3 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 1.1em;
}
.benefit-text p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.5;
  margin: 0;
}
.project-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .why-choose-content {
    grid-template-columns: 1fr;
  }
  .project-image {
    min-height: 400px;
    order: -1;
  }
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .project-image {
    min-height: 300px;
  }
}
.price-factors {
  padding: 60px 0;
  background: #fff;
}
.price-factors .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.price-factors h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 2.2em;
  position: relative;
  padding-bottom: 15px;
}
.price-factors h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #3498db;
}
.factors-group {
  margin-bottom: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.factors-group:hover {
  transform: translateY(-5px);
}
.factors-group h3 {
  color: #3498db;
  margin-bottom: 15px;
  font-size: 1.3em;
  display: flex;
  align-items: center;
}
.factors-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.factors-group ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}
.factors-group ul li:before {
  content: "•";
  color: #3498db;
  position: absolute;
  left: 0;
  font-size: 1.2em;
}
.factors-group ul li strong {
  color: #2c3e50;
  font-weight: 600;
}
.price-factors .article-note {
  background: #e8f4fc;
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid #3498db;
}
.price-factors .article-note p {
  margin: 0;
  color: #2c3e50;
}
.price-factors .cta-button {
  text-align: center;
  margin-top: 40px;
}
.price-factors .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #3498db;
}
.price-factors .btn:hover {
  background: transparent;
  color: #3498db;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .price-factors h2 {
    font-size: 1.8em;
  }
  .factors-group {
    padding: 20px;
  }
  .factors-group h3 {
    font-size: 1.2em;
  }
}
/* Reasons for Renovation Article */
.reasons-article {
  padding: 60px 0;
  background: white;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .article-section,
  .reasons-article {
    margin-left: 0;
  }
}
/* Project Page Styles */
.project-page {
  padding: 60px 0;
  background: #f8f9fa;
}
.project-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 80vh;
}
.project-info {
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.project-info h1 {
  color: #2c3e50;
  font-size: 2.5em;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.project-info h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2c3e50);
}
.project-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.detail-item:hover {
  transform: translateY(-5px);
}
.detail-item i {
  font-size: 1.5em;
  color: #3498db;
  width: 40px;
  height: 40px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-content {
  display: flex;
  flex-direction: column;
}
.detail-label {
  color: #666;
  font-size: 0.9em;
}
.detail-value {
  color: #2c3e50;
  font-size: 1.1em;
  font-weight: 600;
}
.project-description {
  margin-top: 40px;
}
.project-description h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8em;
}
.project-description p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}
.project-features h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.4em;
}
.project-features ul {
  list-style: none;
  padding: 0;
}
.project-features li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #666;
}
.project-features li::before {
  content: "✓";
  color: #3498db;
  position: absolute;
  left: 0;
  font-weight: bold;
}
.project-gallery {
  position: relative;
  height: 100%;
}
.project-slider {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.project-slider .swiper-slide {
  height: 100%;
}
.project-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-slider .swiper-button-next,
.project-slider .swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.project-slider .swiper-button-next::after,
.project-slider .swiper-button-prev::after {
  font-size: 20px;
}
.project-slider .swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}
.project-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #3498db;
}
@media (max-width: 1200px) {
  .project-container {
    grid-template-columns: 1fr;
  }
  .project-gallery {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .project-page {
    padding: 30px 0;
  }
  .project-info h1 {
    font-size: 2em;
  }
  .project-details {
    grid-template-columns: 1fr;
  }
  .project-gallery {
    height: 400px;
  }
}
/* Стилі для повноекранної галереї */
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.fullscreen-gallery {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  justify-content: center;
  align-items: center;
}
.fullscreen-gallery.active {
  display: flex;
  opacity: 1;
}
.fullscreen-image {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fullscreen-image img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background 0.3s ease;
}
.gallery-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}
.gallery-prev {
  left: 20px;
}
.gallery-next {
  right: 20px;
}
.gallery-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
}
/* Додаємо стилі для кнопки та її контейнера */
.gallery-button-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}
.btn-view-all {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
  background: linear-gradient(135deg, #2980b9, #3498db);
}
.btn-view-all:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
}
.btn-view-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: 0.5s;
}
.btn-view-all:hover::before {
  left: 100%;
}
/* Quick Links Styles */
.quick-links {
  display: flex;
  width: 100%;
  height: 250px;
  margin: 40px 0;
}
.quick-link-item {
  position: relative;
  flex: 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: white;
  transition: all 0.3s ease;
}
.pricing-link {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../../images/banners/pricing-bg.webp');
  background-size: cover;
  background-position: center;
}
.calculator-link {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../../images/banners/calculator-bg.jpg');
  background-size: cover;
  background-position: center;
}
.quick-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.quick-link-item:hover .quick-link-overlay {
  background: rgba(0, 0, 0, 0.5);
}
.quick-link-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(3px);
}
.quick-link-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 20px;
  transform: translateY(0);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.quick-link-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  color: white;
}
.quick-link-content p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 300px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  color: white;
}
.quick-link-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}
.quick-link-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.quick-link-item:hover .quick-link-overlay {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}
.quick-link-item:hover .quick-link-icon {
  transform: translateY(-5px);
}
.quick-link-item:hover .quick-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 992px) {
  .additional-info {
    /* margin-left: 230px; */
  }}


          /* Основний контент для prices.html*/
          .prices-page {
            padding-left: 230px;
            padding-bottom: 50px;
        }

        .prices-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Стилі для таблиць */
        .price-section {
            margin-bottom: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .price-section h2 {
            background: #2c3e50;
            color: white;
            margin: 0;
            padding: 20px;
            font-size: 1.5em;
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
        }

        .price-table th,
        .price-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .price-table th {
            background: #f8f9fa;
            font-weight: 600;
        }

        .price-table tr:last-child td {
            border-bottom: none;
        }

        .price-table td:last-child {
            text-align: right;
            font-weight: 600;
            color: #2c3e50;
        }

        .price-note {
            font-size: 0.9em;
            color: #666;
            padding: 15px 20px;
            background: #f8f9fa;
            border-top: 1px solid #eee;
        }

        /* Адаптивність */
        @media (max-width: 1200px) {
            .prices-page {
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .price-table {
                display: block;
                overflow-x: auto;
            }

            .prices-banner {
                height: 200px;
            }

            .prices-banner h1 {
                font-size: 2em;
            }
        }

        /* Стилі для таблиці складу проектів */
.pricing-table-desktop {
  display: block;
  margin: 40px 0;
  overflow-x: auto;
  padding-left: 20px; /* Додатковий відступ зліва */
}

.pricing-tables-mobile {
  display: none;
}

.project-composition-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.project-composition-table th {
  background: #3498db;
  color: #fff;
  padding: 20px 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
  border: 1px solid #2980b9;
}

.project-composition-table th:first-child {
  text-align: left;
  background: #2c3e50;
}

.price-label {
  display: block;
  font-size: 0.9em;
  font-weight: normal;
  margin-top: 5px;
  opacity: 0.9;
}

.project-composition-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #e0e0e0;
  vertical-align: middle;
}

.project-composition-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: #f8f9fa;
  color: #333;
}

.project-composition-table td i.fa-check {
  color: #27ae60;
  font-size: 1.2em;
}

.project-composition-table td i.fa-times {
  color: #e74c3c;
  font-size: 1.2em;
}

.project-composition-table tr:nth-child(odd) {
  background: #f5f5f5; /* Сірий колір для непарних рядків */
}

.project-composition-table tr:nth-child(even) {
  background: #fafafa; /* Світло-сірий колір для парних рядків */
}

.project-composition-table tr:hover {
  background: #e8f4fc;
}

.project-composition-table tr:hover td:first-child {
  background: #e8f4fc;
}

/* Стилі для мобільних таблиць */
.mobile-package-table {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  overflow: hidden;
  padding-left: 10px; /* Відступ зліва для мобільних таблиць */
  padding-right: 10px; /* Відступ справа для мобільних таблиць */
}

.mobile-package-table h3 {
  background: #3498db;
  color: #fff;
  padding: 20px;
  margin: 0;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
}

.package-features {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #333;
  font-size: 1em;
}

.package-features li:nth-child(odd) {
  background: #f5f5f5; /* Сірий колір для непарних елементів */
}

.package-features li:nth-child(even) {
  background: #fafafa; /* Світло-сірий колір для парних елементів */
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li i.fa-check {
  color: #27ae60;
  font-size: 1.1em;
  min-width: 20px;
}

/* Адаптивність */
@media (max-width: 1024px) {
  .pricing-table-desktop {
    display: none;
  }
  
  .pricing-tables-mobile {
    display: block;
  }
  
  .project-composition-table {
    font-size: 0.9em;
  }
  
  .project-composition-table th,
  .project-composition-table td {
    padding: 12px 8px;
  }
}

@media (min-width: 1201px) {
  .pricing-table-desktop {
    padding-left: 30px; /* Більший відступ для великих екранів */
  }
  
  .pricing-tables-mobile {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .mobile-package-table h3 {
    font-size: 1.2em;
    padding: 15px;
  }
  
  .package-features {
    padding: 15px;
  }
  
  .package-features li {
    font-size: 0.95em;
    padding: 8px 0;
  }
}


/* Стилі для секції порядку оплати */
.payment-steps {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.payment-steps h2 {
  text-align: center;
  font-size: 2.5em;
  color: #333;
  margin-bottom: 50px;
  position: relative;
}

.payment-steps h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #3498db;
  border-radius: 2px;
}

.payment-steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.payment-step {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
  position: relative;
}

.payment-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #3498db;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.step-percentage {
  font-size: 2.5em;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

.payment-step h3 {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.payment-step p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.4;
  margin: 0;
}

.step-arrow {
  color: #3498db;
  font-size: 1.5em;
  margin: 0 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.payment-note {
  background: #e8f4fc;
  padding: 25px;
  border-radius: 15px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 3px 15px rgba(52, 152, 219, 0.1);
}

.payment-note .note-icon {
  font-size: 2em;
  color: #3498db;
  flex-shrink: 0;
}

.payment-note p {
  margin: 0;
  color: #333;
  font-size: 1.1em;
  line-height: 1.5;
  font-weight: 500;
}

/* Адаптивність для порядку оплати */
@media (max-width: 1024px) {
  .payment-steps-container {
    gap: 20px;
  }
  
  .payment-step {
    min-width: 180px;
    padding: 25px 20px;
  }
  
  .step-percentage {
    font-size: 2.2em;
  }
  
  .payment-step h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .payment-steps {
    padding: 60px 0;
  }
  
  .payment-steps h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }
  
  .payment-steps-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  
  .payment-step {
    min-width: 250px;
    padding: 30px 25px;
  }
  
  .payment-note {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .payment-note .note-icon {
    font-size: 1.5em;
  }
  
  .payment-note p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .payment-step {
    min-width: 200px;
    padding: 25px 20px;
  }
  
  .step-percentage {
    font-size: 2em;
  }
  
  .payment-step h3 {
    font-size: 1.1em;
  }
  
  .payment-step p {
    font-size: 0.9em;
  }
}
