/*!
Theme Name: redesign
Theme URI: 
Author: 
Author URI:
Description:
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
*/

/* ========== Color Variables ========== */
:root {
  --color-accent: #ff6602;
  --color-dark: #171717;
  --color-light: #fff;
  --color-accent-hover: #e55a00;
  --color-dark-transparent: rgba(23, 23, 23, 0.9);
  --color-light-transparent: rgba(255, 255, 255, 0.9);
}

/* ========== Reset & Base Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--color-dark);
  background: var(--color-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

a:focus,
button:focus {
  outline: none;
}

ul {
  list-style: none;
}

/* ========== Main Layout ========== */
.mobile-menu-toggle {
  display: none;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: var(--color-dark-transparent);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--color-dark);
  transform: scale(1.05);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.main-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 320px;
  height: 100vh;
  background: var(--color-dark);
  color: var(--color-light);
  overflow-y: auto;
  z-index: 1000;
}

.sidebar-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--color-light);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.sidebar-close:hover {
  background: var(--color-accent);
  transform: rotate(90deg);
}

.main-sidebar::-webkit-scrollbar {
  width: 6px;
}

.main-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.main-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 102, 2, 0.5);
  border-radius: 3px;
}

.main-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

.sidebar-inner {
  padding: 30px 25px;
}

.main-content-wrapper {
  margin-left: 320px;
  min-height: 100vh;
}

/* ========== Sidebar Logo ========== */
.sidebar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  text-align: center;
}

.logo-image {
  display: block;
  max-width: 120px;
  height: auto;
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== Sidebar Location ========== */
.sidebar-location {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* ========== Sidebar Sections ========== */
.sidebar-section {
  margin-bottom: 30px;
}

.sidebar-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

/* ========== Sidebar Menu ========== */
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-menu li {
  position: relative;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
  transform: translateX(3px);
}

.sidebar-menu li.has-submenu > a::after {
  content: '›';
  margin-left: auto;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.sidebar-menu li.has-submenu:hover > a::after {
  transform: translateX(3px);
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== Sidebar Submenu ========== */
.sidebar-submenu {
  position: fixed;
  left: 320px;
  top: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-dark);
  padding: 30px 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
  transition: all 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.has-submenu:hover .sidebar-submenu,
.has-submenu.submenu-visible .sidebar-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 102, 2, 0.2);
}

.submenu-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.submenu-list li a {
  display: block;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}

.submenu-list li a:hover {
  background: rgba(255, 102, 2, 0.1);
  color: var(--color-accent);
  padding-left: 20px;
}

/* ========== CTA Button ========== */
.sidebar-cta-button {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: var(--color-accent);
  color: var(--color-light);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  margin: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.sidebar-cta-button:hover {
  opacity: 1;
  background: var(--color-accent-hover);
}

/* ========== Shop Link ========== */
.sidebar-shop {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.sidebar-shop:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.shop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== Sidebar Links ========== */
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-links li a {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all 0.3s ease;
}

.sidebar-links li a:hover {
  opacity: 1;
  border-left-color: var(--color-accent);
  padding-left: 18px;
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.55)),
    url('assets/images/hero-bg.webp') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 80px;
}

/* ========== Top Navigation ========== */
.top-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  background: rgba(23, 23, 23, 0.95);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 320px;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.nav-left {
  display: flex;
  gap: 35px;
}

.nav-left a {
  color: var(--color-light);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
}

.nav-left a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-left a:hover::after {
  width: 100%;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.contact-info .phone {
  color: var(--color-light);
  font-size: 16px;
  font-weight: 700;
}

.contact-info .email {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.nav-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  transition: all 0.3s ease;
  position: relative;
}

.icon-link:hover {
  background: var(--color-accent);
  opacity: 1;
}

.icon-link svg {
  stroke: currentColor;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-dark);
}

/* ========== Hero Content ========== */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px 100px;
  max-width: 900px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-light);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-light);
  line-height: 1.6;
  max-width: 600px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.hero-cta-button:hover {
  background: #e55a00;
  opacity: 1;
}

.hero-cta-button svg {
  transition: transform 0.3s ease;
}

.hero-cta-button:hover svg {
  transform: translateX(5px);
}

.hero-secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--color-light);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-secondary-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.scroll-down-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-light);
  cursor: pointer;
  animation: fadeInHalf 1s ease forwards, bounce 2s ease-in-out infinite;
  animation-delay: 0.8s, 1.8s;
  opacity: 0;
  transition: color 0.15s ease 0s, opacity 0.2s ease 0.15s;
  z-index: 5;
}

.scroll-down-arrow:hover {
  color: var(--color-accent) !important;
  opacity: 1 !important;
  animation-play-state: paused;
}

.scroll-down-arrow svg {
  transition: all 0.3s ease;
}

.scroll-text {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInHalf {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes bounceHover {
  0%,
  100% {
    transform: translateX(-50%) translateY(-5px);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

/* ========== Homepage Banners Section ========== */
.homepage-banners {
  padding: 40px 0 0;
  background: var(--color-light);
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.banners-slider-wrapper {
  position: relative;
}

.banners-slider {
  position: relative;
  overflow: hidden;
}

.banners-slider .swiper-slide {
  height: auto;
  display: flex;
}

/* Левая кнопка баннеров - позиционирование */
.banners-slider-button-prev {
  position: absolute;
  left: -29px;
  top: 39%;
  transform: translateY(-50%);
  z-index: 10;
  margin-top: 0;
}

/* Правая кнопка баннеров - позиционирование */
.banners-slider-button-next {
  position: absolute;
  right: -29px;
  top: 39%;
  transform: translateY(-50%);
  z-index: 10;
  margin-top: 0;
}

.banner-item {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: border-color 0.3s ease;
  border: 2px solid rgba(23, 23, 23, 0.08);
}

.banner-item:hover {
  border-color: var(--color-accent);
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 1;
}

/* ========== Popular Projects Section ========== */
.popular-projects {
  padding: 80px 0;
  background: var(--color-light);
  position: relative;
  scroll-margin-top: 25px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 50px;
  line-height: 1.2;
}

.projects-slider {
  position: relative;
  padding: 0 5px;
}

.projects-slider .swiper {
  padding-bottom: 0;
}

.projects-slider .swiper-wrapper {
  align-items: stretch;
}

.projects-slider .swiper-slide {
  height: auto;
  display: flex;
}

.projects-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  width: 100%;
  background: var(--color-light);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.project-image {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.05);
}

.project-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.project-badge.bestseller {
  background: var(--color-accent);
  color: var(--color-light);
}

.project-area {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}

.project-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.project-id {
  font-size: 13px;
  color: rgba(23, 23, 23, 0.5);
  margin-bottom: 12px;
  font-weight: 500;
}

.project-dimensions,
.project-style {
  font-size: 14px;
  color: rgba(23, 23, 23, 0.7);
  margin-bottom: 8px;
  line-height: 1.6;
}

.project-style {
  margin-bottom: 20px;
  font-weight: 500;
}

.project-services {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.service-option {
  flex: 1;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.service-option:hover {
  background: rgba(255, 102, 2, 0.05);
  border-color: rgba(255, 102, 2, 0.3);
}

.service-option.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
}

.project-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid rgba(23, 23, 23, 0.08);
}

.project-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.price-main {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
}

.price-per-m {
  font-size: 14px;
  color: rgba(23, 23, 23, 0.6);
  font-weight: 500;
}

.project-actions {
  display: flex;
  align-items: center;
}

.btn-view-project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
}

.btn-view-project:hover {
  background: var(--color-accent-hover);
  opacity: 1;
}

.btn-view-project svg {
  transition: transform 0.3s ease;
}

.btn-view-project:hover svg {
  transform: translateX(3px);
}

.btn-favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(23, 23, 23, 0.1);
  border-radius: 10px;
  color: rgba(23, 23, 23, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-favorite:hover {
  background: rgba(255, 102, 2, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: scale(1.05);
}

.btn-favorite.active {
  background: rgba(255, 102, 2, 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-favorite svg {
  width: 22px;
  height: 22px;
}

.btn-favorite.active svg path {
  fill: var(--color-accent);
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background: var(--color-light);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: absolute;
  margin-top: 0;
  transform: none;
}

.swiper-button-prev {
  order: 1;
}

.swiper-button-next {
  order: 3;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
  color: var(--color-light);
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.swiper-button-disabled:hover {
  background: var(--color-light);
  transform: scale(1);
}

.swiper-button-disabled:hover:after {
  color: var(--color-dark);
}

.swiper-pagination {
  position: static !important;
  bottom: auto;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  order: 2;
  width: auto !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(23, 23, 23, 0.25);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 4px !important;
  transform: scale(1) !important;
}

.swiper-pagination-bullet:hover {
  background: rgba(255, 102, 2, 0.5);
}

.swiper-pagination-bullet-active {
  background: var(--color-accent);
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active-main {
  background: var(--color-accent);
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active-prev,
.swiper-pagination-bullet-active-next {
  background: rgba(255, 102, 2, 0.5);
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active-prev-prev,
.swiper-pagination-bullet-active-next-next {
  background: rgba(255, 102, 2, 0.3);
  width: 10px !important;
  height: 10px !important;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
  .main-sidebar {
    width: 280px;
  }

  .main-content-wrapper {
    margin-left: 280px;
  }

  .hero-title {
    font-size: 48px;
  }

  .nav-left {
    gap: 25px;
  }

  .container {
    padding: 0 40px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .main-sidebar::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
  }

  .main-sidebar.active {
    transform: translateX(0);
  }

  .main-sidebar.active::before {
    opacity: 1;
    visibility: visible;
  }

  .sidebar-close {
    display: flex;
  }

  .main-content-wrapper {
    margin-left: 0;
  }

  /* Submenu on mobile - show below instead of to the right */
  .sidebar-submenu {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 10px;
    padding: 20px;
    border-left: none;
    border-top: 2px solid var(--color-accent);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .has-submenu:hover .sidebar-submenu,
  .has-submenu.active .sidebar-submenu,
  .has-submenu.submenu-visible .sidebar-submenu {
    max-height: 500px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-left {
    gap: 20px;
    font-size: 13px;
  }

  .hero-content {
    padding: 0 30px 80px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-cta-button,
  .hero-secondary-button {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
    font-size: 15px;
  }

  .popular-projects {
    padding: 60px 0;
  }

  .container {
    padding: 0 30px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .project-content {
    padding: 20px;
  }

  .project-title {
    font-size: 18px;
  }

  .price-main {
    font-size: 22px;
  }

  .projects-slider {
    padding: 0 5px;
  }

  .projects-slider-nav {
    gap: 20px;
    margin-top: 35px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 45px;
    height: 45px;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .top-navigation {
    padding: 15px 20px;
  }

  .nav-left {
    display: none;
  }

  .contact-info .email {
    display: none;
  }

  .hero-content {
    padding: 0 25px 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-buttons {
    margin-top: 30px;
  }

  .scroll-down-arrow {
    bottom: 20px;
  }

  .homepage-banners {
    padding: 30px 0 0;
  }

  .banners-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .popular-projects {
    padding: 50px 0;
  }

  .container {
    padding: 0 25px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .service-option {
    font-size: 12px;
    padding: 8px 10px;
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  .top-navigation {
    padding: 15px 20px;
  }

  .hero-content {
    padding: 0 20px 60px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .scroll-down-arrow {
    bottom: 15px;
  }

  .homepage-banners {
    padding: 25px 0 0;
  }

  .banners-grid {
    gap: 12px;
  }

  .banners-slider-button-prev,
  .banners-slider-button-next {
    width: 40px;
    height: 40px;
  }

  .banners-slider-button-prev:after,
  .banners-slider-button-next:after {
    font-size: 16px;
  }

  .nav-icons {
    gap: 10px;
  }

  .icon-link {
    width: 36px;
    height: 36px;
  }

  .popular-projects {
    padding: 40px 0;
  }

  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .project-content {
    padding: 18px;
  }

  .project-title {
    font-size: 17px;
  }

  .project-dimensions,
  .project-style {
    font-size: 13px;
  }

  .service-option {
    font-size: 11px;
    padding: 7px 8px;
  }

  .price-main {
    font-size: 20px;
  }

  .btn-view-project {
    padding: 12px 20px;
    font-size: 14px;
  }

  .projects-slider {
    padding: 0 5px;
  }

  .projects-slider-nav {
    gap: 15px;
    margin-top: 30px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 16px;
  }

  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 3px !important;
  }

  .swiper-pagination-bullet-active {
    width: 8px !important;
    height: 8px !important;
  }
}

/* ========== Contact Form Section - Unique Design ========== */
.contact-form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 102, 2, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 102, 2, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.contact-form-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 102, 2, 0.15) 50%,
    transparent 100%
  );
}

.unique-callback-wrapper {
  background: var(--color-dark);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.callback-background-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--color-accent) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

.callback-content-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.callback-info {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.callback-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 102, 2, 0.15);
  color: var(--color-accent);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  border: 1px solid rgba(255, 102, 2, 0.3);
}

.callback-badge svg {
  width: 20px;
  height: 20px;
}

.callback-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-light);
  line-height: 1.15;
  margin: 0;
}

.callback-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.callback-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 10px;
}

.callback-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(255, 102, 2, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 102, 2, 0.25);
}

.callback-feature p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  padding-top: 12px;
}

.callback-form-card {
  background: var(--color-light);
  padding: 45px;
  border-radius: 0 30px 30px 0;
  display: flex;
  align-items: center;
}

.callback-form {
  width: 100%;
}

.callback-form-header {
  margin-bottom: 35px;
}

.callback-form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.callback-form-header p {
  font-size: 15px;
  color: rgba(23, 23, 23, 0.6);
  margin: 0;
}

.callback-inputs {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 20px;
}

.callback-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.callback-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.3px;
}

.callback-field input {
  padding: 16px 20px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: var(--color-dark);
  background: rgba(23, 23, 23, 0.03);
  border: 2px solid rgba(23, 23, 23, 0.08);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.callback-field input::placeholder {
  color: rgba(23, 23, 23, 0.4);
}

.callback-field input:focus {
  border-color: transparent;
  background: var(--color-light);
  box-shadow: none;
  transform: none;
  outline: none;
}

.callback-submit {
  width: 100%;
  padding: 18px 32px;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 17px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.callback-submit:hover {
  background: var(--color-accent-hover);
}

.callback-submit:active {
  background: var(--color-accent-hover);
}

.callback-submit svg {
  transition: transform 0.3s ease;
}

.callback-submit:hover svg {
  transform: translateX(3px);
}

.callback-privacy {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(23, 23, 23, 0.55);
  text-align: center;
  margin: 20px 0 0 0 !important;
}

.callback-privacy a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.callback-privacy a:hover {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .callback-content-grid {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }

  .callback-info {
    padding: 50px;
  }

  .callback-title {
    font-size: 40px;
  }

  .callback-form-card {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .callback-content-grid {
    grid-template-columns: 1fr;
  }

  .callback-info {
    padding: 50px 40px 30px;
  }

  .callback-title {
    font-size: 36px;
  }

  .callback-form-card {
    padding: 40px;
    border-radius: 0;
  }

  .callback-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .callback-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .feature-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .callback-feature p {
    padding-top: 0;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .unique-callback-wrapper {
    border-radius: 20px;
  }

  .callback-info {
    padding: 40px 30px 30px;
    gap: 25px;
  }

  .callback-title {
    font-size: 32px;
  }

  .callback-description {
    font-size: 16px;
  }

  .callback-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .callback-feature {
    flex-direction: row;
    text-align: left;
  }

  .callback-form-card {
    padding: 35px 30px;
  }

  .callback-form-header h3 {
    font-size: 24px;
  }

  .callback-inputs {
    gap: 20px;
  }

  .callback-field input {
    padding: 14px 18px;
    font-size: 15px;
  }

  .callback-submit {
    padding: 16px 28px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 50px 0;
  }

  .callback-info {
    padding: 35px 25px 25px;
  }

  .callback-title {
    font-size: 28px;
  }

  .callback-description {
    font-size: 15px;
  }

  .callback-badge {
    font-size: 13px;
    padding: 10px 16px;
  }

  .feature-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .callback-feature p {
    font-size: 14px;
  }

  .callback-form-card {
    padding: 30px 25px;
  }

  .callback-form-header h3 {
    font-size: 22px;
  }

  .callback-field input {
    padding: 13px 16px;
    font-size: 14px;
  }

  .callback-submit {
    padding: 15px 24px;
    font-size: 15px;
  }
}

/* ========== Form Notifications ========== */
.form-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  min-width: 320px;
  max-width: 450px;
  background: var(--color-light);
  border-radius: 12px;
  transform: translateX(500px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  position: relative;
}

.notification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
}

.form-notification-success .notification-icon {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.form-notification-error .notification-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.notification-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
  padding-top: 8px;
}

.notification-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: rgba(23, 23, 23, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background: rgba(23, 23, 23, 0.08);
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .form-notification {
    top: 20px;
    right: 20px;
    left: 20px;
    min-width: auto;
    max-width: none;
  }

  .notification-content {
    padding: 18px;
  }

  .notification-icon {
    width: 36px;
    height: 36px;
  }

  .notification-message {
    font-size: 13px;
    padding-top: 6px;
  }
}

/* ========== Materials Comparison Section ========== */
.materials-comparison-section {
  padding: 100px 0;
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.materials-comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 102, 2, 0.2) 50%,
    transparent 100%
  );
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 0 -20px;
  padding: 0 20px;
  border-radius: 16px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.comparison-table thead tr {
  background: linear-gradient(180deg, #f8f8f8 0%, #f3f3f3 100%);
}

.comparison-table th,
.comparison-table td {
  padding: 25px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.comparison-table thead th {
  border-bottom: 2px solid rgba(255, 102, 2, 0.15);
}

.property-header {
  width: 20%;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.material-header {
  width: 20%;
  vertical-align: bottom;
  padding-bottom: 30px;
}

.material-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-block {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-3d {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(15deg) rotateY(-15deg);
  transition: transform 0.3s ease;
}

.material-block:hover .block-3d {
  transform: rotateX(20deg) rotateY(-20deg) scale(1.05);
}

.polystyrene .block-3d {
  background: linear-gradient(135deg, #e0e0e0 0%, #c8c8c8 100%);
  position: relative;
}

.polystyrene .block-3d::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: linear-gradient(
      45deg,
      transparent 30%,
      #8b4513 30%,
      #8b4513 32%,
      transparent 32%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      #8b4513 30%,
      #8b4513 32%,
      transparent 32%
    );
  border: 2px solid #a0522d;
  border-radius: 4px;
}

.aerated .block-3d {
  background: radial-gradient(circle at 20% 30%, #f5f5f5 0%, #e8e8e8 100%);
}

.aerated .block-3d::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(200, 200, 200, 0.4) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 75% 50%,
      rgba(200, 200, 200, 0.4) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(200, 200, 200, 0.4) 1px,
      transparent 1px
    );
  background-size: 8px 8px;
  border-radius: 6px;
}

.foam .block-3d {
  background: linear-gradient(135deg, #d5d5d5 0%, #b8b8b8 100%);
  position: relative;
}

.foam .block-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(160, 160, 160, 0.5) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 70% 40%,
      rgba(160, 160, 160, 0.5) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 50% 70%,
      rgba(160, 160, 160, 0.5) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 20% 60%,
      rgba(160, 160, 160, 0.5) 2px,
      transparent 2px
    );
  background-size: 12px 12px;
  border-radius: 8px;
}

.brick .block-3d {
  background: linear-gradient(135deg, #c8593c 0%, #a04a32 100%);
  position: relative;
}

.brick .block-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 18px,
      rgba(0, 0, 0, 0.15) 18px,
      rgba(0, 0, 0, 0.15) 20px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 38px,
      rgba(0, 0, 0, 0.15) 38px,
      rgba(0, 0, 0, 0.15) 40px
    );
  border-radius: 8px;
}

.brick .block-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 0, 0, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 6px 6px;
  border-radius: 8px;
}

.comparison-table tbody tr {
  transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 102, 2, 0.02);
}

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

.property-name {
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  padding-left: 30px;
  line-height: 1.5;
}

.value {
  font-size: 16px;
  font-weight: 500;
  color: rgba(23, 23, 23, 0.8);
  line-height: 1.6;
}

.value.highlight {
  background: transparent;
  color: var(--color-dark);
  font-weight: 600;
  position: relative;
}

.value.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
}

.comparison-note {
  margin-top: 40px;
  padding: 25px 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 2, 0.08) 0%,
    rgba(255, 102, 2, 0.04) 100%
  );
  border: 2px solid rgba(255, 102, 2, 0.2);
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.note-icon svg {
  width: 24px;
  height: 24px;
}

.note-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  letter-spacing: 0.3px;
}

.comparison-note p {
  font-size: 14px;
  color: rgba(23, 23, 23, 0.75);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .materials-comparison-section {
    padding: 80px 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 20px 15px;
  }

  .material-header h3 {
    font-size: 14px;
  }

  .material-block {
    width: 80px;
    height: 80px;
  }

  .block-3d {
    width: 65px;
    height: 65px;
  }

  .property-name {
    font-size: 14px;
    padding-left: 20px;
  }

  .value {
    font-size: 14px;
  }

  .value.price {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .materials-comparison-section {
    padding: 60px 0;
  }

  .comparison-table-wrapper {
    margin: 0;
    padding: 0;
  }

  .comparison-table {
    min-width: 800px;
  }

  .material-header h3 {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .materials-comparison-section {
    padding: 50px 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 15px 12px;
  }

  .material-block {
    width: 70px;
    height: 70px;
  }

  .block-3d {
    width: 55px;
    height: 55px;
  }

  .material-header h3 {
    font-size: 12px;
  }

  .property-name {
    font-size: 13px;
    padding-left: 15px;
  }

  .value {
    font-size: 13px;
  }

  .value.price {
    font-size: 15px;
  }

  .comparison-note {
    padding: 20px;
    gap: 15px;
  }

  .note-icon {
    width: 44px;
    height: 44px;
  }

  .note-icon svg {
    width: 22px;
    height: 22px;
  }

  .note-label {
    font-size: 14px;
  }

  .comparison-note p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .materials-comparison-section {
    padding: 40px 0;
  }

  .comparison-table {
    min-width: 700px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }

  .material-block {
    width: 60px;
    height: 60px;
  }

  .block-3d {
    width: 48px;
    height: 48px;
  }

  .material-header h3 {
    font-size: 11px;
  }

  .property-name {
    font-size: 12px;
    padding-left: 12px;
  }

  .value {
    font-size: 12px;
  }

  .value.price {
    font-size: 14px;
  }

  .comparison-note {
    padding: 18px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .note-icon {
    width: 40px;
    height: 40px;
  }

  .note-icon svg {
    width: 20px;
    height: 20px;
  }

  .note-label {
    font-size: 13px;
  }

  .comparison-note p {
    font-size: 12px;
  }
}

/* ========== Investment Distribution Section ========== */

.investment-distribution-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.investment-distribution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 102, 2, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 102, 2, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.investment-distribution-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 102, 2, 0.2) 50%,
    transparent 100%
  );
}

.investment-intro-top {
  max-width: 800px;
  margin: 40px 0 0 0;
  position: relative;
  z-index: 1;
}

.investment-intro-top h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.investment-intro-top p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(23, 23, 23, 0.7);
}

.investment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.investment-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.investment-comparison {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.investment-item {
  background: var(--color-light);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(23, 23, 23, 0.06);
}

.investment-item.highlight {
  background: var(--color-dark);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
  border: none;
}

.investment-item.highlight::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--color-accent) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

.investment-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.investment-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 102, 2, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 102, 2, 0.15);
}

.investment-item.highlight .investment-icon {
  background: rgba(255, 102, 2, 0.15);
  border-color: rgba(255, 102, 2, 0.3);
}

.investment-icon svg {
  color: var(--color-accent);
}

.investment-item.highlight .investment-icon svg {
  color: var(--color-accent);
}

.investment-icon.traditional {
  background: rgba(23, 23, 23, 0.05);
  border-color: rgba(23, 23, 23, 0.08);
}

.investment-icon.traditional svg {
  color: rgba(23, 23, 23, 0.6);
}

.investment-item.highlight .investment-icon.traditional {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.investment-item.highlight .investment-icon.traditional svg {
  color: rgba(255, 255, 255, 0.7);
}

.investment-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.3;
}

.investment-item.highlight .investment-header h4 {
  color: var(--color-light);
}

.investment-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.investment-details p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(23, 23, 23, 0.75);
  margin: 0;
}

.investment-item.highlight .investment-details p {
  color: rgba(255, 255, 255, 0.9);
}

.investment-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.investment-item.highlight .stat-value {
  color: var(--color-accent);
}

.stat-label {
  font-size: 15px;
  color: rgba(23, 23, 23, 0.65);
  line-height: 1.5;
}

.investment-item.highlight .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

.investment-stat.secondary .stat-value {
  font-size: 30px;
  color: rgba(23, 23, 23, 0.4);
}

.investment-item.highlight .investment-stat.secondary .stat-value {
  color: rgba(255, 255, 255, 0.6);
}

.investment-conclusion {
  padding: 22px 26px;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 2, 0.08) 0%,
    rgba(255, 102, 2, 0.04) 100%
  );
  border: 2px solid rgba(255, 102, 2, 0.2);
  border-radius: 12px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.investment-conclusion .note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.investment-conclusion .note-icon svg {
  width: 22px;
  height: 22px;
}

.investment-conclusion .note-content {
  flex: 1;
}

.investment-conclusion .note-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.investment-conclusion p {
  font-size: 14px;
  color: rgba(23, 23, 23, 0.75);
  margin: 0;
  line-height: 1.7;
}

.investment-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 16px rgba(255, 102, 2, 0.25);
  border: none;
  cursor: pointer;
}

.investment-cta:hover {
  background: var(--color-accent-hover);
  opacity: 1;
}

.investment-right {
  position: sticky;
  top: 100px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.investment-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.08);
  position: relative;
  background: var(--color-light);
  height: 100%;
  min-height: 450px;
}

.investment-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 2, 0.05) 0%,
    rgba(23, 23, 23, 0.05) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.investment-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1024px) {
  .investment-distribution-section {
    padding: 80px 0;
  }

  .investment-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .investment-right {
    gap: 20px;
  }

  .investment-image {
    min-height: 380px;
  }

  .investment-image img {
    min-height: 380px;
  }

  .investment-intro-top h3 {
    font-size: 26px;
  }

  .investment-intro p {
    font-size: 15px;
  }

  .stat-value {
    font-size: 34px;
  }

  .investment-stat.secondary .stat-value {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .investment-distribution-section {
    padding: 60px 0;
  }

  .investment-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .investment-right {
    position: relative;
    top: 0;
    order: -1;
    gap: 20px;
  }

  .investment-image {
    min-height: 320px;
  }

  .investment-image img {
    min-height: 320px;
  }

  .investment-intro-top h3 {
    font-size: 24px;
  }

  .investment-intro-top p {
    font-size: 15px;
  }

  .investment-item {
    padding: 25px;
  }

  .investment-header h4 {
    font-size: 17px;
  }

  .stat-value {
    font-size: 32px;
  }

  .investment-stat.secondary .stat-value {
    font-size: 24px;
  }

  .stat-label {
    font-size: 14px;
  }

  .investment-conclusion {
    padding: 20px;
    gap: 15px;
  }

  .investment-conclusion .note-icon {
    width: 42px;
    height: 42px;
  }

  .investment-conclusion .note-icon svg {
    width: 20px;
    height: 20px;
  }

  .investment-conclusion .note-label {
    font-size: 14px;
  }

  .investment-conclusion p {
    font-size: 13px;
  }

  .investment-cta {
    width: 100%;
    font-size: 16px;
    padding: 18px 32px;
  }
}

@media (max-width: 480px) {
  .investment-distribution-section {
    padding: 50px 0;
  }

  .investment-left {
    gap: 25px;
  }

  .investment-right {
    gap: 18px;
  }

  .investment-image {
    min-height: 260px;
  }

  .investment-image img {
    min-height: 260px;
  }

  .investment-intro-top h3 {
    font-size: 21px;
  }

  .investment-intro-top p {
    font-size: 14px;
  }

  .investment-item {
    padding: 22px;
  }

  .investment-icon {
    width: 50px;
    height: 50px;
  }

  .investment-icon svg {
    width: 26px;
    height: 26px;
  }

  .investment-header {
    gap: 14px;
  }

  .investment-header h4 {
    font-size: 16px;
  }

  .stat-value {
    font-size: 28px;
  }

  .investment-stat.secondary .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 13px;
  }

  .investment-conclusion {
    padding: 18px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .investment-conclusion .note-icon {
    width: 38px;
    height: 38px;
  }

  .investment-conclusion .note-icon svg {
    width: 19px;
    height: 19px;
  }

  .investment-conclusion .note-label {
    font-size: 13px;
  }

  .investment-conclusion p {
    font-size: 12px;
  }

  .investment-cta {
    font-size: 14px;
    padding: 14px 28px;
  }
}

/* ========== Polystyrene Concrete Advantages Section ========== */

.advantages-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 102, 2, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 102, 2, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.advantages-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 102, 2, 0.15) 50%,
    transparent 100%
  );
  z-index: 1;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.advantage-card {
  background: var(--color-light);
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  min-height: 300px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  position: relative;
  overflow: hidden;
}

.advantage-card.card-white {
  background: var(--color-light);
  border: 2px solid rgba(255, 102, 2, 0.1);
}

.advantage-card.card-dark {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: var(--color-light);
  border: 2px solid rgba(255, 102, 2, 0.3);
}

.advantage-card.card-dark .advantage-title,
.advantage-card.card-dark .advantage-description {
  color: var(--color-light);
}

.advantage-card.card-orange {
  background: linear-gradient(135deg, #ff6602 0%, #ff8534 100%);
  color: var(--color-light);
  border: none;
}

.advantage-card.card-orange .advantage-title,
.advantage-card.card-orange .advantage-description {
  color: var(--color-light);
}

.advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: rgba(255, 102, 2, 0.08);
  border-radius: 12px;
  padding: 15px;
}

.advantage-card.card-dark .advantage-icon {
  background: rgba(255, 102, 2, 0.2);
}

.advantage-card.card-orange .advantage-icon {
  background: rgba(255, 255, 255, 0.2);
}

.advantage-icon svg {
  width: 100%;
  height: 100%;
}

.advantage-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.advantage-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin: 0;
}

.advantage-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(23, 23, 23, 0.65);
  margin: 0;
}

.advantage-card.card-dark .advantage-description,
.advantage-card.card-orange .advantage-description {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) {
  .advantages-section {
    padding: 80px 0;
  }

  .advantages-grid {
    gap: 20px;
  }

  .advantage-card {
    padding: 35px 28px;
    min-height: 280px;
  }

  .advantage-title {
    font-size: 18px;
  }

  .advantage-description {
    font-size: 14px;
  }

  .advantage-icon {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 992px) {
  .advantages-section {
    padding: 60px 0;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .advantage-card {
    padding: 32px 26px;
    min-height: 260px;
  }

  .advantage-title {
    font-size: 17px;
  }

  .advantage-icon {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 50px 0;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .advantage-card {
    padding: 30px;
    min-height: auto;
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }

  .advantage-icon {
    width: 70px;
    height: 70px;
    padding: 12px;
  }

  .advantage-content {
    align-items: flex-start;
    text-align: left;
  }

  .advantage-title {
    font-size: 17px;
  }

  .advantage-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .advantages-section {
    padding: 40px 0;
  }

  .advantages-grid {
    gap: 15px;
  }

  .advantage-card {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .advantage-icon {
    width: 65px;
    height: 65px;
    padding: 10px;
  }

  .advantage-content {
    align-items: center;
    text-align: center;
  }

  .advantage-title {
    font-size: 16px;
  }

  .advantage-description {
    font-size: 13px;
  }
}

/* ========== Work Process Section ========== */

.work-process-section {
  padding: 100px 0;
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.work-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 102, 2, 0.2) 50%,
    transparent 100%
  );
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
  position: relative;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 35px 30px;
  background: var(--color-light);
  border-radius: 14px;
  border: 2px solid rgba(23, 23, 23, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--color-accent);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 22px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 102, 2, 0.08);
  border-radius: 12px;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.step-icon svg {
  width: 48px;
  height: 48px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin: 0;
}

.step-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(23, 23, 23, 0.7);
  margin: 0;
}

.process-cta {
  margin-top: 60px;
  padding: 45px 50px;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.process-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--color-accent) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

.process-cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.process-cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-light);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.process-cta-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.process-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 38px;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.process-cta-button:hover {
  background: var(--color-accent-hover);
  opacity: 1;
  transform: scale(1.02);
}

.process-cta-button svg {
  transition: transform 0.3s ease;
}

.process-cta-button:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1200px) {
  .work-process-section {
    padding: 80px 0;
  }

  .process-timeline {
    gap: 30px;
  }

  .process-step {
    padding: 32px 28px;
  }

  .step-title {
    font-size: 19px;
  }

  .step-description {
    font-size: 14px;
  }

  .process-cta {
    padding: 40px 45px;
  }

  .process-cta-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .work-process-section {
    padding: 60px 0;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-step {
    padding: 30px 26px;
  }

  .step-icon {
    width: 70px;
    height: 70px;
  }

  .step-icon svg {
    width: 42px;
    height: 42px;
  }

  .step-title {
    font-size: 18px;
  }

  .process-cta {
    padding: 35px 40px;
    gap: 30px;
  }

  .process-cta-content h3 {
    font-size: 24px;
  }

  .process-cta-content p {
    font-size: 15px;
  }

  .process-cta-button {
    padding: 16px 32px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .work-process-section {
    padding: 50px 0;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-step {
    padding: 28px 25px;
  }

  .step-number {
    width: 55px;
    height: 55px;
    font-size: 20px;
    top: -12px;
    left: 25px;
  }

  .step-content {
    margin-top: 25px;
  }

  .step-icon {
    width: 65px;
    height: 65px;
  }

  .step-icon svg {
    width: 38px;
    height: 38px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 14px;
  }

  .process-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 30px;
    gap: 25px;
  }

  .process-cta-content h3 {
    font-size: 22px;
  }

  .process-cta-content p {
    font-size: 15px;
  }

  .process-cta-button {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .work-process-section {
    padding: 40px 0;
  }

  .process-timeline {
    gap: 25px;
  }

  .process-step {
    padding: 26px 22px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
    top: -10px;
    left: 22px;
  }

  .step-content {
    margin-top: 22px;
    gap: 12px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .step-icon svg {
    width: 36px;
    height: 36px;
  }

  .step-title {
    font-size: 17px;
  }

  .step-description {
    font-size: 13px;
  }

  .process-cta {
    padding: 30px 25px;
    gap: 20px;
  }

  .process-cta-content h3 {
    font-size: 20px;
  }

  .process-cta-content p {
    font-size: 14px;
  }

  .process-cta-button {
    padding: 15px 24px;
    font-size: 15px;
  }
}

/* ========== Articles Section ========== */

.articles-section {
  padding: 100px 0;
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.articles-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 102, 2, 0.2) 50%,
    transparent 100%
  );
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.article-card {
  background: var(--color-light);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(23, 23, 23, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  border-color: var(--color-accent);
  opacity: 1;
}

.article-image {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.05);
}

.article-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.article-card:hover .article-image::after {
  opacity: 1;
}

.article-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.article-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 600;
  width: fit-content;
  transition: gap 0.3s ease;
}

.article-card:hover .article-link {
  gap: 12px;
}

.article-link svg {
  transition: transform 0.3s ease;
}

.article-card:hover .article-link svg {
  transform: translateX(3px);
}

.articles-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.articles-view-all-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.articles-view-all-button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  opacity: 1;
  gap: 16px;
}

.articles-view-all-button svg {
  transition: transform 0.3s ease;
}

.articles-view-all-button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .articles-section {
    padding: 80px 0;
  }

  .articles-grid {
    gap: 25px;
  }

  .article-title {
    font-size: 17px;
  }

  .articles-cta {
    margin-top: 45px;
  }

  .articles-view-all-button {
    padding: 16px 36px;
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .articles-section {
    padding: 60px 0;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .article-content {
    padding: 22px;
  }

  .article-title {
    font-size: 16px;
  }

  .article-link {
    font-size: 14px;
  }

  .articles-cta {
    margin-top: 40px;
  }

  .articles-view-all-button {
    padding: 15px 34px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .articles-section {
    padding: 50px 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-content {
    padding: 20px;
    gap: 12px;
  }

  .article-title {
    font-size: 17px;
  }

  .article-link {
    font-size: 15px;
  }

  .articles-cta {
    margin-top: 35px;
  }

  .articles-view-all-button {
    padding: 16px 32px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .articles-section {
    padding: 40px 0;
  }

  .articles-grid {
    gap: 18px;
  }

  .article-content {
    padding: 18px;
    gap: 12px;
  }

  .article-title {
    font-size: 16px;
  }

  .article-link {
    font-size: 14px;
  }

  .articles-cta {
    margin-top: 30px;
  }

  .articles-view-all-button {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}

/* ========== Footer Styles ========== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 80px 0 0;
  margin-left: 320px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-light);
  margin: 0;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--color-light);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-accent);
  opacity: 1;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-menu li a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.footer-menu li a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.footer-menu li a:hover::before {
  width: 100%;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  gap: 20px;
}

.footer-copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-links-bottom {
  text-align: center;
  margin-top: 10px;
}

.footer-links-bottom a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-links-bottom a:hover {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px) {
  .top-navigation {
    left: 280px;
  }

  .site-footer {
    padding: 60px 0 0;
    margin-top: 80px;
    margin-left: 280px;
  }

  .footer-container {
    padding: 0 30px;
  }

  .footer-top {
    gap: 40px;
    padding-bottom: 50px;
  }
}

@media (max-width: 992px) {
  .top-navigation {
    left: 0;
    padding: 20px 30px 20px 90px;
  }

  .site-footer {
    padding: 50px 0 0;
    margin-top: 60px;
    margin-left: 0;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
    margin-top: 50px;
  }

  .footer-container {
    padding: 0 25px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 25px 0;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-description {
    font-size: 14px;
  }

  .footer-menu li a,
  .footer-contact-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 35px 0 0;
    margin-top: 40px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-top {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-title {
    font-size: 17px;
    padding-bottom: 12px;
  }

  .footer-title::after {
    width: 40px;
    height: 2px;
  }

  .footer-social {
    gap: 12px;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-copyright p {
    font-size: 13px;
  }
}

/* ========== Modal Styles ========== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  max-width: 600px;
  width: calc(100% - 40px);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--color-light);
  border-radius: 20px;
  padding: 40px;
  z-index: 1;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 102, 2, 0.3);
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.modal-close:hover {
  background: var(--color-accent);
  color: var(--color-light);
  transform: rotate(90deg);
}

.modal-header {
  padding: 0 0 30px 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.modal-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 16px;
  color: rgba(23, 23, 23, 0.7);
  line-height: 1.5;
}

.modal-form {
  padding: 0;
}

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

.form-group:last-of-type {
  margin-bottom: 30px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px 18px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: var(--color-dark);
  background: rgba(0, 0, 0, 0.03);
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  background: var(--color-light);
  border-color: var(--color-accent);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(23, 23, 23, 0.4);
}

.form-textarea {
  resize: none;
  min-height: 60px;
  max-height: 100px;
}

.modal-form .form-textarea {
  min-height: 50px;
}

.modal-submit {
  width: 100%;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-light);
  background: var(--color-accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.modal-submit:hover {
  background: var(--color-accent-hover);
}

.modal-submit svg {
  transition: transform 0.3s ease;
}

.modal-submit:hover svg {
  transform: translateX(5px);
}

.form-note {
  font-size: 13px;
  color: rgba(23, 23, 23, 0.5);
  text-align: center;
  line-height: 1.5;
  margin-top: 15px !important;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 500px;
    border-radius: 15px;
    padding: 30px;
  }

  .modal-header {
    padding: 0 0 25px 0;
    margin-bottom: 25px;
  }

  .modal-title {
    font-size: 26px;
  }

  .modal-subtitle {
    font-size: 15px;
  }

  .modal-form {
    padding: 0;
  }

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

  .form-label {
    font-size: 13px;
  }

  .form-input,
  .form-textarea {
    padding: 13px 16px;
    font-size: 15px;
  }

  .modal-submit {
    padding: 16px 25px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: calc(100% - 30px);
    max-height: calc(100vh - 60px);
    border-radius: 12px;
    padding: 25px 20px;
  }

  .modal-close {
    width: 36px;
    height: 36px;
    top: 15px;
    right: 15px;
  }

  .modal-header {
    padding: 0 0 20px 0;
    margin-bottom: 20px;
  }

  .modal-title {
    font-size: 22px;
  }

  .modal-subtitle {
    font-size: 14px;
  }

  .modal-form {
    padding: 0;
  }

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

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

  .form-label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .form-input,
  .form-textarea {
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 10px;
  }

  .form-textarea {
    min-height: 80px;
  }

  .modal-submit {
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 10px;
    gap: 10px;
  }

  .form-note {
    font-size: 12px;
  }
}

/* ========== Single House Project Page ========== */

.single-house-page {
  padding: 40px 0 80px;
  background: var(--color-light);
  min-height: calc(100vh - 200px);
}

.house-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  color: rgba(23, 23, 23, 0.6);
  flex-wrap: wrap;
}

.house-breadcrumbs a {
  color: rgba(23, 23, 23, 0.6);
  transition: color 0.3s ease;
}

.house-breadcrumbs a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.breadcrumb-separator {
  color: rgba(23, 23, 23, 0.4);
}

.breadcrumb-current {
  color: var(--color-dark);
  font-weight: 500;
}

.house-header {
  margin-bottom: 40px;
}

.house-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0;
}

.house-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
  align-items: stretch;
}

.house-main-image {
  position: relative;
  display: flex;
  min-height: 0;
}

.house-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.house-image-wrapper > a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.house-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.house-area-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  z-index: 2;
}

.house-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  min-height: 100%;
  align-content: start;
}

.gallery-thumbnail {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  display: block;
}

.gallery-item-medium {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.gallery-item-small {
  aspect-ratio: 1;
}

.gallery-thumbnail:hover {
  border-color: var(--color-accent);
}

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

.gallery-more {
  position: relative;
}

.gallery-more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23, 23, 23, 0.75);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  font-size: 32px;
  font-weight: 700;
  z-index: 1;
  transition: all 0.3s ease;
}

.gallery-more:hover .gallery-more-overlay {
  background: rgba(23, 23, 23, 0.85);
}

.house-config-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  margin-bottom: 60px;
  padding: 40px;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 16px;
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.house-config-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.config-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid rgba(23, 23, 23, 0.1);
  padding-bottom: 0;
}

.config-tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(23, 23, 23, 0.6);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  margin-bottom: -2px;
}

.config-tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.house-price-display {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-main-large {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-dark);
}

.price-per-meter {
  font-size: 15px;
  color: rgba(23, 23, 23, 0.6);
  font-weight: 500;
}

.house-included {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.included-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.included-list li {
  font-size: 15px;
  color: rgba(23, 23, 23, 0.7);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 16px;
}

.house-config-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

.btn-get-calculation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 35px;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.btn-get-calculation:hover {
  background: var(--color-accent-hover);
  opacity: 1;
}

.btn-get-calculation svg {
  transition: transform 0.3s ease;
}

.btn-get-calculation:hover svg {
  transform: translateX(3px);
}

.house-details {
  margin-top: 60px;
}

.house-details-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.house-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(23, 23, 23, 0.8);
}

.house-description p {
  margin-bottom: 20px;
}

.house-description h2,
.house-description h3 {
  color: var(--color-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.house-specs {
  padding: 30px;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.specs-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 25px 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--color-light);
  border-radius: 8px;
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.spec-label {
  font-size: 15px;
  color: rgba(23, 23, 23, 0.6);
  font-weight: 500;
}

.spec-value {
  font-size: 16px;
  color: var(--color-dark);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .house-content-grid {
    grid-template-columns: 1fr 280px;
    gap: 25px;
  }

  .house-config-section {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }

  .house-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .single-house-page {
    padding: 30px 0 60px;
  }

  .house-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .house-title {
    font-size: 36px;
  }

  .house-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .house-gallery {
    grid-template-columns: repeat(2, 1fr);
    order: -1;
  }

  .gallery-item-medium {
    grid-column: 1 / -1;
  }

  .house-config-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .price-value {
    font-size: 36px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .single-house-page {
    padding: 25px 0 50px;
  }

  .house-breadcrumbs {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .house-title {
    font-size: 32px;
  }

  .house-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item-medium {
    grid-column: 1 / -1;
  }

  .house-config-section {
    padding: 25px 20px;
  }

  .config-tabs {
    flex-wrap: wrap;
  }

  .config-tab {
    flex: 1;
    min-width: 100px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .price-value {
    font-size: 32px;
  }

  .price-currency {
    font-size: 20px;
  }

  .house-specs {
    padding: 25px 20px;
  }

  .specs-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .spec-item {
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .single-house-page {
    padding: 20px 0 40px;
  }

  .house-breadcrumbs {
    font-size: 12px;
    gap: 6px;
  }

  .house-title {
    font-size: 28px;
  }

  .house-gallery {
    gap: 10px;
  }

  .gallery-item-medium {
    grid-column: 1 / -1;
  }

  .gallery-more-overlay {
    font-size: 24px;
  }

  .house-area-badge {
    top: 15px;
    right: 15px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .house-config-section {
    padding: 20px 15px;
  }

  .config-tab {
    font-size: 13px;
    padding: 8px 12px;
  }

  .price-value {
    font-size: 28px;
  }

  .price-currency {
    font-size: 18px;
  }

  .price-per-meter {
    font-size: 13px;
  }

  .btn-get-calculation {
    padding: 16px 28px;
    font-size: 15px;
  }

  .house-specs {
    padding: 20px 15px;
  }

  .specs-title {
    font-size: 18px;
  }

  .spec-label,
  .spec-value {
    font-size: 14px;
  }
}

.project-photos-section {
  margin-top: 60px;
  padding: 40px 0;
}

.project-photos-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.project-photos-swiper {
  width: 100%;
  padding: 20px 0 60px;
  position: relative;
}

.project-photos-swiper .swiper-slide {
  height: auto;
}

.project-photo-item {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-photo-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-photos-swiper .swiper-button-prev,
.project-photos-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  color: #1a1a1a;
  margin-top: -25px;
}

.project-photos-swiper .swiper-button-prev:hover,
.project-photos-swiper .swiper-button-next:hover {
  background: #1a1a1a;
  color: #fff;
}

.project-photos-swiper .swiper-button-prev:after,
.project-photos-swiper .swiper-button-next:after {
  font-size: 20px;
  font-weight: 700;
}

.project-photos-swiper .swiper-pagination {
  bottom: 20px;
}

.project-photos-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
}

.project-photos-swiper .swiper-pagination-bullet-active {
  background: #1a1a1a;
}

@media (max-width: 1024px) {
  .project-photos-section {
    margin-top: 50px;
    padding: 30px 0;
  }

  .project-photos-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .project-photos-swiper {
    padding: 15px 0 50px;
  }
}

@media (max-width: 768px) {
  .project-photos-section {
    margin-top: 40px;
    padding: 25px 0;
  }

  .project-photos-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .project-photos-swiper .swiper-button-prev,
  .project-photos-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }

  .project-photos-swiper .swiper-button-prev:after,
  .project-photos-swiper .swiper-button-next:after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .project-photos-section {
    margin-top: 30px;
    padding: 20px 0;
  }

  .project-photos-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .project-photo-item {
    border-radius: 8px;
  }

  .project-photos-swiper {
    padding: 10px 0 40px;
  }

  .project-photos-swiper .swiper-button-prev,
  .project-photos-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .project-photos-swiper .swiper-button-prev:after,
  .project-photos-swiper .swiper-button-next:after {
    font-size: 14px;
  }
}

body.single .main-content-wrapper {
  padding-top: 120px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: rgba(23, 23, 23, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--color-dark);
}

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

.project-single-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0;
}

.project-header-actions {
  display: flex;
  gap: 15px;
}

.project-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(23, 23, 23, 0.2);
  border-radius: 8px;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-action-btn.active {
  background: var(--color-accent);
  color: var(--color-light);
  border-color: var(--color-accent);
}

.project-single-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-bottom: 60px;
}

.project-gallery-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 500px;
  align-items: stretch;
}

.project-main-image {
  position: relative;
  grid-column: 1;
  grid-row: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-main-image a {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
}

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

.project-area-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  z-index: 3;
}

.project-small-image {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
}

.project-small-image a.gallery-thumbnail {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.05);
  cursor: pointer;
  border: 2px solid transparent;
  display: block;
  text-decoration: none;
  position: relative;
}

.project-small-image a.gallery-thumbnail.active {
  border-color: transparent;
}

.project-small-image a.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-gallery-more {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: 100%;
}

.gallery-more-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.05);
  cursor: pointer;
  border: 2px solid transparent;
  display: block;
  text-decoration: none;
}

.gallery-more-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23, 23, 23, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  font-size: 24px;
  font-weight: 700;
  border-radius: 12px;
  z-index: 3;
  pointer-events: none;
}

.project-gallery-section a[data-fslightbox][style*='display: none'] {
  display: none !important;
}

.project-pricing-section {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.project-config-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(23, 23, 23, 0.1);
}

.config-tab {
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(23, 23, 23, 0.6);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: -2px;
}

.config-tab.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.project-price-display {
  margin-bottom: 30px;
}

.price-main {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.price-per-m {
  display: block;
  font-size: 14px;
  color: rgba(23, 23, 23, 0.6);
}

.project-included {
  margin-bottom: 30px;
}

.included-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 15px;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 200px;
}

.included-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: rgba(23, 23, 23, 0.8);
}

.included-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.project-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.btn-calculate {
  width: 100%;
  padding: 16px 24px;
  background: var(--color-accent);
  color: var(--color-light);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-calculate:hover {
  background: var(--color-accent-hover);
}

.btn-calculate svg {
  transition: transform 0.3s ease;
}

.btn-calculate:hover svg {
  transform: translateX(3px);
}

.project-parameters {
  margin-bottom: 60px;
  padding: 40px 0;
}

.parameters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.parameter-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.parameter-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
  border-radius: 8px;
  color: var(--color-dark);
}

.parameter-content {
  flex: 1;
}

.parameter-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.parameter-unit {
  font-size: 16px;
  font-weight: 400;
  color: rgba(23, 23, 23, 0.6);
}

.parameter-label {
  font-size: 14px;
  color: rgba(23, 23, 23, 0.6);
}

.project-description-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  padding: 40px 0;
}

.description-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 25px;
}

.description-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(23, 23, 23, 0.8);
}

.description-text p {
  margin-bottom: 20px;
}

.description-text p:last-child {
  margin-bottom: 0;
}

.description-specs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.spec-label {
  font-size: 14px;
  color: rgba(23, 23, 23, 0.6);
}

.spec-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
}

.project-layouts-section {
  margin-bottom: 60px;
  padding: 40px 0;
}

.layouts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  align-items: stretch;
}

.layout-card {
  background: var(--color-light);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.layout-image-card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}

.layout-image-card a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.layout-image-card a:hover {
  opacity: 0.9;
}

.layout-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.layout-rooms {
  flex: 1;
}

.rooms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rooms-table thead {
  background: #f9f9f9;
}

.rooms-table th {
  padding: 10px;
  text-align: left;
  font-weight: 600;
  color: var(--color-dark);
  border-bottom: 2px solid rgba(23, 23, 23, 0.1);
}

.rooms-table td {
  padding: 8px 10px;
  color: rgba(23, 23, 23, 0.8);
  border-bottom: 1px solid rgba(23, 23, 23, 0.05);
}

.rooms-table tr.rooms-total {
  background: #f9f9f9;
}

.rooms-table tr.rooms-total td {
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: 2px solid rgba(23, 23, 23, 0.1);
  border-bottom: none;
}

.layout-label {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  padding-top: 15px;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
}

.customization-card {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  justify-content: center;
  text-align: center;
}

.customization-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 15px;
}

.customization-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(23, 23, 23, 0.8);
  margin-bottom: 25px;
}

.text-accent {
  color: var(--color-accent);
}

.btn-call-back {
  width: 100%;
  padding: 14px 24px;
  background: var(--color-accent);
  color: var(--color-light);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-call-back:hover {
  background: var(--color-accent-hover);
}

.btn-call-back svg {
  transition: transform 0.3s ease;
}

.btn-call-back:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1200px) {
  .project-single-content {
    grid-template-columns: 1fr 350px;
  }
}

@media (max-width: 1024px) {
  .project-single-content {
    grid-template-columns: 1fr;
  }

  .project-pricing-section {
    position: static;
  }

  .project-gallery-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }

  .project-main-image {
    grid-column: 1;
    grid-row: 1;
    height: 400px;
  }

  .project-small-image {
    grid-column: 1;
    grid-row: 2;
    height: 300px;
  }

  .project-gallery-more {
    grid-column: 1;
    grid-row: 3;
    height: 300px;
  }

  .layouts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-description-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .project-single-title {
    font-size: 32px;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-header-actions {
    width: 100%;
  }

  .project-action-btn {
    flex: 1;
    justify-content: center;
  }

  .project-gallery-section {
    gap: 12px;
  }

  .project-main-image {
    height: 350px;
  }

  .project-small-image,
  .project-gallery-more {
    height: 250px;
  }

  .parameters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .layouts-grid {
    grid-template-columns: 1fr;
  }

  .description-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .project-single-title {
    font-size: 24px;
  }

  .breadcrumbs {
    font-size: 12px;
  }

  .parameters-grid {
    grid-template-columns: 1fr;
  }

  .price-main {
    font-size: 28px;
  }

  .project-config-tabs {
    flex-direction: column;
    gap: 0;
  }

  .config-tab {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(23, 23, 23, 0.1);
    border-left: 3px solid transparent;
    margin-bottom: 0;
  }

  .config-tab.active {
    border-left-color: var(--color-accent);
    border-bottom-color: rgba(23, 23, 23, 0.1);
  }
}

/* ========== Single Post Content Styles ========== */
article[id^='post-'] {
  padding-bottom: 100px;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.8;
  color: var(--color-dark);
  font-size: 16px;
}

.post-content p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

.post-content h2 {
  font-size: 32px;
  border-bottom: 2px solid rgba(255, 102, 2, 0.2);
  padding-bottom: 10px;
}

.post-content h3 {
  font-size: 26px;
}

.post-content h4 {
  font-size: 22px;
}

/* ========== Unordered Lists (ul) ========== */
.post-content ul {
  list-style: none;
  margin: 1.5em 0;
  padding-left: 0;
}

.post-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.8em;
  line-height: 1.8;
  color: rgba(23, 23, 23, 0.9);
}

.post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ========== Ordered Lists (ol) ========== */
.post-content ol {
  list-style: none;
  counter-reset: list-counter;
  margin: 1.5em 0;
  padding-left: 0;
}

.post-content ol li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 0.8em;
  line-height: 1.8;
  color: rgba(23, 23, 23, 0.9);
  counter-increment: list-counter;
}

.post-content ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  color: var(--color-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

/* ========== Nested Lists ========== */
.post-content ul ul,
.post-content ol ol,
.post-content ul ol,
.post-content ol ul {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
  margin-left: 20px;
}

.post-content ul ul li::before {
  width: 6px;
  height: 6px;
  background: rgba(255, 102, 2, 0.6);
}

.post-content ol ol li::before {
  width: 24px;
  height: 24px;
  background: rgba(255, 102, 2, 0.8);
  font-size: 12px;
}

/* ========== List Item Content ========== */
.post-content li p {
  margin-bottom: 0.5em;
}

.post-content li:last-child {
  margin-bottom: 0;
}

/* ========== Links in Lists ========== */
.post-content li a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.post-content li a:hover {
  color: var(--color-accent-hover);
  text-decoration: none;
}

/* ========== Page Container ========== */
.page-container {
  padding-top: 100px;
  padding-bottom: 80px;
  background: var(--color-light);
  min-height: 60vh;
}

/* ========== Post Header Styles ========== */
.post-header {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 0 10px;
  text-align: center;
}

.post-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  color: rgba(23, 23, 23, 0.6);
}

.post-meta > *:not(:last-child)::after {
  content: '•';
  margin-left: 15px;
  color: rgba(23, 23, 23, 0.3);
}

.post-meta a {
  color: var(--color-accent);
  transition: color 0.3s ease;
}

.post-meta a:hover {
  color: var(--color-accent-hover);
}

/* ========== Featured Image ========== */
.post-featured-image {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ========== Post Footer ========== */
.post-footer {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 30px 20px;
  border-top: 2px solid rgba(23, 23, 23, 0.08);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.post-tags strong {
  color: var(--color-dark);
  margin-right: 5px;
}

.post-tags a {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 102, 2, 0.1);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: var(--color-accent);
  color: var(--color-light);
}

/* ========== Post Callback Section ========== */
.post-callback-section {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.post-callback-container {
  background: linear-gradient(135deg, #ff6602 0%, #ff8533 100%);
  border-radius: 16px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 8px 30px rgba(255, 102, 2, 0.2);
  position: relative;
}

.post-callback-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  flex-shrink: 0;
}

.post-callback-icon svg {
  color: #fff;
  width: 44px;
  height: 44px;
}

.post-callback-content {
  flex: 1;
}

.post-callback-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-callback-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
}

.post-callback-button {
  padding: 16px 36px;
  background: #fff;
  color: var(--color-accent);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.post-callback-button:hover {
  background: #f5f5f5;
}

.post-callback-button svg {
  stroke: var(--color-accent);
  transition: transform 0.3s ease;
}

.post-callback-button:hover svg {
  transform: translateX(4px);
}

/* ========== Responsive Styles for Post Content ========== */
@media (max-width: 768px) {
  .page-container {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .post-content {
    padding: 30px 15px;
    font-size: 15px;
  }

  .post-title {
    font-size: 32px;
  }

  .post-content h2 {
    font-size: 26px;
  }

  .post-content h3 {
    font-size: 22px;
  }

  .post-content h4 {
    font-size: 20px;
  }

  .post-content ul li,
  .post-content ol li {
    padding-left: 25px;
  }

  .post-content ol li::before {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .post-callback-section {
    margin: 40px auto 0;
  }

  .post-callback-container {
    flex-direction: column;
    padding: 40px 30px;
    gap: 28px;
    text-align: center;
  }

  .post-callback-icon {
    width: 80px;
    height: 80px;
  }

  .post-callback-icon svg {
    width: 40px;
    height: 40px;
  }

  .post-callback-title {
    font-size: 24px;
  }

  .post-callback-description {
    font-size: 15px;
  }

  .post-callback-button {
    padding: 15px 32px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-container {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .post-content {
    padding: 20px 10px;
    font-size: 14px;
  }

  .post-title {
    font-size: 26px;
  }

  .post-callback-section {
    margin: 30px auto 0;
    padding: 0 10px;
  }

  .post-callback-container {
    padding: 30px 20px;
    gap: 22px;
  }

  .post-callback-icon {
    width: 70px;
    height: 70px;
  }

  .post-callback-icon svg {
    width: 36px;
    height: 36px;
  }

  .post-callback-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .post-callback-description {
    font-size: 14px;
  }

  .post-callback-button {
    padding: 13px 28px;
    font-size: 14px;
  }
}

/* ========== Category Archive Page Styles ========== */
.category-archive-section {
  padding: 120px 0 100px;
  background: var(--color-light);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

.category-archive-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 102, 2, 0.2) 50%,
    transparent 100%
  );
}

.category-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.category-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.category-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--color-dark);
}

.category-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(23, 23, 23, 0.7);
  max-width: 800px;
  margin: 0 auto;
}

.article-meta {
  font-size: 13px;
  color: rgba(23, 23, 23, 0.5);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.article-date {
  display: inline-block;
}

.article-author {
  display: inline-block;
  position: relative;
  padding-left: 8px;
}

.article-author::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(23, 23, 23, 0.3);
}

.category-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.category-pagination .page-numbers {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.category-pagination .page-numbers li {
  margin: 0;
}

.category-pagination .page-numbers a,
.category-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  background: var(--color-light);
  border: 2px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-pagination .page-numbers a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.category-pagination .page-numbers .current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
}

.category-pagination .page-numbers .prev svg,
.category-pagination .page-numbers .next svg {
  width: 16px;
  height: 16px;
}

.no-posts-message {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.no-posts-message h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 15px;
}

.no-posts-message p {
  font-size: 16px;
  color: rgba(23, 23, 23, 0.6);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .category-archive-section {
    padding: 50px 0 80px;
  }

  .category-title {
    font-size: 38px;
  }

  .category-description {
    font-size: 16px;
  }

  .category-header {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .category-archive-section {
    padding: 40px 0 60px;
  }

  .category-label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .category-title {
    font-size: 32px;
  }

  .category-description {
    font-size: 15px;
  }

  .category-header {
    margin-bottom: 0;
    padding: 0 15px;
  }

  .category-pagination {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .category-title {
    font-size: 28px;
  }

  .category-description {
    font-size: 14px;
  }

  .no-posts-message {
    padding: 60px 15px;
  }

  .no-posts-message h2 {
    font-size: 26px;
  }
}

/* ========== Mobile Responsive ========== */

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(23, 23, 23, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: none;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.mobile-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
  gap: 15px;
}

.mobile-header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.mobile-header-logo a {
  display: flex;
  align-items: center;
  opacity: 1;
}

.mobile-header-logo a:hover {
  opacity: 0.8;
}

.mobile-header-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.mobile-header-phone {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-header-phone a {
  color: var(--color-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s ease;
  opacity: 1;
}

.mobile-header-phone a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.mobile-header .mobile-menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  z-index: 1001;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-header .mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-header .mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  transform-origin: center center;
}

.mobile-header .mobile-menu-toggle.active {
  background: rgba(255, 102, 2, 0.15);
}

.mobile-header .mobile-menu-toggle.active span {
  position: absolute;
  left: 50%;
  top: 50%;
}

.mobile-header .mobile-menu-toggle.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.mobile-header .mobile-menu-toggle.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--color-dark);
  z-index: 999;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--color-light);
  transition: all 0.3s ease;
  margin-left: auto;
}

.mobile-menu-close:hover {
  background: var(--color-accent);
  transform: rotate(90deg);
}

.mobile-menu-list {
  list-style: none;
  padding: 15px 0;
  margin: 0;
  flex: 1;
}

.mobile-menu-list li {
  margin: 0;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;
  padding: 16px 25px;
  color: var(--color-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
  opacity: 1;
}

.mobile-menu-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a:active {
  background: rgba(255, 102, 2, 0.08);
  color: var(--color-accent);
  opacity: 1;
  padding-left: 30px;
}

.mobile-menu-list a:hover::before {
  transform: scaleY(1);
}

.mobile-menu-contact {
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-phone {
  color: var(--color-light);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
}

.mobile-menu-phone:hover {
  color: var(--color-accent);
  opacity: 1;
}

.mobile-menu-email {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
}

.mobile-menu-email:hover {
  color: var(--color-light);
  opacity: 1;
}

.mobile-menu-social {
  display: flex;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-social .social-link {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: var(--color-light);
  transition: all 0.3s ease;
  opacity: 1;
}

.mobile-menu-social .social-link:hover {
  background: var(--color-accent);
  opacity: 1;
}

@media (max-width: 992px) {
  .mobile-header {
    display: block;
  }

  .top-navigation {
    display: none !important;
  }

  /* Add padding to main content to account for fixed header */
  .main-content-wrapper {
    padding-top: 70px;
    margin-left: 0;
  }

  /* Hide sidebar on mobile */
  .main-sidebar {
    transform: translateX(-100%);
  }

  /* Hide old mobile menu toggle if exists */
  .mobile-menu-toggle:not(.mobile-header .mobile-menu-toggle) {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-header {
    height: 70px;
  }

  .mobile-header-content {
    padding: 0 15px;
  }

  .mobile-header-logo img {
    height: 46px;
  }

  .mobile-header-phone a {
    font-size: 15px;
  }

  .mobile-menu {
    width: 90%;
    max-width: 350px;
  }

  .main-content-wrapper {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  .mobile-header {
    height: 65px;
  }

  .mobile-header-content {
    padding: 0 12px;
    gap: 10px;
  }

  .mobile-header-logo img {
    height: 42px;
  }

  .mobile-header-phone a {
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-header .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-header .mobile-menu-toggle span {
    width: 24px;
    height: 3px;
  }

  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }

  .mobile-menu-list a {
    font-size: 15px;
    padding: 14px 20px;
  }

  .mobile-menu-phone {
    font-size: 16px;
  }

  .mobile-menu-contact {
    padding: 20px;
  }

  .main-content-wrapper {
    padding-top: 65px;
  }
}

@media (max-width: 380px) {
  .mobile-header {
    height: 60px;
  }

  .mobile-header-phone a {
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-header-logo img {
    height: 38px;
  }

  .mobile-header .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-header .mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .mobile-menu-list a {
    font-size: 14px;
    padding: 12px 18px;
  }

  .main-content-wrapper {
    padding-top: 60px;
  }
}

@media (max-width: 340px) {
  .mobile-header-phone a {
    font-size: 12px;
  }

  .mobile-header-logo img {
    height: 34px;
  }
}

@media (max-width: 320px) {
  .mobile-header-phone {
    display: none;
  }

  .mobile-header-content {
    justify-content: space-between;
  }

  .mobile-header-logo img {
    height: 36px;
  }
}

/* ========== Blog Page Styles ========== */

.blog-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--color-accent) 0%, transparent 70%);
  opacity: 0.05;
  pointer-events: none;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
}

.blog-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.blog-hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-articles-section {
  padding: 80px 0 100px;
  background: var(--color-light);
}

.blog-articles-section .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.no-articles {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
}

.no-articles h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 15px;
}

.no-articles p {
  font-size: 18px;
  color: rgba(23, 23, 23, 0.6);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.blog-pagination .page-numbers {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.blog-pagination .page-numbers li {
  list-style: none;
}

.blog-pagination a,
.blog-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 15px;
  background: var(--color-light);
  border: 2px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-pagination a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
  opacity: 1;
}

.blog-pagination .current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
  pointer-events: none;
}

.blog-pagination .prev,
.blog-pagination .next {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
}

.blog-pagination .prev:hover,
.blog-pagination .next:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.blog-pagination .dots {
  border: none;
  background: transparent;
  pointer-events: none;
  min-width: auto;
  padding: 0 10px;
}

.blog-pagination svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1200px) {
  .blog-hero {
    padding: 100px 0 60px;
  }

  .blog-hero-title {
    font-size: 48px;
  }

  .blog-hero-description {
    font-size: 18px;
  }

  .blog-articles-section {
    padding: 60px 0 80px;
  }

  .blog-articles-section .articles-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .blog-hero {
    padding: 80px 0 50px;
  }

  .blog-hero-title {
    font-size: 40px;
  }

  .blog-hero-description {
    font-size: 16px;
  }

  .blog-articles-section {
    padding: 50px 0 60px;
  }

  .blog-articles-section .articles-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .blog-pagination {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 0 40px;
  }

  .blog-hero-title {
    font-size: 36px;
  }

  .blog-hero-description {
    font-size: 15px;
  }

  .blog-articles-section {
    padding: 40px 0 50px;
  }

  .blog-articles-section .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-pagination a,
  .blog-pagination span {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .no-articles {
    padding: 60px 20px;
  }

  .no-articles h3 {
    font-size: 24px;
  }

  .no-articles p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    padding: 50px 0 30px;
  }

  .blog-hero-title {
    font-size: 28px;
  }

  .blog-hero-description {
    font-size: 14px;
  }

  .blog-articles-section {
    padding: 30px 0 40px;
  }

  .blog-pagination .page-numbers {
    gap: 5px;
  }

  .blog-pagination a,
  .blog-pagination span {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .blog-pagination svg {
    width: 16px;
    height: 16px;
  }

  .no-articles {
    padding: 40px 20px;
  }

  .no-articles h3 {
    font-size: 20px;
  }

  .no-articles p {
    font-size: 14px;
  }
}

/* ========== Project Cards in Taxonomy Pages ========== */
.project-card-taxonomy {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-image-taxonomy {
  position: relative;
}

.project-image-taxonomy .project-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.project-image-taxonomy .project-badge.bestseller {
  background: var(--color-accent);
  color: var(--color-light);
}

.project-image-taxonomy .project-badge.new {
  background: #4caf50;
  color: var(--color-light);
}

.project-image-taxonomy .project-badge.discount {
  background: #ff5722;
  color: var(--color-light);
}

.project-image-taxonomy .project-area {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-dark);
  color: var(--color-light);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.project-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project-id,
.project-area-meta {
  font-size: 13px;
  color: rgba(23, 23, 23, 0.6);
}

.project-details {
  margin: 10px 0;
  font-size: 14px;
  color: rgba(23, 23, 23, 0.7);
}

.project-details p {
  margin: 4px 0;
}

.project-price-preview {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-label {
  font-size: 14px;
  color: rgba(23, 23, 23, 0.6);
}

.price-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .project-price-preview {
    margin-top: 10px;
    padding-top: 10px;
  }

  .price-value {
    font-size: 18px;
  }
}

/* ========== Modern Project Card ========== */
.project-card-modern {
  background: var(--color-light);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(23, 23, 23, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.project-card-modern:hover {
  border-color: var(--color-accent);
}

.project-card-image {
  position: relative;
  width: 100%;
  padding-top: 66.67%; /* 3:2 aspect ratio */
  overflow: hidden;
  background: rgba(23, 23, 23, 0.05);
}

.project-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.project-card-modern:hover .project-card-image::after {
  opacity: 1;
}

.project-card-image a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.project-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card-area-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(23, 23, 23, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-light);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.project-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--color-light);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.project-card-badge-bestseller {
  background: rgba(255, 87, 34, 0.9);
}

.project-card-badge-new {
  background: rgba(76, 175, 80, 0.9);
}

.project-card-badge-discount {
  background: rgba(244, 67, 54, 0.9);
}

.project-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.project-card-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

.project-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-card-title a:hover {
  color: var(--color-accent);
}

.project-card-subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(23, 23, 23, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card-detail {
  margin: 0;
  font-size: 14px;
  color: rgba(23, 23, 23, 0.7);
  line-height: 1.5;
}

.project-card-detail span {
  font-weight: 600;
  color: var(--color-dark);
}

.project-card-configs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-config-btn {
  flex: 1;
  min-width: 80px;
  padding: 10px 16px;
  background: rgba(23, 23, 23, 0.05);
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(23, 23, 23, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.project-config-btn:hover {
  background: rgba(255, 97, 0, 0.1);
  color: var(--color-accent);
}

.project-config-btn.active {
  background: var(--color-accent);
  color: var(--color-light);
  border-color: var(--color-accent);
}

.project-card-pricing {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
}

.project-card-price {
  margin: 0;
}

.project-card-price .price-main {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

.project-card-price-per-m {
  font-size: 14px;
  color: rgba(23, 23, 23, 0.6);
  font-weight: 500;
}

.project-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--color-accent);
  color: var(--color-light);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.project-card-modern:hover .project-card-button {
  gap: 12px;
}

.project-card-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.project-card-modern:hover .project-card-button svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .project-card-body {
    padding: 20px;
    gap: 14px;
  }

  .project-card-title {
    font-size: 20px;
  }

  .project-card-price .price-main {
    font-size: 28px;
  }

  .project-card-button {
    padding: 12px 20px;
    font-size: 15px;
  }

  .project-config-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .project-card-body {
    padding: 16px;
    gap: 12px;
  }

  .project-card-title {
    font-size: 18px;
  }

  .project-card-price .price-main {
    font-size: 24px;
  }

  .project-card-area-badge,
  .project-card-badge {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* ========== Archive Projects Page ========== */

.projects-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  color: var(--color-light);
  text-align: center;
}

.projects-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.projects-hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.projects-filter-section {
  padding: 40px 0;
  background: #f8f8f8;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
}

.projects-filter {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--color-light);
  color: rgba(23, 23, 23, 0.7);
  border: 2px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.filter-btn:hover {
  background: rgba(255, 102, 2, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.filter-btn.active {
  background: var(--color-accent);
  color: var(--color-light);
  border-color: var(--color-accent);
}

.filter-reset {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.filter-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-light);
  color: rgba(23, 23, 23, 0.6);
  border: 2px solid rgba(23, 23, 23, 0.15);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.filter-reset-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.filter-reset-btn:hover {
  background: rgba(255, 102, 2, 0.05);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.filter-reset-btn:hover svg {
  transform: rotate(90deg);
}

.projects-grid-section {
  padding: 60px 0 80px;
}

.projects-loading {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 102, 2, 0.1);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.projects-loading p {
  font-size: 16px;
  color: rgba(23, 23, 23, 0.6);
  font-weight: 500;
}

#projectsGridContainer {
  transition: opacity 0.3s ease;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.no-projects {
  text-align: center;
  padding: 80px 20px;
}

.no-projects h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.no-projects p {
  font-size: 18px;
  color: rgba(23, 23, 23, 0.6);
  margin-bottom: 32px;
}

.btn-back-to-all {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-light);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-back-to-all:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 12px rgba(255, 102, 2, 0.3);
}

.projects-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.projects-pagination .page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.projects-pagination .page-numbers li {
  display: inline-block;
}

.projects-pagination .page-numbers a,
.projects-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  background: var(--color-light);
  border: 2px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.projects-pagination .page-numbers a:hover {
  background: rgba(255, 102, 2, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.projects-pagination .page-numbers .current {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-light);
}

.projects-pagination .page-numbers .prev svg,
.projects-pagination .page-numbers .next svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .projects-hero {
    padding: 60px 0 40px;
  }

  .projects-hero-title {
    font-size: 36px;
  }

  .projects-hero-description {
    font-size: 16px;
  }

  .projects-filter-section {
    padding: 30px 0;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .projects-grid-section {
    padding: 40px 0 60px;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .filter-reset-btn {
    padding: 8px 20px;
    font-size: 13px;
  }

  .filter-reset-btn svg {
    width: 14px;
    height: 14px;
  }

  .projects-pagination .page-numbers a,
  .projects-pagination .page-numbers span {
    min-width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .projects-hero-title {
    font-size: 28px;
  }

  .projects-hero-description {
    font-size: 14px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .filter-group {
    gap: 10px;
  }

  .filter-label {
    font-size: 13px;
  }

  .filter-buttons {
    gap: 6px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .no-projects h3 {
    font-size: 24px;
  }

  .no-projects p {
    font-size: 16px;
  }

  .projects-pagination .page-numbers {
    gap: 6px;
  }

  .projects-pagination .page-numbers a,
  .projects-pagination .page-numbers span {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
    padding: 0 8px;
  }
}

/* ============================================
   Contact Form 7 Styles
   ============================================ */

/* Убираем стандартные стили CF7 */
.wpcf7-form p {
  margin: 0;
}

.wpcf7-form br {
  display: none;
}

/* Стили для полей ввода CF7 */
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-textarea {
  width: 100% !important;
  padding: 15px 18px !important;
  font-size: 16px !important;
  font-family: 'Roboto', sans-serif !important;
  color: var(--color-dark) !important;
  background: rgba(0, 0, 0, 0.03) !important;
  border: 2px solid transparent !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  box-sizing: border-box !important;
}

/* Фокус - элегантный эффект */
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-tel:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-textarea:focus {
  background: var(--color-light) !important;
  border-color: var(--color-accent) !important;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.1) !important;
  outline: none !important;
}

/* Placeholder */
.wpcf7-form .wpcf7-text::placeholder,
.wpcf7-form .wpcf7-tel::placeholder,
.wpcf7-form .wpcf7-email::placeholder,
.wpcf7-form .wpcf7-textarea::placeholder {
  color: rgba(23, 23, 23, 0.4) !important;
}

/* Phone input mask styles */
.wpcf7-form .wpcf7-tel {
  font-variant-numeric: tabular-nums !important;
  letter-spacing: 0.02em !important;
}

/* Textarea - уменьшаем высоту */
.wpcf7-form .wpcf7-textarea {
  resize: none !important;
  min-height: 60px !important;
  max-height: 100px !important;
}

/* Для модального окна - еще меньше */
.modal-form .wpcf7-form .wpcf7-textarea {
  min-height: 40px !important;
  max-height: 100px !important;
}

/* Лейблы в CF7 формах */
.wpcf7-form label {
  display: block !important;
  margin-bottom: 0 !important;
}

.modal-form .wpcf7-form .form-label {
  margin-bottom: 0 !important;
}

/* Отступы для полей ввода */
.wpcf7-form .form-group {
  margin-bottom: 20px !important;
}

.wpcf7-form .form-group:last-of-type {
  margin-bottom: 0 !important;
}

/* Отступы внутри label (между текстом и полем) */
.wpcf7-form label .wpcf7-form-control-wrap {
  display: block !important;
  margin-top: 8px !important;
}

/* Кнопка отправки CF7 */
.wpcf7-form .wpcf7-submit {
  width: 100% !important;
  padding: 18px 30px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--color-light) !important;
  background: var(--color-accent) !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  transition: all 0.3s ease !important;
  margin-top: 10px !important;
  font-family: 'Roboto', sans-serif !important;
}

.wpcf7-form .wpcf7-submit:hover {
  background: var(--color-accent-hover) !important;
}

.wpcf7-form .wpcf7-submit svg {
  transition: transform 0.3s ease !important;
}

.wpcf7-form .wpcf7-submit:hover svg {
  transform: translateX(5px) !important;
}

/* Кнопка в контактной форме */
.callback-form .wpcf7-form .wpcf7-submit {
  text-transform: none !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  padding: 18px 32px !important;
  margin-top: 0 !important;
}

/* Кнопка в модальном окне */
.modal-form .wpcf7-form .wpcf7-submit {
  text-transform: uppercase !important;
  margin-top: 15px !important;
}

/* Скрываем стандартные ошибки валидации */
.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-not-valid {
  border-color: #dc2626 !important;
}

/* Скрываем стандартные сообщения */
.wpcf7-response-output {
  display: none !important;
}

/* Контейнер для всплывающих уведомлений */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

/* Всплывающее уведомление */
.toast {
  position: relative;
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  max-width: 420px;
  pointer-events: auto;
  transform: translateX(450px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(450px);
  opacity: 0;
}

/* Иконка уведомления */
.toast-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Контент уведомления */
.toast-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
}

.toast-message {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Кнопка закрытия */
.toast-close {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: color 0.2s;
}

.toast-close:hover {
  color: var(--color-dark);
}

.toast-close svg {
  width: 16px;
  height: 16px;
}

/* Типы уведомлений */
.toast.success .toast-icon {
  color: #22c55e;
}

.toast.error .toast-icon {
  color: #ef4444;
}

.toast.warning .toast-icon {
  color: #f59e0b;
}

.toast.info .toast-icon {
  color: #3b82f6;
}

/* Прогресс-бар */
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  opacity: 0.3;
  width: 100%;
  transform-origin: left;
  animation: toast-progress 5s linear forwards;
}

@keyframes toast-progress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

/* Адаптивность для уведомлений */
@media (max-width: 768px) {
  .toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .toast {
    min-width: auto;
    max-width: 100%;
  }
}

/* Spinner */
.wpcf7-spinner {
  display: none;
}

.wpcf7-submit.ajax-loader::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Форма в модальном окне */
.modal-form.wpcf7-form {
  padding: 0;
}

.modal-form .form-group {
  margin-bottom: 18px;
}

.modal-form .form-group:last-of-type {
  margin-bottom: 0;
}

.modal-form .form-note {
  margin-top: 15px;
  margin-bottom: 0;
}

/* Callback форма на главной */
.callback-form.wpcf7-form {
  padding: 0;
}

.callback-form .callback-privacy {
  margin-top: 20px;
  margin-bottom: 0;
}

/* Адаптивность для CF7 */
@media (max-width: 768px) {
  .wpcf7-form .wpcf7-text,
  .wpcf7-form .wpcf7-tel,
  .wpcf7-form .wpcf7-email,
  .wpcf7-form .wpcf7-textarea {
    padding: 13px 16px !important;
    font-size: 15px !important;
  }

  .wpcf7-form .wpcf7-textarea {
    min-height: 50px !important;
  }

  .modal-form .wpcf7-form .wpcf7-textarea {
    min-height: 40px !important;
  }

  .wpcf7-form .wpcf7-submit {
    padding: 16px 25px !important;
    font-size: 15px !important;
  }

  .callback-form .wpcf7-form .wpcf7-submit {
    padding: 16px 28px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .wpcf7-form .wpcf7-text,
  .wpcf7-form .wpcf7-tel,
  .wpcf7-form .wpcf7-email,
  .wpcf7-form .wpcf7-textarea {
    padding: 12px 14px !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }

  .wpcf7-form .wpcf7-textarea {
    min-height: 45px !important;
  }

  .modal-form .wpcf7-form .wpcf7-textarea {
    min-height: 40px !important;
  }

  .wpcf7-form .wpcf7-submit {
    padding: 14px 20px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    gap: 10px !important;
  }

  .callback-form .wpcf7-form .wpcf7-submit {
    padding: 15px 24px !important;
    font-size: 15px !important;
  }
}
