/* Стили для страницы компании Локкард */
.lokkard-company {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #2d3748;
    margin: 0;
    padding: 0;
}

/* Секции и заголовки */
.lokkard-section {
    margin-bottom: 3rem;
}

.lokkard-section-title {
    color: #1a365d;
    font-weight: 700;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    border-bottom: 2px solid #e53e3e;
}

/* Герой секция */
.lokkard-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.92), rgba(26, 54, 93, 0.88));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3rem 0;
    border-radius: 0 0 0.5rem 0.5rem;
    margin-bottom: 3rem;
}

.lokkard-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Карточки экспертизы */
.lokkard-expertise-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    background: white;
}

.lokkard-expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.lokkard-expertise-icon {
    font-size: 2.5rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

/* Галерея документов */
.lokkard-gallery-section {
    margin: 2rem 0;
}

.lokkard-gallery-category-title {
    color: #2c5282;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #e2e8f0;
}

.lokkard-gallery-subcategory-title {
    color: #4a5568;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.lokkard-gallery-thumb {
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.lokkard-gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    border-color: #e53e3e;
}

.lokkard-gallery-img-container {
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
}

.lokkard-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.lokkard-gallery-thumb-body {
    padding: 1rem;
}

.lokkard-gallery-thumb-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.lokkard-gallery-thumb-desc {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 0;
}

/* Слайдер отзывов */
.lokkard-testimonials-slider {
    margin: 2rem 0;
}

.lokkard-testimonial-slide {
    padding: 0 0.5rem;
}

.lokkard-testimonial-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    overflow: hidden;
    background: white;
    height: 100%;
}

.lokkard-testimonial-img-container {
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
}

.lokkard-testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.lokkard-testimonial-body {
    padding: 1rem;
}

.lokkard-testimonial-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.lokkard-testimonial-desc {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 0;
}

/* Карусель отзывов */
.lokkard-carousel-container {
    position: relative;
    padding: 0 40px;
}

.lokkard-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #2c5282;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0.8;
}

.lokkard-carousel-control:hover {
    opacity: 1;
    color: white;
}

.lokkard-carousel-control-prev {
    left: 0;
}

.lokkard-carousel-control-next {
    right: 0;
}

/* Команда */
.lokkard-team-section {
    background: #f7fafc;
    padding: 3rem 0;
    border-radius: 0.5rem;
}

/* Кнопки */
.lokkard-btn-accent {
    background-color: #e53e3e;
    border-color: #e53e3e;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.lokkard-btn-accent:hover {
    background-color: #c53030;
    border-color: #c53030;
    color: white;
}

/* Карточки преимуществ */
.lokkard-benefit-card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    height: 100%;
}

.lokkard-benefit-card .card-body {
    padding: 1.5rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .lokkard-hero-title {
        font-size: 2rem;
    }
    
    .lokkard-gallery-img-container {
        height: 200px;
    }
    
    .lokkard-testimonial-img-container {
        height: 250px;
    }
    
    .lokkard-carousel-container {
        padding: 0 35px;
    }
    
    .lokkard-carousel-control {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .lokkard-hero-title {
        font-size: 1.75rem;
    }
    
    .lokkard-gallery-img-container {
        height: 180px;
    }
    
    .lokkard-testimonial-img-container {
        height: 200px;
    }
    
    .lokkard-carousel-container {
        padding: 0 30px;
    }
}