/* Hero section styles */
.inner-hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 60px;
    position: relative;
}

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

/* Header row styles */
.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: 1.8rem;
    color: white;
    background: transparent;
    padding: 15px;
    margin-right: 15px;
}

/* Hero content styles */
.hero-content {
    max-width: 600px;
    margin-top: 100px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    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: 20px;
    margin-bottom: 1.5rem;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.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: 2rem;
    margin-bottom: 10px;
    color: white;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.btn-custom {
    background-color: #FF6B35;
    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: #E55627;
    transform: translateY(-2px);
}

/* Map section styles */
.inner-map-section {
    padding: 40px 0;
}

.yandex-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Invest section styles */
.inner-invest-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.invest-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.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: #FF6B35;
}

.card-icon {
    font-size: 2.5rem;
    color: #FF6B35;
    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: #FF6B35;
    margin-bottom: 20px;
}

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

.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: #FF6B35;
}

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

/* Sketches section styles */
.inner-sketches-section {
    padding: 60px 0;
}

.sketch-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.sketch-item img {
    width: 100%;
    height: auto;
    display: block;
}

.sketch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Footer styles */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}
.footer  a{
    color: white;
    text-decoration: none;
}
.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #FF6B35;
}

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

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

.footer-menu a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #FF6B35 !important;
}

.footer-contacts li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-contacts i {
    margin-right: 10px;
    color: #FF6B35;
    margin-top: 3px;
}

.footer-about {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.social-link i {
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}

.social-link:hover {
    background-color: #FF6B35;
    transform: translateY(-3px);
}

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

.copyright {
    color: #7f8c8d;
    margin-bottom: 0;
}

.payment-icon {
    font-size: 1.8rem;
    margin-left: 10px;
    color: #bdc3c7;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-row {
        padding: 0;
    }

    .logo {
        height: 60px;
    }

    .navbar-toggler {
        font-size: 1.5rem;
        padding: 10px;
    }

    .main-title {
        font-size: 2rem;
    }

    .stats-row {
        flex-direction: column;
    }

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

    .yandex-map {
        height: 300px;
    }

    .footer {
        text-align: center;
    }

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

    .footer-contacts li {
        justify-content: center;
        align-items: center;
    }

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

    .footer-menu {
        margin-bottom: 30px;
    }
}
/* 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;
}
