:root {
	--text-primary: #333333;
	--text-primary-inversive: #fefefe;
    --text-secondary: #3B3B3B;
	--accent: #AA0100;
	--logo: url('../img/logo.svg');
    --gray-background: #E4E4E4;
    --second-accent: #099899;
}
* {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body {
    background-color: #f9f9f9;
}
.accent-color {
    color: var(--accent);
}
.second-accent-color {
    color: var(--second-accent);
}
.red-line {
    width: 65px;
    height: 5px;
    background-color: var(--accent);
    margin-bottom: 40px;
}
.red-line-mini {
    width: 35px;
    height: 3px;
    background-color: var(--accent);
    margin-bottom: 10px !important;
    margin-top: 10px !important;
}
.btn-custom-primary {
    background-color: var(--accent-blue);
    color: var(--text-primary-inversive);
    font-weight: 300;
}
.btn-custom-primary:hover {
    background-color: var(--accent-blue);
    color: var(--text-primary-inversive);
}
.btn-custom-danger {
    background-color: var(--accent);
    color: var(--text-primary-inversive);
    font-weight: 300;
}
.btn-custom-danger:hover {
    background-color: var(--accent);
    color: var(--text-primary-inversive);
}
.btn-custom-danger-outline {
    background-color: none;
    border-color: var(--accent);
    color: var(--accent);
    width: 100%;
}
.btn-custom-danger-outline:hover {
    background-color: none;
    color: var(--accent);
    border-color: var(--accent);
}
.custom-text-input-v1 {
    width: 100%;
    background-color: #EAEAEA;
    border: none;
    border-radius: 5px;
    min-height: 60px;
    font-size:24px;
    padding-left: 20px;
}
.custom-text-input-v1::placeholder {
    color:#9B9B9B;
    font-weight: 300;
}
.form-content .btn-custom-danger {
    min-height: 60px;
    font-size: 24px;
}
.form-content .form-confirmation-info {
    margin-top:20px;
    fonr-size:12px;
    padding-bottom: 0;
    color: #dadada;
}
.modal-content {
    padding: 25px;
}
.modal-header {
    border-bottom: none;
    align-items: unset;
}
.modal-header .red-line {
    margin-bottom:20px;
}
/* Hero Section */
.hero-section {
    color: white;
    position: relative;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}
.hero-content-group {
    padding: 90px 0;
}

.hero-title {
    color: var(--text-primary-inversive);
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-features {
    font-size: 24px;
    color: var(--text-primary-inversive);
    list-style-type: disc;
}

.hero-feature-item {
    line-height: 1;
    color: var(--text-primary-inversive);
}

.min-vh-80 {
    min-height: 80vh;
}

.z-index-1 {
    z-index: 1;
}

/* Адаптация */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    .hero-background {
        background-position-x: 65%;
    }
    .hero-background .hero-overlay {
        background-color: rgba(0, 0, 0, 0.5);
    }
    .hero-features {
        font-size: 16px;
        padding-left: 20px;
        font-weight: 300;
    }
    .hero-features .mb-3 {
        margin-bottom: 10px !important;
    }
    .min-vh-80 {
        min-height: 70vh;
    }
    .btn-custom-danger {
        font-size: 18px;
        width: 100%;
    }
}
.mobile-fast-links {
    background-color: #ECECEC;
}
.mobile-fast-links .fast-link {
    padding: 20px 30px;
}
.mobile-fast-links .fast-link:first-child {
    border-right: 1px solid #dadada;
}
.mobile-fast-links .fast-link a {
    text-decoration: none;
}
.mobile-fast-links .fast-link img {
    width: 100%;
}
.mobile-fast-links .fast-link .col-4 {
    align-content: center;
}
.mobile-fast-links .fast-link p {
    margin-bottom: 0;
}
.mobile-fast-links .fast-link .fast-link-subtitle {
    font-size: 14px;
    color:#9B9B9B;
    font-weight: 300;
}
.mobile-fast-links .fast-link .fast-link-title {
    font-size: 18px;
    color:#9B9B9B;
    font-weight: 500;
    text-decoration: underline;
}
@media (max-width: 502px) {
    .mobile-fast-links .fast-link .fast-link-subtitle { font-size: 12px; }
    .mobile-fast-links .fast-link .fast-link-title { font-size: 14px; }
}
@media (max-width: 422px) {
    .mobile-fast-links .fast-link .fast-link-title { font-size: 13px; }
}
@media (max-width: 402px) {
    .mobile-fast-links .fast-link .fast-link-subtitle { font-size: 20px; font-weight: 400;}
    .mobile-fast-links .fast-link .fast-link-title { display: none; }
}
@media (max-width: 360px) {
    .mobile-fast-links .fast-link .fast-link-subtitle { font-size: 16px; font-weight: 400;}
}
/* Секция ремонта */
.repair-section {
    background-color: var(--gray-background);
}
.repair-section-form-group {
    max-width: 60%;
}
.repair-section-form-group .form-label {
    font-size: 16px;
    font-style: normal;
    color: var(--text-primary);
}
#consultationForm input, #consultationForm textarea {
    background-color: #D9D9D9;
}
#consultationForm input::placeholder, #consultationForm textarea::placeholder {
    color: #B8B1B1;
}
.repair-section-left-column {
    position: relative;
}
.repair-section-go-to-link {
    color: var(--text-primary);
    position: absolute;
    bottom: 0;
}
.repair-section-go-to-link-mobile {
    display: block;
    color: var(--text-primary);
    margin-top: 40px;
    padding-left:27px;
}
.repair-card {
    position: relative;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    min-height: 150px;
}
.repair-card-link {
    text-decoration: none;
}
.repair-card h3 {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 400;
    z-index: 1;
}

.repair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.repair-card-big .repair-card-img {
    position: absolute;
    right: 2%;
    bottom: 0;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}
.repair-card-small .repair-card-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 70%;
    object-fit: contain;
    z-index: 0;
}

.repair-card:hover .repair-card-img {
    opacity: 1;
}

.phone-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

@media (max-width: 768px) {
    h2 {
        font-size:32px;
    }
    .red-line {
        width: 48px;
    }
    .repair-card {
        min-height: 96px;
    }
    .repair-card h3 {
        font-weight: 500;
    }
    .repair-card-big .repair-card-img {
        right: -20%;
    }
}
.benefits-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
}
.benefits-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    padding-bottom: 20px;
}
.benefit-card {
    min-width: calc(100vw / 1.2 - 20px);
    border: 1px solid #DCD5D5;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}
.benefit-card-content {
    padding: 40px 20px 20px 20px;
    min-height: 60%;
}
.benefit-card img {
    width: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.benefit-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 300;
}
/* Скрываем scrollbar */
.benefits-scroll-container::-webkit-scrollbar {
    display: none;
}
.benefits-scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Секция с видео */
.video-section {
    position: relative;
}

.video-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: opacity 0.3s;
}

.video-overlay:hover {
    background-color: rgba(0,0,0,0.2);
}

.btn-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s;
}

.btn-play:hover {
    transform: scale(1.1);
}

/* Скрываем overlay при воспроизведении */
video[playing] + .video-overlay {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .btn-play {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
/* Секция блога */
.blog-section {
    background-color: #f8f9fa;
}

.blog-stories {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 15px;
}

.blog-items {
    display: flex;
    gap: 15px;
    padding-bottom: 10px;
}

.blog-item {
    flex: 0 0 120px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.blog-cover {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.blog-title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding: 0 5px;
}

/* Модальное окно */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.blog-modal.show {
    display: flex;
}

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

.blog-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    z-index: 1;
    animation: modalFadeIn 0.3s ease;
}

.blog-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #ffffff8a;
    border: none;
    border-radius: 30px;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
}

.blog-modal-video-container {
    position: relative;
    padding-bottom: 177.78%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.blog-modal-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-modal-title {
    margin-top: 15px;
    text-align: center;
    font-size: 18px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Скрываем стандартный скроллбар */
.blog-stories::-webkit-scrollbar {
    height: 5px;
}

.blog-stories::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.blog-stories::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.blog-stories::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Секция преимуществ */
.advantages-section {
    background-color: #ffffff;
}

.advantage-tabs {
    display: flex;
    flex-direction: column;
}

.advantage-tab {
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background-color: #fff;
}

.advantage-tab:hover {
    border-left-color: #dc3545;
}

.advantage-tab.active {
    border-left-color: #dc3545;
    background-color: #f1f1f1;
}

.tab-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.tab-title {
    font-weight: 500;
    font-size: 18px;
}

/* Контентная часть */
.advantage-content {
    position: relative;
    height: 100%;
}

.content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.content-item.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.content-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.content-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
}

.content-text h3 {
    font-size: 32px;
    font-style: semibold;
    margin-bottom: 10px;
}

.content-text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Адаптация */
@media (max-width: 991.98px) {
    .advantage-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    
    .advantage-tab {
        min-width: 200px;
    }
    
    .tab-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .content-image {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .content-image {
        height: 250px;
    }
    
    .content-text {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .content-text h3 {
        font-size: 20px;
    }
    
    .content-text p {
        font-size: 14px;
    }
}

/* Секция партнеров */
.partners-section {
    position: relative;
}

.partner-item {
    padding: 0 15px;
    text-align: center;
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.partner-logo img {
    height: auto;
    width: 85% !important;
    transition: all 0.3s ease;
}

/* Эффект grayscale */
.grayscale {
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
}

/* Эффект при наведении */
.partner-item:hover .grayscale {
    filter: none;
    opacity: 1;
}

/* Карусель Owl Carousel */
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #333 !important;
    font-size: 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-prev {
    left: -20px;
}

.owl-carousel .owl-next {
    right: -20px;
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
    background: #dc3545 !important;
    color: #fff !important;
}

/* Адаптация */
@media (max-width: 767.98px) {
    .partner-logo {
        height: 60px;
        padding: 10px;
    }
    
    .owl-carousel .owl-prev {
        left: -10px;
    }
    
    .owl-carousel .owl-next {
        right: -10px;
    }
}
/* Секция Сохраняем ритм */
.rythm-saving {
    background-color: #F0EEEE;
    color: var(--text-primary);
    padding: 5rem 0;
}
#advantageCarousel {
    margin-top:3rem;
}
/* Секция примеров работ */
.works-examples {
    background-color: #F0EEEE !important;
}

.work-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Эффект скрученных краев */
.work-card::before,
.work-card::after {
    content: '';
    position: absolute;
    background: #f8f9fa;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 1;
}

.work-card::before {
    top: -10px;
    right: -10px;
}

.work-card::after {
    bottom: -10px;
    left: -10px;
}

/* Широкие карточки */
.work-card.wide .work-content {
    display: flex;
    height: 300px;
}

.work-card.wide .work-text {
    flex: 1;
    padding: 30px;
}

.work-card.wide .work-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.work-card.wide .work-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Узкие карточки */
.work-card.narrow .work-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.work-card.narrow .work-image {
    height: 180px;
    overflow: hidden;
}

.work-card.narrow .work-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.work-card.narrow .work-text {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Общие стили текста */
.equipment-type {
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 5px;
}

.equipment-article {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.equipment-description {
    color: #757575;
    font-size: 14px;
    line-height: 1.5;
}

/* Адаптация */
@media (max-width: 991.98px) {
    .work-card.wide .work-content {
        flex-direction: row;
        height: auto;
    }
    
    .work-card.wide .work-image {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .work-card.narrow .work-image {
        height: 150px;
    }
    
    .equipment-article {
        font-size: 20px;
    }
    
    .equipment-description {
        font-size: 14px;
    }
}
/* Секция обратной связи */
.feedback-section {
    background-color: #f8f9fa;
}

.feedback-header {
    max-width: 800px;
    margin-left: 0;
}

.feedback-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 24px;
    color: var(--text-primary);
}

.feedback-form-container {
    width: 100%;
    position: relative;
}

.feedback-form {
    transition: all 0.3s ease;
}

.feedback-form .btn-custom-danger {
    min-height: 60px;
    font-size: 24px;
}
.horizontal-form-success-message {
    display: none;
    justify-content: center;
}
.horizontal-form-success-message p {
    color:#333;
    font-size:24px;
    padding-top:18px;
    justify-content: center;
}
.success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-icon {
    color: #28a745;
    font-size: 48px;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.success-message p {
    color: #6c757d;
    font-size: 16px;
}

/* Состояния формы */
.feedback-form.hidden {
    opacity: 0;
    visibility: hidden;
}

.success-message.visible {
    opacity: 1;
    visibility: visible;
}

/* Адаптация */
@media (max-width: 767.98px) {
    .feedback-header h2 {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .feedback-form .row > div {
        margin-bottom: 5px;
    }
    
    .success-icon {
        font-size: 40px;
    }
    
    .success-message h3 {
        font-size: 20px;
    }
    .custom-text-input-v1 {
        font-size: 18px;
        min-height: 45px;
    }
    .feedback-form .btn-custom-danger {
        font-size: 18px;
        min-height: 45px;
        font-weight: 500;
    }
    .form-content .btn-custom-danger {
        font-size: 18px;
        min-height: 45px;
        font-weight: 500;
    }
}
/* Секция вопросов */
.faq-section {
    background-color: #fff;
}

.faq-card {
    display: block;
    height: 100%;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.faq-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-text {
    min-height: 33%;
    padding: 25px 25px 0 25px;
}

.faq-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.faq-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
}

/* Адаптация для мобильных */
@media (max-width: 767.98px) {
    .faq-content {
        flex-direction: row-reverse;
        align-items: center;
    }
    
    .faq-text {
        padding: 0;
        margin: 20px 15px 10px 10px;
        margin-bottom: 0;
        margin-left: 20px;
        flex: 1;
    }
    
    .faq-image {
        flex-grow: 0;
        padding-top: 0;
        width: 140px;
    }
    
    .faq-image img {
        max-height: 106px;
    }
    
    .faq-text h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .faq-text p {
        font-size: 14px;
    }
}
/* Подвал сайта */
.footer {
    background-color: #fcfaf9;
    font-size: 14px;
    line-height: 1.6;
}

.footer-main {
    border-bottom: 1px solid #e9ecef;
}

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

.footer-text {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 0;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
}

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

.footer-list li {
    margin-bottom: 3px;
    font-weight: 300;
    font-size: 16px;
}

.footer-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 300;
}

.footer-list a:hover {
    color: #dc3545;
}
.phone, .email {
    font-weight: 500;
    color: #212529;
}

.callback-btn {
    padding: 5px 15px !important;
    font-size: 14px !important;
    margin-top: 5px;
}

/* Нижняя часть подвала */
.footer-bottom {
    background-color: #212529;
    color: #fff;
}

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

.footer-link:hover {
    color: #fff;
}

/* Адаптация */
@media (max-width: 991.98px) {
    .footer-list {
        margin-bottom: 20px;
    }
    
    .footer-list li {
        margin-bottom: 8px;
        color:#606060;
    }
}

@media (max-width: 767.98px) {
    .footer-title {
        display: none;
    }
    
    .footer-list {
        margin-bottom: 0;
    }
}
/* Мобильная навигация */
.mobile-header {
    display: none;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
}
.mobile-header .logo img {
    max-width: 37%;
}

.burger-menu {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.burger-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-line:nth-child(3) {
    bottom: 0;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 70px 20px 20px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

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

.mobile-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #dc3545;
}

.mobile-form {
    padding: 20px 0;
}

.mobile-form .form-control {
    margin-bottom: 15px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px)  {
    .repair-section-go-to-link-mobile {
        display: none !important;
    }
}
/* Адаптация */
@media (max-width: 991.98px) {
    .top-row {
        display: none !important;
    }
    
    .nav-main {
        display: none !important;
    }
    
    .mobile-header {
        display: flex !important;
    }
    .hero-content-group {
        padding: 60px 20px;
    }
    .hero-content-group h1 {
        font-size: 36px;
    }
    .repair-section-form-group {
        display: none;
    }
    .repair-section-go-to-link {
        display: none !important;
    }
    .repair-section-go-to-link-mobile {
        display: block;
    }
}
/* Кастомные стили */
.top-row {
    background-color: #FCFBF9;
    padding: 15px 0;
    font-size: 15px;
    border-bottom: 1px solid #E0E0E0;
}

.header-logo img {
    height: 50px;
    margin-top:5px;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 40px;
    transition: color 0.3s;
    position: relative;
}

.contact-link:hover {
    color: var(--accent);
}
.nav-main-container {
    background-color: #FCFBF9;
}
.nav-main {
    position: relative;
    display: flex;
    padding: 12px 0;
}

.nav-item {
    position: relative;
    margin-right: 25px;
    padding-left: 20px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 5px 0 !important;
    position: relative;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
}

.nav-indicator {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-item.active .nav-link {
    color: var(--accent) !important;
}

/* Модальное окно */
.modal-success-message {
    display: none;
    text-align: left;
}
.repair-form-success-message {
    display: none;
    color:#333;
}

.success-icon {
    color: #099899;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-content {
    transition: all 0.3s ease;
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}