:root {
            --orange: #FF6533;
            --dark: #1a1a1a;
            --gray: #666666;
            --light-gray: #f5f5f5;
            --text-dark: #2c2c2c;
            --white: #ffffff;
            --light-bg: #fafafa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--light-bg);
            overflow-x: hidden;
        }

        .container {
            max-width: 1140px;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            padding: 2px 0;
            background: none;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 5px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
        }

        .logo {
            font-size: 32px;
            font-weight: 800;
            color: var(--orange);
            text-decoration: none;
            letter-spacing: -2px;
            display: inline-block;
        }
        .logo img{
            object-fit: cover;
            height: 80px;
            width: 300px;
        }
        .nav-menu {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
            padding: 0;
            align-items: center;
            justify-content: center;
        }

        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--orange);
        }
        .header-phone-burger{
            display: flex;
            gap: 20px;
            width: 100%;
            justify-content: flex-end;
            padding-right: 10px;
        }
        .btn-phone {
            background: var(--dark);
            color: white;
            padding: 6px 40px;
            border: none;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
            text-decoration: none;
        }

        .btn-phone:hover {
            background: #333;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            padding: 50px 20px 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-menu li {
            margin-bottom: 15px;
        }

        .mobile-nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-menu a:hover {
            color: var(--orange);
        }

        /* Hero Section */
        .hero {
            padding: 0 0 100px;
            position: relative;
            color: white;
            text-align: center;
            background: url("img/main-bg.jpg") no-repeat top center;
            background-size: 1400px;
            min-height: 910px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            margin: 0 auto;
            padding: 0 20px;
            margin-top: 65px;
        }

        .hero h1 {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.2;
            color: #000;
        }

        .hero p {
            font-size: 28px;
            margin-bottom: 35px;
            line-height: 1.5;
            font-weight: 400;
            color: #000;
        }

        .hero .btn-orange{
            margin-top: 20%;
        }

        .btn-orange {
            background: var(--orange);
            color: white;
            padding: 14px 40px;
            border: none;
            border-radius: 25px;
            font-size: 20px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
        }

        .btn-orange:hover {
            background: #ff5020;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 101, 51, 0.3);
            color: white;
        }

        /* Section Common Styles */
        .section {
            padding: 70px 0;
        }

        .section-white {
            background: white;
        }

        .section-gray {
            background: var(--light-gray);
        }

        .section-title {
            font-size: 44pt;
            font-weight: 300;
            margin-bottom: 5px;
            text-align: left;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 26px;
            color: var(--orange);
            margin-bottom: 50px;
            text-align: left;
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
            text-indent: 30px;
        }

        /* About Section */
        .about-section {
            padding: 70px 0;
            background: white;
        }
        .about-section .section-subtitle{
            margin-bottom: 15px;
        }
        .about-content {
            display: flex;
            gap: 60px;
            align-items: flex-start;
            max-width: 1140px;
            margin: 0 auto;
        }

        .about-text {
            flex: 1;
        }

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

        .about-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 20px;
            line-height: 1.6;
            gap: 10px;
        }
        .about-list li img{
            width: 35px;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .stat-item {
            background: var(--light-gray);
            padding: 20px 15px;
            border-radius: 8px;
            text-align: center;
        }

        .stat-value {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 12px;
            color: var(--gray);
            line-height: 1.3;
        }

        .about-images {
            flex: 0 0 280px;
            display: flex;
            gap: 15px;
        }

        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .about-image img {
            width: 100%;
            object-fit: cover;
            display: block;
        }

        /* Founder Section */
        .founder-section {
            padding: 70px 0 50px;
            background: #fff;
        }

        .founder-content {
            display: flex;
            gap: 50px;
            align-items: flex-start;
            max-width: 1140px;
            margin: 0 auto;
        }

        .founder-photo {
        }

        .founder-photo img {
            width: 300px;
            max-width: 100%;
        }

        .founder-info {
            flex: 1;
        }

        .founder-info h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .founder-name {
            color: var(--orange);
            font-size: 20px;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .founder-text {
            font-size: 20px;
            line-height: 1.7;
            color: #000;
            margin-bottom: 15px;
        }

        .read-more {
            color: var(--orange);
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        /* Projects Section */
        .projects-section {
            padding: 70px 0;
            background: var(--light-gray);
        }

        .projects-list {
            max-width: 1140px;
            margin: 0 auto;
            overflow: hidden;
        }

        .project-item {
            display: flex;
            align-items: stretch;
            margin-bottom: 30px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .project-info-left {
            background: white;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 350px;
        }

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

        .project-details {
            font-size: 20px;
            color: #000;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .detail-item{
            margin-bottom: 40px;
        }
        .detail-name{
            color: #777;
            font-weight: 500;
        }
        .detail-description{
            color: #000;
            font-weight: 500;
        }
        .project-details p {
            margin-bottom: 8px;
        }

        .project-btn {
            background: var(--orange);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            align-self: flex-start;
        }

        .project-btn:hover {
            background: #ff5020;
            color: white;
        }

        .project-slider {
            flex: 1;
            position: relative;
            min-width: 0;
            overflow: hidden;
        }

        .project-swiper {
            width: 100%;
            height: 100%;
        }

        .project-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .project-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .project-swiper .swiper-button-next,
        .project-swiper .swiper-button-prev {
            color: white;
            background: rgba(0,0,0,0.3);
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

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

        .project-swiper .swiper-pagination-bullet {
            background: white;
            opacity: 0.5;
        }

        .project-swiper .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--orange);
        }

        /* Design Types Section */
        .design-section {
            padding: 70px 0;
            background: #fff;
        }
        /*
        .design-section .container{
            background: url('/assets/images/7k-bg.png') no-repeat top right;
        }
        */
        .design-intro {
            text-align: left;
            max-width: 740px;
            margin: 0 0 45px;
        }

        .design-intro p {
            font-size: 20px;
            color: #000;
            padding-left: 40px;
            line-height: 1.7;
        }

        .design-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .design-card {
            background: white;
            padding: 35px 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
            transition: all 0.3s;
        }

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

        .design-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .design-price {
            font-size: 28px;
            color: var(--orange);
            font-weight: 700;
            margin: 20px 0;
        }

        .design-duration {
            font-size: 20px;
            color: #777;
            margin-bottom: 25px;
        }

        .design-btn {
            background: var(--orange);
            color: white;
            padding: 10px 30px;
            border: none;
            border-radius: 25px;
            font-size: 20px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
        }

        .design-btn:hover {
            background: #ff5020;
            color: white;
        }

        /* Design Sliders */
        .design-sliders {
            margin-top: 50px;
        }

        .design-slider-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            aspect-ratio: 1 / 1;
        }

        .design-swiper {
            width: 100%;
            height: 100%;
        }

        .design-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .design-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .design-swiper .swiper-button-next,
        .design-swiper .swiper-button-prev {
            color: white;
            background: rgba(0,0,0,0.3);
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

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

        .design-swiper .swiper-pagination-bullet {
            background: white;
            opacity: 0.5;
        }

        .design-swiper .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--orange);
        }

        /* Inspection Section */
        .inspection-section {
            padding: 70px 0;
            background: white;
        }

        .inspection-images {
            display: flex;
            gap: 15px;
        }

        .inspection-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .inspection-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

        .inspection-info {
        }

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

        .inspection-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 20px;
            line-height: 1.6;
            gap: 10px;
        }

        .inspection-list li img {
            width: 35px;
        }

        /* Why Choose Us Section */
        .why-section {
            padding: 70px 0;
            background: var(--light-gray);
        }

        .why-content {
            display: flex;
            gap: 60px;
            align-items: flex-start;
            max-width: 1140px;
            margin: 0 auto;
        }

        .why-info {
            flex: 1;
        }

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

        .why-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 20px;
            line-height: 1.6;
            gap: 10px;
        }

        .why-list li img {
            width: 35px;
        }

        .why-price-block {
            flex: 0 0 280px;
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            text-align: center;
        }

        .why-price-text {
            font-size: 20px;
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .why-price-value {
            font-size: 50px;
            color: var(--orange);
            font-weight: 700;
            line-height: 1;
            white-space: nowrap;
        }

        /* Estimate Section */
        .estimate-section {
            padding: 70px 0;
            background: white;
        }

        .estimate-intro {
            text-align: left;
            max-width: 840px;
            margin: 0 0 45px;
            padding-left: 40px;
        }

        .estimate-intro p {
            font-size: 20px;
            color: #000;
            line-height: 1.7;
        }

        .estimate-plans {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .estimate-plan {
            border-radius: 12px;
            text-align: center;
            overflow: hidden;
            transition: all 0.3s;
        }

        .estimate-plan:hover {
            transform: translateY(-5px);
        }

        .estimate-plan img {
            width: 100%;
        }

        .estimate-plan-content {
            padding: 25px;
        }

        .estimate-plan h3 {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .estimate-plan .duration {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .estimate-btn {
            background: var(--orange);
            color: white;
            padding: 10px 30px;
            border: none;
            border-radius: 25px;
            font-size: 20px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
        }

        .estimate-btn:hover {
            background: #ff5020;
            color: white;
        }

        /* Process Section - UPDATED */
        .process-section {
            padding: 70px 0;
            background: var(--light-gray);
        }

        .process-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 45px;
        }

        .process-steps {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-step {
            position: relative;
            margin-bottom: 60px;
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        /* Четные шаги - сдвиг вправо */
        .process-step.shifted {
            margin-left: 80px;
        }

        .step-number {
            font-size: 90px;
            font-weight: 800;
            color: var(--orange);
            line-height: 1;
            flex-shrink: 0;
            width: 100px;
            position: relative;
        }

        .step-arrow {
            position: absolute;
            left: 20px;
            top: 100%;
            width: 80px;
            height: 80px;
            margin-top: -10px;
            opacity: 0.3;
        }

        /* Стрелки у четных шагов отзеркалены */
        .process-step.shifted .step-arrow {
            transform: scaleX(-1);
        }

        .process-step:last-child .step-arrow {
            display: none;
        }

        .step-content {
            flex: 1;
            padding-top: 10px;
        }

        .step-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .step-content p {
            font-size: 16px;
            color: var(--text-dark);
            line-height: 1.7;
            margin: 0;
        }

        /* Social Section */
        .social-section {
            padding: 70px 0;
            background: white;
        }

        .social-content {
            display: flex;
            gap: 50px;
            align-items: center;
            max-width: 1140px;
            margin: 0 auto;
        }

        .social-info {
            flex: 1;
        }

        .social-info p {
            font-size: 20px;
            line-height: 1.7;
            color: #000;
        }

        .social-images {
            flex: 0 0 350px;
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .social-image {
            border-radius: 12px;
            overflow: hidden;
        }

        .social-image img {
            width: 100%;
        }

        /* Review Section */
        .review-section {
            padding: 70px 0;
            background: var(--light-gray);
        }

        .review-content {
            display: flex;
            gap: 50px;
            align-items: flex-start;
            max-width: 1140px;
            margin: 0 auto 40px;
        }

        .review-avatar {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

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

        .review-info {
            flex: 1;
        }

        .review-header {
            margin-bottom: 20px;
        }

        .review-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .review-date {
            color: var(--gray);
            font-size: 16px;
        }

        .review-text {
            font-size: 18px;
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .review-btn-wrapper {
            text-align: center;
            margin-top: 40px;
        }

        .review-all-btn {
            background: var(--orange);
            color: white;
            padding: 14px 40px;
            border: none;
            border-radius: 25px;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
        }

        .review-all-btn:hover {
            background: #ff5020;
            color: white;
            transform: translateY(-2px);
        }

        /* Partners Section */
        .partners-section {
            padding: 70px 0;
            background: var(--light-gray);
        }

        .partners-intro {
            text-align: left;
            max-width: 740px;
            margin: 0 0 40px;
            font-size: 20px;
            padding-left: 40px;
        }

        .partners-intro p {
            font-size: 20px;
            color: #000;
            line-height: 1.7;
        }

        .partner-logo {
            width: 100%;
            border-radius: 15px;
        }

        .partner-logo:hover {
            opacity: 0.7;
        }

        /* Map Section */
        .map-section {
            padding: 70px 0;
            background: var(--light-gray);
        }

        .map-container {
            height: 400px;
            background: #ddd;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

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

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 45px 0 30px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 40px;
            margin-bottom: 35px;
        }

        .footer-left {
            text-align: left;
        }

        .footer-center {
            display: flex;
            justify-content: center;
        }

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

        .footer-logo {
            height: 300px;
            width: auto;
            max-width: 100%;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
        }

        .social-icon:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            color: white;
        }

        .footer-phone {
            font-size: 16px;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
        }

        .footer-email {
            font-size: 13px;
            color: #aaa;
        }

        .footer-email a {
            color: #aaa;
            text-decoration: none;
        }

        .footer-address {
            font-size: 13px;
            color: #aaa;
            line-height: 1.6;
        }

        .footer-bottom {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }

        .footer-bottom p {
            font-size: 12px;
            color: #aaa;
            margin-bottom: 8px;
        }

        .footer-address-small {
            font-size: 12px;
            color: #888;
            line-height: 1.6;
        }

        /* Chat Button */
        .chat-button-wrapper {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.chat-button-wrapper.visible {
    opacity: 1;
    visibility: visible;
}

.chat-button {
    width: 55px;
    height: 55px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(255, 101, 51, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
}

.chat-button .close-icon {
    display: none;
}

.chat-button-wrapper.active .chat-button {
    background: white;
    color: #333;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.chat-button-wrapper.active .chat-button .chat-icon {
    display: none;
}

.chat-button-wrapper.active .chat-button .close-icon {
    display: block;
}

.chat-sub-button {
    position: absolute;
    bottom: 0;
    right: 5px; /* было 0, теперь центрируем (55-45)/2 = 5px */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    text-decoration: none;
}

.phone-button {
    background: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.telegram-button {
    background: #0088cc;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.chat-button-wrapper.active .phone-button {
    opacity: 1;
    visibility: visible;
    bottom: 65px;
}

.chat-button-wrapper.active .telegram-button {
    opacity: 1;
    visibility: visible;
    bottom: 120px;
}

.chat-sub-button:hover {
    transform: scale(1.1);
}

        /* Responsive */
        @media (max-width: 991px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 34px;
            }

            .section-title,
            .section-subtitle {
                font-size: 28px;
            }

            .about-content,
            .founder-content,
            .social-content,
            .why-content {
                flex-direction: column;
            }

            .about-images,
            .social-images {
                flex-direction: row;
                justify-content: center;
                width: 100%;
                flex: auto;
            }

            .inspection-images {
                margin-bottom: 30px;
            }

            .why-price-block {
                flex: auto;
                width: 100%;
            }

            .project-item {
                flex-direction: column;
                max-height: none;
            }

            .project-info-left {
                flex: 1;
                max-width: 100%;
            }

            .project-swiper {
                height: 300px;
            }

            .project-swiper .swiper-slide {
                height: 300px;
            }

            .design-cards,
            .estimate-plans {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-left,
            .footer-right {
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .step-number {
                font-size: 60px;
                width: 70px;
            }

            .step-arrow {
                width: 60px;
                height: 60px;
                left: 10px;
            }

            /* Уменьшаем сдвиг на планшетах */
            .process-step.shifted {
                margin-left: 40px;
            }

            .design-sliders .row {
                gap: 30px;
            }
        }

        @media (max-width: 767px) {
            .hero {
                padding: 20px 0 60px;
                min-height: auto;
            }

            .hero h1 {
                font-size: 28px;
            }
            .project-details {
                margin-bottom: 0;
            }
            .detail-item{
                margin-bottom: 10px;
            }
            .btn-orange {
                font-size: 18px;
            }
            .section {
                padding: 50px 0;
            }
            .btn-phone{
                padding: 6px 10px;
            }
            
            .section-title{
                font-size: 24px;
            }
            .section-subtitle{
                font-size: 20px;
                text-indent: 0;
            }
            
            .founder-section{
                padding-bottom: 50px;
            }
            .founder-photo {
                width: 180px;
                margin: 0 auto;
            }

            .social-images {
                flex-direction: column;
                align-items: center;
            }

            .inspection-images {
                flex-direction: column;
                margin-bottom: 30px;
            }

            .review-content {
                flex-direction: column;
                align-items: center;
            }

            .review-avatar {
                width: 150px;
                height: 150px;
                margin-bottom: 20px;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .project-swiper {
                height: 250px;
            }

            .project-swiper .swiper-slide {
                height: 250px;
            }

            .step-number {
                font-size: 50px;
                width: 60px;
            }

            .step-arrow {
                width: 50px;
                height: 50px;
            }

            .process-step {
                margin-bottom: 50px;
            }

            /* Убираем сдвиг на мобильных */
            .process-step.shifted {
                margin-left: 0;
            }

            .process-step.shifted .step-arrow {
                transform: none;
            }
        }
/* Fancybox Modal Custom Styles */
.modal-content-custom {
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.modal-content-custom .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

.custom-form label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.custom-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.custom-form .form-control:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 101, 51, 0.1);
}

.custom-form .btn-submit {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.fancybox__container {
    z-index: 10000;
}

@media (max-width: 768px) {
    .modal-content-custom {
        padding: 30px 20px;
    }
    
    .modal-content-custom .modal-title {
        font-size: 20px;
    }
}
