

/* Start:/local/templates/arenda/styles.css?177470156613510*/
:root {
--primary-green: #dbfb3f;
--secondary-blue: #404040;
--accent-orange: #ff6b35;
--light-gray: #f8f9fa;
--dark-text: #212529;
--gradient-light: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
--gradient-dark: linear-gradient(135deg, var(--secondary-blue), #2c2c2c);
--shadow-light: 0 10px 30px rgba(0, 0, 0, 0.1);
--shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
--window-control-overlay-top: env(titlebar-area-height, 0px);
--window-control-overlay-left: env(titlebar-area-width, 0px);
--window-control-overlay-right: env(titlebar-area-width, 0px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    background-color: #fff;
    overflow-x: hidden;
    font-size: 18px;

  padding-top: var(--window-control-overlay-top);
  padding-left: var(--window-control-overlay-left);
  padding-right: var(--window-control-overlay-right);


}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800; 
}


.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 80px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    margin: 0 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--secondary-blue) !important;
}

.nav-link:hover {
    background-color: rgba(219, 251, 63, 0.2);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 70%;
}

/* Hero секция */
.hero-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Адаптивный размер */
    line-height: 1.2;
    background: linear-gradient(45deg, var(--secondary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--accent-orange));
    border-radius: 2px;
}

.location-info {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin: 1.5rem 0;
    border-left: 5px solid var(--primary-green);
}

.adr {
    color: #117dd7;
    font-weight: 900;
}

.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
}

.pic,
article img{
    background: white;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-green), var(--accent-orange));
    border-radius: 2px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-green), var(--accent-orange));
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), #b8e62e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--secondary-blue);
}

.stats-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--accent-orange));
    border-radius: 2px;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 5rem 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, rgba(255,107,53,0) 70%);
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219,251,63,0.1) 0%, rgba(219,251,63,0) 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.rental-btn {
    background: var(--primary-green) !important;
    color: var(--secondary-blue) !important;
    border: 2px solid var(--secondary-blue) !important;
    border-radius: 12px !important;
    padding: 1rem 2rem !important;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(219, 251, 63, 0.3);
    display: inline-block;
    text-decoration: none;
}

.rental-btn:hover {
    background: #cbea30 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(219, 251, 63, 0.4);
    text-decoration: none;
    color: var(--secondary-blue);
}

/* Секция отзывов */
.testimonials-section {
    padding: 5rem 0;
    background-color: white;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-light);
    position: relative;
    border: 1px solid rgba(219, 251, 63, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(219, 251, 63, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
}

/* Секция тарифов */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #dfe7f1 100%);
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.pricing-card.popular {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: 'Популярный';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-green);
    color: var(--secondary-blue);
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-blue);
    margin: 1rem 0;
}

.price sup {
    font-size: 1rem;
    color: var(--accent-orange);
}

/* Футер */
.footer {
    background-color: var(--secondary-blue);
    color: white;
    padding: 3rem 0 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-green);
    color: var(--secondary-blue);
    transform: translateY(-5px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .benefit-card {
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .section-title {
        font-size: 1.86rem;
    }

    .price {
        font-size: 2rem;
    }
}

/* Улучшенная доступность */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus, button:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Кнопки с focus */
.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(219, 251, 63, 0.5) !important;
}

/* Улучшенный контраст для ссылок */
a {
    color: #117dd7;
}

a:hover {
    color: #0d6bb8;
}

.hero {
    font-size: 2.4rem;
    line-height: 1.2;
    background: linear-gradient(46deg, var(--bs-success), #a7f100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgb(36 187 9 / 17%);
    position: relative;
    display: inline-block;
    font-weight: 900;
}

@media (max-width: 400px) { .hero {font-size: 1.9rem;}}
@media (max-width: 350px) { .hero {font-size: 1.8rem;}}
@media (max-width: 310px) { .hero {font-size: 1.6rem;}}

.mess {color: var(--bs-form-valid-border-color);font-weight: 700;}
.call{color: var(--bs-link-hover-color);font-weight: 700;}
.styled-list {list-style: none;padding-left: 0;}
.styled-list li {position: relative; padding-bottom: 8px;}
.styled-list li::before {content: "— ";color:green;margin-right: 0.5em;}

form{
padding: 6px;
background: linear-gradient(46deg, #98ff2f94, #a7f100b5);
border-radius: 20px;
margin: 1.5rem 0;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: 2px solid transparent;
}

 
.faq-section {
background-color: var(--light-gray); 
padding: 5rem 0; 
}

.accordion-item {
border: none; 
border-radius: 15px; 
margin-bottom: 1rem; 
box-shadow: var(--shadow-light); 
overflow: hidden;
}
.accordion-button {font-weight: 600;color: var(--secondary-blue); background-color: white; border-radius: 15px !important;padding: 1.25rem 1.5rem; box-shadow: none; }
.accordion-button:not(.collapsed) {color: var(--secondary-blue); background-color: white; box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);}
.accordion-button:focus {border-color: var(--primary-green);box-shadow: 0 0 0 0.25rem rgba(219, 251, 63, 0.25);}
.accordion-body{padding: 1.5rem;background-color: white;color: var(--dark-text);}
/* Анимация раскрытия/закрытия */
.accordion-collapse {transition: height 0.3s ease;}


#install-button {background-color: #007bff;color: white;border: none;padding: 10px 20px;border-radius: 4px;cursor: pointer;font-size: 16px;}
#install-button:hover {background-color: #0056b3;}
/* End */
/* /local/templates/arenda/styles.css?177470156613510 */
