:root {
    --orange: #FF6B00;
    --orange-dark: #E05D00;
}
a{
    text-decoration: none;
}

/* Hero section styles */
.hero-section {
    background: url('../images/utp_back2.jpg') 50% 0 no-repeat #000000;
    overflow: hidden;
    position: relative;
    color: white;
    padding-bottom: 100px;
    overflow: hidden;


}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.container {
    position: relative;
    z-index: 1;
    height: 100%;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-container {
    background-color: white;
    padding: 10px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: -10px;
}

.logo {
    height: 120px;
    display: block;
    margin: 0 auto;
}

.navbar-toggler {
    border: none;
    font-size: 2rem;
    color: white;
    padding: 0.5rem;
    background: transparent;
    margin-top: 10px;
}

.hero-content {
    max-width: 600px;
    margin-top: 50px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.stats-box {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-around;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 15px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: white;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.stat-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.3;
}

.btn-custom {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
}

/* Invest section styles */
.invest-section {
    position: relative;
    margin-top: -150px;
    z-index: 2;
    padding: 60px 0;
}

.invest-container {
    width: 100%;
    margin: 0 auto;
    padding: 60px 30px;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    text-align:center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
}

.invest-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.invest-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.invest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--orange);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.card-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--orange);
}

.card-explanation {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
    margin: 15px 0 20px;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid var(--orange);
}

.btn-card {
    border-color: var(--orange);
    color: var(--orange);
    border-width: 2px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.btn-card:hover {
    background-color: var(--orange);
    color: white;
}

/* Off-canvas menu styles */
.offcanvas {
    background-color: rgba(0, 0, 0, 0.95);
    width: 300px !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.offcanvas-logo-container {
    width: 100%;
    max-width: 180px;
    margin-bottom: 20px;
}

.logo-offcanvas {
    width: 100%;
    height: auto;
    display: block;
}

.offcanvas-body {
    padding: 0 20px;
}

.navbar-nav {
    flex-direction: column;
}

.nav-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.nav-link {
    color: white;
    font-size: 1.2rem;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--orange);
    padding-left: 10px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .main-title, .section-title {
        font-size: 2rem;
    }

    .invest-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .main-title, .section-title {
        font-size: 1.8rem;
    }

    .logo {
        height: 100px;
    }

    .logo-container {
        padding: 8px;
        border-radius: 0 0 15px 15px;
    }

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

    .stats-box {
        padding: 20px 15px;
    }

    .stat-item {
        min-width: calc(50% - 12px);
        padding: 12px 8px;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .invest-cards {
        gap: 20px;
    }

    .invest-card {
        padding: 25px;
    }

    .invest-container {
        padding: 40px 20px;
    }

    .invest-section {
        margin-top: -100px;
    }
}

@media (max-width: 576px) {
    .main-title, .section-title {
        font-size: 1.6rem;
    }

    .logo {
        height: 80px;
    }

    .stat-item {
        min-width: 100%;
    }

    .offcanvas {
        width: 280px !important;
    }

    .offcanvas-logo-container {
        max-width: 150px;
    }

    .invest-card {
        min-width: 100%;
    }

    .invest-container {
        padding: 30px 15px;
        border-radius: 15px 15px 0 0;
    }

    .invest-section {
        margin-top: -80px;
    }

    .card-explanation {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
}

/* House Types Section */

.house-types-section {
    background-image: url('../images/nature2.jpg');
    background-color: rgba(255, 245, 230, 0.1); /* Светло-оранжевая подложка */
    background-size: cover;
    background-blend-mode: overlay;
    padding: 80px 0;
    position: relative
}

.house-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.house-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.house-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.house-gallery {
    position: relative;
}

.main-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
}

.thumbnails {
    display: flex;
    padding: 10px;
    gap: 10px;
    background: #f1f1f1;
}

.thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnails img:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.house-info {
    padding: 25px;
}

.house-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.house-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 15px;
}

.house-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.spec-item i {
    color: var(--orange);
}

.house-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-house {
    background-color: var(--orange);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-house:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
}

/* Gallery Modal Styles */
#galleryModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

#galleryModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#galleryModal .modal-body {
    padding: 20px;
}

#galleryModal img {
    max-height: 60vh;
    width: auto;
    margin: 0 auto;
    border-radius: 10px;
}

.modal-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

.modal-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.modal-thumbnails img:hover,
.modal-thumbnails img.active {
    border-color: var(--orange);
    transform: scale(1.1);
}

/* Magnify Icon on Main Photo */
.main-photo {
    position: relative;
}

.main-photo::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.main-photo:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .house-types {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

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

    #galleryModal img {
        max-height: 50vh;
    }
}

@media (max-width: 576px) {
    .house-types {
        grid-template-columns: 1fr;
    }

    .house-specs {
        flex-direction: column;
        gap: 10px;
    }

    #galleryModal .modal-dialog {
        margin: 10px;
    }

    #galleryModal img {
        max-height: 40vh;
    }
}

/* Income Section */
.income-section {
    background-color: #fff;
    position: relative;
}

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

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

.income-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 15px;
}

.income-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.income-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--orange);
}

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

.income-card-icon {
    font-size: 1.8rem;
    color: var(--orange);
    min-width: 40px;
}

.income-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.income-card-text {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .income-container {
        padding: 40px 20px;
    }

    .income-header {
        text-align: center;
        margin-bottom: 30px;
    }

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

@media (max-width: 768px) {
    .income-cards {
        grid-template-columns: 1fr;
    }

    .income-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .income-container {
        padding: 30px 15px;
    }

    .income-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .income-card-icon {
        margin-bottom: 15px;
    }
}

/* Transparency Section */
.transparency-section {
    background-image: url('../images/honesty.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
    color: white;
}

.transparency-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.transparency-content {
    position: relative;
    z-index: 1;
}

.transparency-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.transparency-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.transparency-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.transparency-card-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.transparency-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.transparency-card-text {
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .transparency-section {
        padding: 80px 0;
        background-attachment: scroll;
    }

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

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

@media (max-width: 576px) {
    .transparency-cards {
        grid-template-columns: 1fr;
    }

    .transparency-card {
        padding: 25px 20px;
    }
}

/* Management Section */
.management-section {
    background-color: #f8f9fa;
    position: relative;
}

.management-header {
    padding-right: 30px;
}

.management-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0 30px;
    line-height: 1.6;
}

.management-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.management-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--orange);
}

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

.management-card-icon {
    font-size: 1.8rem;
    color: var(--orange);
    min-width: 40px;
    margin-top: 5px;
}

.management-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.management-card-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.management-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.management-stats .stat-item {
    text-align: center;
}

.management-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.management-stats .stat-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .management-header {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .management-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .management-card {
        flex-direction: column;
        gap: 15px;
    }

    .management-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Location Section */
.location-section {
    background-color: #fff;
    position: relative;
}

.location-content {
    padding-right: 30px;
}
.location-content  a{
    color: var(--orange);
    text-decoration: none;
}
.location-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.location-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.location-stats .stat-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px 20px;
    min-width: 120px;
    text-align: center;
    border-left: 3px solid var(--orange);
}

.location-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.location-stats .stat-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.location-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.location-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.location-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--orange);
    font-size: 1.2rem;
}

.location-map {
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Responsive */
@media (max-width: 992px) {
    .location-content {
        padding-right: 0;
    }

    .location-stats {
        gap: 15px;
    }

    .location-stats .stat-item {
        flex: 1;
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .location-map {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .location-stats .stat-item {
        min-width: 100%;
    }

    .location-features li {
        font-size: 0.95rem;
    }
}

/* Glampings Section */
.glampings-section {
    background-color: #f8f9fa;
}

.glamping-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.glamping-gallery {
    height: 100%;
}

.glamping-gallery .main-photo {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    height: 250px;
}

.glamping-gallery .main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glamping-gallery .thumbnails {
    display: flex;
    gap: 10px;
}

.glamping-gallery .thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glamping-gallery .thumbnails img:hover {
    transform: scale(1.1);
}
.glamping-info a{
    text-decoration: none;
}
.glamping-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;

}

.glamping-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.glamping-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.glamping-specs i {
    color: var(--orange);
    font-size: 1.2rem;
    min-width: 20px;
}

.glamping-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.glamping-facilities .badge {
    background: rgba(255, 107, 0, 0.1);
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.glamping-facilities .badge i {
    color: var(--orange);
}

.glamping-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .glamping-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glamping-card .row > div {
        width: 100%;
    }

    .glamping-card .col-lg-4 {
        margin-bottom: 20px;
    }

    .glamping-gallery {
        display: flex;
        flex-direction: column;
    }

    .glamping-gallery .thumbnails {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .glamping-specs {
        grid-template-columns: 1fr;
    }

    .glamping-name {
        font-size: 1.5rem;
    }

    .glamping-card {
        padding: 20px;
    }
}

/* Steps Section */
.steps-section {
    background-color: #fff;
    position: relative;
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}



.step-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 1;
}

.step-content {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    flex-grow: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step-item:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.step-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-timeline::before {
        left: 25px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 20px;
    }

    .step-content {
        padding: 20px;
    }

    .step-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .steps-timeline::before {
        display: none;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}


/* Referral Program Section */
.referral-section {
    background-color: #f8f9fa;
    position: relative;
}

.referral-subtitle {
    font-size: 1.3rem;
    color: var(--orange);
    margin: 15px 0 30px;
    font-weight: 600;
}

.referral-steps {
    margin-bottom: 30px;
}

.referral-steps .step {
    display: flex;
    margin-bottom: 25px;
}

.referral-steps .step-number {
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.referral-steps .step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.referral-steps .step-content p {
    color: #666;
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.benefits-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.benefits-list i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--orange);
}

.referral-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.referral-card .card-header {
    background-color: var(--orange);
    color: white;
    padding: 20px;
    text-align: center;
}

.referral-card .card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.referral-card .card-body {
    padding: 30px;
}

.calculation-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.calculation-item.total {
    border-bottom: none;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--orange);
}

.calculation-item .label {
    color: #666;
}

.calculation-item .value {
    font-weight: 600;
    color: #333;
}

.calculation-item.total .value {
    color: var(--orange);
    font-size: 1.2rem;
}

.referral-form {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.referral-form h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .referral-card {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .referral-steps .step {
        flex-direction: column;
    }

    .referral-steps .step-number {
        margin-bottom: 10px;
    }
}
/* Contacts Section */
.contacts-section {
    background-color: #fff;
    position: relative;
}

.contacts-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-text {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: var(--orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--orange);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 25px;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
}

.contact-form textarea.form-control {
    resize: none;
}

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

/* Responsive */
@media (max-width: 992px) {
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }
}
@media (max-width: 992px) {
    .contacts-section {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

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

    .contact-form-wrapper {
        margin-top: 30px;
    }

    .form-title,
    .form-subtitle {
        text-align: center;
    }

    /* Центрирование заголовка "Мы в соцсетях" */
    .social-links h3 {
        text-align: center;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 576px) {
    .contact-content {
        padding: 0 15px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}
@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 20px;
    }

    .form-title {
        font-size: 1.3rem;
    }
}
/* Footer */
.footer {
    background-color: #1a2a3a;
    color: #fff;
    padding: 60px 0 0;
    position: relative;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--orange);
}

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--orange);
    padding-left: 5px;
}

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

.footer-contacts li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contacts i {
    margin-right: 10px;
    color: var(--orange);
    margin-top: 3px;
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contacts a:hover {
    color: var(--orange);
}

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

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background-color: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-payments {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.payment-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    color: var(--orange);
}

/* Responsive */
@media (max-width: 992px) {
    .footer {
        padding: 50px 0 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-menu {
        margin-bottom: 30px;
    }
    .footer-contacts li {
          justify-content: center;
          align-items: center;
      }

    .footer-social {
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-payments {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright {
        text-align: center;
        margin-bottom: 15px;
    }
}
/* Стили для модального окна глэмпинга */
#glampingModal .modal-content {
    background-color: rgba(0, 0, 0, 0.85);
    border: none;
}

#glampingModal .modal-body {
    padding: 20px;
}

#glampingModal img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

#glampingModal img:hover {
    transform: scale(1.02);
}

#glampingModal .modal-thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
}

#glampingModal .modal-thumbnail:hover {
    transform: scale(1.1);
    border-color: var(--orange) !important;
}

#glampingModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#glampingModal .btn-close:hover {
    opacity: 1;
}
/* Стили для универсального модального окна галереи */
#universalModal .modal-content {
    background-color: rgba(0, 0, 0, 0.85);
    border: none;
    color: white;
}

#universalModal .modal-body {
    padding: 20px;
}

#universalModal img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

#universalModal img:hover {
    transform: scale(1.02);
}

#universalModal .modal-thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
}

#universalModal .modal-thumbnail:hover {
    transform: scale(1.1);
    border-color: var(--orange) !important;
}

#universalModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#universalModal .btn-close:hover {
    opacity: 1;
}

#universalModal .modal-title {
    color: white;
}

.inner_block_stat{
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    margin-top: -30px;
}
.facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.facilities .badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.facilities .badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.facilities .badge i {
    font-size: 1.1rem;
}



#amount {
    resize: vertical; /* Разрешаем изменение высоты только вертикально */
    min-height: 38px; /* Высота как у обычного input */
}
.modal-body{
    color:#000000;
}
#map-container {
    touch-action: none; /* Отключает жесты касания на карте */
}

/* Альтернативный вариант для некоторых браузеров */
#map-container iframe {
    pointer-events: none; /* Делает карту "некликабельной" */
}

/* Включить взаимодействие при касании карты */
#map-container:hover iframe {
    pointer-events: auto;
}
@media (max-width: 768px) {
    .location-map {
        height: 300px;
        touch-action: none;
    }
    #map-container iframe {
        pointer-events: none;
    }
}
.calc_explanation{

}
