        :root {
            --orange-accent: #d56237;
            --blue-primary: #3895c1;
            --light-blue-bg: #dbf0f8;
            --white-bg: #ffffff;
            --text-dark: #2c3e50;
            --text-muted: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html, body { 
            position: relative;
            max-width: 100%; 
            overflow-x: hidden; 
        }      
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            background-color: var(--white-bg);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, .navbar-brand {
            font-weight: 700;
        }
        
        h2 {
            color: var(--blue-primary);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--orange-accent);
        }
        
        .section-padding {
            padding: 60px 0;
        }
        
        .bg-light-blue {
            background-color: var(--light-blue-bg);
        }
        
        /* Логотип */
        /* Эти стили можно удалить или закомментировать */
/*
        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1.2;
        }
        
        .logo-icon {
            color: var(--orange-accent);
            font-size: 2.5rem;
            margin-bottom: 5px;
        }
        
        .logo-text-top {
            color: var(--blue-primary);
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: 2px;
        }
        
        .logo-text-bottom {
            color: var(--orange-accent);
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 4px;
            margin-top: -8px;
        }
        */
        
        /* Навигация */
        .navbar {
            background-color: var(--white-bg);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--orange-accent);
        }
        
        .contact-phone {
            color: var(--orange-accent);
            font-weight: 700;
            font-size: 1.2rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-phone:hover {
            color: var(--blue-primary);
        }
        
        .contact-phone i {
            margin-right: 8px;
        }
        
        /* Hero секция */
        .hero {
            background: linear-gradient(135deg, var(--light-blue-bg) 0%, rgba(219,240,248,0.7) 100%);
            background-size: cover;
            background-position: center;
            padding: 100px 0 80px;
            margin-top: 76px;
        }
        
        .hero h1 {
            color: var(--blue-primary);
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .hero .highlight {
            color: var(--orange-accent);
            display: block;
        }
        
        .usp-badge {
            background-color: var(--white-bg);
            border-radius: 50px;
            padding: 12px 20px;
            margin: 10px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 4px solid var(--orange-accent);
        }
        
        .usp-badge i {
            color: var(--orange-accent);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .btn-primary-custom {
            background-color: var(--orange-accent);
            border: none;
            color: white;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(213,98,55,0.3);
        }
        
        .btn-primary-custom:hover {
            background-color: #c5572f;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(213,98,55,0.4);
            color: white;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--blue-primary);
            color: var(--blue-primary);
            padding: 13px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--blue-primary);
            color: white;
        }
        
        /* Карта */
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 400px;
            border: 3px solid var(--white-bg);
        }
        
        .address-bar {
            background-color: var(--white-bg);
            border-radius: 15px;
            padding: 15px 20px;
            margin-top: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid rgba(56,149,193,0.1);
            text-align: center;
            font-size: 1.1rem;
        }
        
        .address-bar i {
            color: var(--orange-accent);
            margin-right: 10px;
        }
        
        .distance-card {
            background-color: var(--white-bg);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 15px;
            border: 1px solid rgba(56,149,193,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .distance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(213,98,55,0.15);
            border-color: var(--orange-accent);
            background: linear-gradient(135deg, #fff 0%, var(--light-blue-bg) 100%);
        }
        
        .distance-card i {
            color: var(--orange-accent);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: transform 0.3s ease;
        }
        
        .distance-card:hover i {
            transform: scale(1.2);
        }
        
        /* Карточки домов - горизонтальные */
        .house-card-horizontal {
            background-color: var(--white-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            border: 1px solid rgba(56,149,193,0.1);
            display: flex;
            flex-direction: column;
        }
        
        .house-card-horizontal:hover {
            box-shadow: 0 15px 40px rgba(213,98,55,0.15);
        }
        
        .house-img-container {
            position: relative;
            height: 300px;
            overflow: hidden;
        }
        
        .house-main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s;
        }
        
        .house-card-horizontal:hover .house-main-img {
            opacity: 0;
        }
        
        .house-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .house-card-horizontal:hover .house-carousel {
            opacity: 1;
        }
        
        .carousel-inner, .carousel-item {
            height: 100%;
        }
        
        .carousel-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .house-img-overlay {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--orange-accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 10;
        }
        
        .carousel-control-prev, .carousel-control-next {
            z-index: 10;
        }
        
        .house-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .house-title {
            color: var(--blue-primary);
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .house-price {
            color: var(--orange-accent);
            font-size: 1.6rem;
            font-weight: 700;
            margin: 15px 0;
        }
        
        .house-price small {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 400;
        }
        
        .house-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            flex: 1;
        }
        
        .house-features li {
            margin-bottom: 10px;
        }
        
        .house-features i {
            color: var(--blue-primary);
            margin-right: 10px;
            width: 20px;
        }
        
        .house-content .btn-primary-custom {
            margin-top: auto;
            width: 100%;
        }
        
        /* Удобства */
        .amenity-item {
            background-color: var(--white-bg);
            border-radius: 15px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            border: 1px solid rgba(56,149,193,0.1);
        }
        
        .amenity-item:hover {
            box-shadow: 0 8px 25px rgba(213,98,55,0.15);
            border-color: var(--orange-accent);
        }
        
        .amenity-icon {
            color: var(--orange-accent);
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .amenity-title {
            color: var(--blue-primary);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Галерея */
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            cursor: pointer;
            margin-bottom: 20px;
            display: block;
        }
        
        .gallery-item:hover {
            transform: scale(1.02);
        }
        
        .gallery-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        /* Lightbox custom */
        .lightbox {
            border-radius: 15px !important;
        }
        
        /* Отзывы */
        .review-card {
            background-color: var(--white-bg);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            border: 1px solid rgba(56,149,193,0.1);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        
        .review-author {
            color: var(--blue-primary);
            font-weight: 600;
        }
        
        /* Форма бронирования */
        .booking-form {
            background-color: var(--white-bg);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border: 2px solid var(--orange-accent);
        }
        
        .form-control, .form-select {
            border-radius: 50px;
            padding: 12px 20px;
            border: 1px solid #dee2e6;
            background-color: #f8f9fa;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--orange-accent);
            box-shadow: 0 0 0 0.2rem rgba(213,98,55,0.25);
        }
        
        .input-group-text {
            border-radius: 50px 0 0 50px;
            background-color: var(--light-blue-bg);
            border: 1px solid #dee2e6;
            color: var(--blue-primary);
        }
        
        /* FAQ */
        .accordion-button:not(.collapsed) {
            background-color: var(--light-blue-bg);
            color: var(--blue-primary);
        }
        
        .accordion-button:focus {
            border-color: var(--orange-accent);
            box-shadow: 0 0 0 0.2rem rgba(213,98,55,0.25);
        }
        
        /* Footer */
        .footer {
            background-color: var(--blue-primary);
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--orange-accent);
        }
        
        .footer-phone {
            font-size: 1.5rem;
            font-weight: 700;
            color: white !important;
        }
        
        .footer-logo {
            max-width: 150px;
            margin-bottom: 20px;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .house-card-horizontal {
                flex-direction: column;
            }
            
            .house-img-container {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem !important;
            }
            
            .hero {
                padding: 80px 0 60px;
                margin-top: 60px;
            }
            
            .section-padding {
                padding: 40px 0;
            }
            
            .navbar-brand {
                font-size: 1rem;
            }
            /* Удаляем старые стили для текстового логотипа */
    /*
            .logo-icon {
                font-size: 1.8rem;
            }
            
            .logo-text-top {
                font-size: 1rem;
            }
            
            .logo-text-bottom {
                font-size: 1.2rem;
            }
            */
            .navbar-brand img {
                max-height: 50px !important; /* Уменьшаем логотип на мобильных */
            }
            
            .contact-phone {
                font-size: 0.9rem;
            }
            
            .booking-form {
                padding: 25px;
            }
            
            .map-container {
                height: 300px;
            }
            
            .amenity-item {
                padding: 15px 10px;
            }
        }
        
        @media (max-width: 576px) {
            .usp-badge {
                font-size: 0.9rem;
                padding: 10px 15px;
            }
            
            .btn-primary-custom, .btn-outline-custom {
                padding: 12px 25px;
                font-size: 1rem;
                width: 100%;
                margin-bottom: 10px;
            }
            
            .house-price {
                font-size: 1.3rem;
            }
        }
        
        .sticky-top {
            top: 20px;
        }