/* Custom site styles extracted from layout */
:root {
    --color-primary: #cb2d2a;
    --color-secondary: #a82421;
    --color-dark: #1a1a1a;
    --color-navbar: #1a1a1a;
    
    /* Typography */
    --font-family: 'Ubuntu', Arial, sans-serif;
    --font-size-text: 13px;
    --font-size-heading: 32px;
    --line-height-text: 20px;
    --line-height-heading: 38px;
    --font-weight-bold: 700;
    --font-weight-normal: 400;
}

/* Global Typography */
* {
    font-family: var(--font-family);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    line-height: var(--line-height-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    text-transform: none;
}

h1 {
    font-size: 32px;
    line-height: var(--line-height-heading);
    text-align: left;
}

/* Navigation Menu Typography */
.nav-link {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    text-align: center;
}

/* Button Typography */
.btn-call {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

/* Header Styles */
.header-fixed {
    position: relative;
    z-index: 1001;
}

.header-top {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.header-navbar {
    background: var(--color-navbar);
    position: relative;
    z-index: 1001;
    overflow: visible !important;
}

.logo-image {
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: #1f2937;
    margin-left: 0;
    margin-bottom: 2px;
    text-transform: uppercase;
    text-align: left;
}

.logo-subtitle div {
    font-family: var(--font-family);
    font-size: 10px;
    font-weight: var(--font-weight-normal);
    color: #6b7280;
    line-height: 14px;
    text-align: left;
}

/* User Navigation Styles */
.user-nav__bottom-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-nav__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.user-nav__phone-icon {
    color: black !important;
    flex-shrink: 0;
    font-size: 14px;
}

.user-nav__phone-nomber {
    color: black !important;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    opacity: 0.7;
    text-align: right;
}

.user-nav__work-time {
    font-size: 12px !important;
    font-weight: 400 !important;
    margin-top: 1px !important;
}

.user-nav__bottom-wrapper--phone {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.user-nav__phone-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
    transition: color 0.3s ease;
}

.user-nav__phone-text:hover {
    color: #e5e7eb;
}

.user-nav__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    color: white;
}

.social-link:hover {
    background-color: #034a8a;
    transform: translateY(-2px);
}

.social-vk {
    color: white;
    display: none !important; /* Скрываем ВК везде */
}

.social-vk:hover {
    color: white;
}

.social-telegram {
    color: white;
}

.social-telegram:hover {
    color: white;
}

.social-whatsapp {
    color: white;
}

.social-whatsapp:hover {
    color: white;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-phone {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: #1f2937;
    margin-left: 12px;
    line-height: var(--line-height-text);
}

.contact-label {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    color: #6b7280;
    line-height: var(--line-height-text);
}

.btn-call {
    border: 2px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: var(--color-primary);
    color: white;
}

.nav-link {
    color: white;
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 16px 12px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link.has-dropdown::after {
    content: '▼';
    font-size: 10px;
    margin-left: 4px;
}

/* Dropdown menu styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: white !important;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    min-width: 200px !important;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block !important;
}

/* Explicit open state for JS control */
.dropdown-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f9fafb;
    color: var(--color-primary);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-icon {
    width: 24px;
    height: 24px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: var(--color-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #2E86AB );
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.hero-bg {
    background: linear-gradient(135deg, var(--color-secondary), #1A5F7A);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.hidden {
    display: none;
}

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

.modal-content {
    position: relative;
    background: white;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
}

.modal-description {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
}

.modal-description p {
    margin: 0;
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #374151;
}

.modal-body {
    padding: 20px;
}

.modal-body .form-group {
    margin-bottom: 16px;
}

.modal-body label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: #374151;
}

.modal-body input,
.modal-body textarea,
.modal-body select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.modal-body input:focus,
.modal-body textarea:focus,
.modal-body select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-body textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label .checkmark {
    display: none;
}

/* Hero Slider Styles */
.hero-slider-bg {
    background: linear-gradient(135deg, var(--color-secondary), #1A5F7A);
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 60vh;
}

.hero-slider-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-slider-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-slider-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background-color: #0354a0;
}

/* Центрирование grid контейнера в hero-slider */
.hero-slider-slide .container-strict {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-slider-slide .container-strict > div[class*="grid"] {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: grid;
    align-items: center;
}

/* Вертикальное центрирование на ПК */
@media (min-width: 1024px) {
    .hero-slider-slide {
        min-height: 70vh;
    }
    
    .hero-slider-slide .container-strict {
        min-height: 70vh;
    }
    
    .hero-slider-slide .container-strict > div[class*="grid"] {
        min-height: 60vh;
        align-items: center;
    }
}

.hero-slider-text {
    text-align: left;
    max-width: none;
    flex: 1;
}

.hero-slider-text h1 {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    margin-bottom: 1.5rem;
    color: white;
    text-transform: none;
    text-align: left;
}

.hero-slider-text p {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-slider-text .description {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.hero-slider-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .hero-slider-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hero-slider-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: none;
}

/* Mobile adaptations */
@media (max-width: 1023px) {
    .hero-slider-bg {
        min-height: 50vh;
    }
    
    .hero-slider-slide {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .hero-slider-text {
        text-align: center;
        max-width: 40rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Center H1 on mobile, keep desktop left via base rule */
    .hero-slider-text h1 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-slider-buttons {
        justify-content: center;
    }
    
    .hero-slider-image {
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-slider-bg {
        min-height: 45vh;
    }
    
    .hero-slider-slide {
        min-height: 45vh;
        padding: 1.5rem 0;
    }
    
    .hero-slider-text h1 {
        font-size: 32px;
        margin-bottom: 1rem;
    }
    
    .hero-slider-text p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-slider-text .description {
        font-size: 14px;
        margin-bottom: 2rem;
    }
    
    .hero-slider-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .slider-btn-outline,
    .slider-btn-solid {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
}

/* Swiper pagination dots */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 12px;
    height: 12px;
}

/* Slider buttons */
.slider-btn-outline {
    border: 2px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 32px);
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
    cursor: pointer;
}

.slider-btn-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: none;
}

.slider-btn-solid {
    background: var(--color-primary);
    color: white;
    padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 32px);
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
    cursor: pointer;
}

.slider-btn-solid:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: none;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Advantages Section */
.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}


.advantage-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(2, 90, 171, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}


.advantage-content {
    flex: 1;
    min-width: 0;
}

.advantage-title {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    color: #374151;
    margin-bottom: 0.25rem;
    line-height: var(--line-height-text);
    text-transform: none;
}

.advantage-text {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    color: #6b7280;
    line-height: var(--line-height-text);
    margin: 0;
}

/* Mobile adaptations for advantages */
@media (max-width: 640px) {
    .advantage-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .advantage-icon {
        width: 32px;
        height: 32px;
    }
    
    .advantage-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .advantage-title {
        font-size: clamp(0.8rem, 3.5vw, 0.9rem);
        margin-bottom: 0.125rem;
    }
    
    .advantage-text {
        font-size: clamp(0.7rem, 3vw, 0.8rem);
    }
}

/* Strict container paddings like corporate sites */
.container-strict {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 80px;
    overflow: visible !important;
}

@media (max-width: 1024px) {
    .container-strict {
        padding-left: 0;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .container-strict {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Section Headings */
.section-title {
    font-family: var(--font-family);
    font-size: var(--font-size-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    text-transform: none;
    text-align: left;
    color: #374151;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
    color: #6b7280;
    margin-bottom: 2rem;
}

/* General Text Elements */
p, span, div {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
}

/* Services Teaser Section */
.services-teaser {
    text-align: left;
}

.services-teaser .underline {
    font-family: var(--font-family);
    font-size: var(--font-size-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    text-transform: none;
    text-align: left;
    color: #374151;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
    text-decoration: none;
}

.services-teaser .underline.short {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 280px;
    border: none;
    box-shadow: none;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.service-image {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.service-link {
    display: block;
    width: 100%;
    height: 100%;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-img {
    transform: scale(1.05);
}

.service-info {
    padding: 1rem;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-title {
    height: 18px;
    margin-bottom: 0.5rem;
}

.service-title a {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--color-primary);
}

.service-text {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
    color: #6b7280;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.services-divider {
    margin-top: 3rem;
    border: none;
    height: 1px;
    background: #e5e7eb;
}

/* Consultation Block */
.consultation-block {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.consultation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.consultation-text {
    flex: 1;
}

.consultation-title {
    font-family: var(--font-family);
    font-size: var(--font-size-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    text-transform: none;
    text-align: left;
    color: #374151;
    margin-bottom: 1rem;
}

.consultation-description {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
    color: #6b7280;
    display: block;
}

.consultation-button {
    flex-shrink: 0;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-consultation {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-consultation:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Mobile adaptations for consultation */
@media (max-width: 768px) {
    .consultation-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .consultation-title {
        text-align: center;
    }
    
    .consultation-button {
        height: auto;
        width: 100%;
    }
    
    .btn-consultation {
        width: 100%;
        max-width: 280px;
    }
}

/* About & News Section */
.about-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-company {
    text-align: left;
}

.about-text {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
    color: #6b7280;
    margin-bottom: 1rem;
}

.news-section {
    text-align: left;
}

.news-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.btn-news-all {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: var(--font-weight-normal);
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-news-all:hover {
    background: var(--color-primary);
    color: white;
}

.news-section .underline {
    font-family: var(--font-family);
    font-size: var(--font-size-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    text-transform: none;
    text-align: left;
    color: #374151;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 0.5rem;
    display: inline-block;
    text-decoration: none;
}

.news-section .underline.short {
    display: none;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.news-image {
    flex-shrink: 0;
    width: 105px;
    height: 70px;
    overflow: hidden;
    border-radius: 4px;
}

.news-link {
    display: block;
    width: 100%;
    height: 100%;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-img {
    transform: scale(1.05);
}

.news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-date {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: var(--font-weight-normal);
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.news-title {
    flex: 1;
}

.news-title a {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.news-title a:hover {
    color: var(--color-primary);
}

/* Mobile adaptations for about & news */
@media (max-width: 768px) {
    .about-news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-section .underline {
        display: none;
    }
    
    .news-section .underline.short {
        display: inline-block;
    }
    
    .btn-news-all {
        position: static;
        display: none; /* hide on mobile */
        margin-bottom: 1rem;
    }
    
    .news-item {
        flex-direction: column;
        text-align: center;
    }
    
    .news-image {
        width: 100%;
        height: 120px;
        margin-bottom: 1rem;
    }
}

/* Partners Section */
.partners-slider {
    margin-top: 2rem;
}

.partnersSwiper {
    padding: 1rem 0 3rem 0;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: var(--color-primary);
    box-shadow: none;
}

.partner-link {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partners Swiper Pagination */
.partnersSwiper .swiper-pagination {
    bottom: 0;
}

.partnersSwiper .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
}

.partnersSwiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* Our Works Section */
.works-slider {
    margin-top: 2rem;
}

.worksSwiper {
    padding: 1rem 0 3rem 0;
}

.work-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-item:hover .work-img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 90, 171, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.work-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.work-content {
    padding: 1.5rem;
}

.work-title {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-text);
    color: #374151;
    margin-bottom: 0.5rem;
}

.work-description {
    font-family: var(--font-family);
    font-size: var(--font-size-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-text);
    color: #6b7280;
}

/* Works Swiper Navigation */
.worksSwiper .swiper-button-next,
.worksSwiper .swiper-button-prev {
    color: var(--color-primary);
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: none;
    transition: all 0.3s ease;
}

.worksSwiper .swiper-button-next:hover,
.worksSwiper .swiper-button-prev:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.worksSwiper .swiper-button-next:after,
.worksSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Works Swiper Pagination */
.worksSwiper .swiper-pagination {
    bottom: 0;
}

.worksSwiper .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
}

.worksSwiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* Service Page Styles */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #034a8a 100%);
    color: white;
    padding: 40px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: left;
}

/* Мобильные устройства - прижимаем влево */
@media (max-width: 768px) {
    .hero-title {
        text-align: left !important;
    }
}

.hero-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: none;
}

.service-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    fill: white !important;
    display: block;
    flex-shrink: 0;
}

.feature-title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--color-dark);
}

.feature-text {
    color: #666;
    line-height: 1.6;
}

.service-types {
    padding: 80px 0;
}

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

.type-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.type-item:hover {
    transform: translateY(-4px);
}

.type-image {
    height: 200px;
    overflow: hidden;
}

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

.type-content {
    padding: 32px;
}

.type-title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--color-dark);
}

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

.type-features {
    list-style: none;
    padding: 0;
}

.type-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 24px;
}

.type-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.prices-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.price-item {
    background: white;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: none;
    position: relative;
    transition: transform 0.3s ease;
}

.price-item:hover {
    transform: translateY(-4px);
}

.price-item.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.price-header {
    margin-bottom: 32px;
}

.price-title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--color-dark);
}

.price-amount {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.price-features {
    margin-bottom: 32px;
}

.price-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 24px;
}

.price-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.price-button {
    width: 100%;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.price-button:hover {
    background: #034a8a;
}

.work-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 24px;
}

.step-title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
    color: var(--color-dark);
}

.step-text {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.cta-title {
    font-family: var(--font-family);
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #2E86AB);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2E86AB, var(--color-primary));
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: var(--color-primary);
}

/* Mobile header spacer - hidden on desktop */
.mobile-header-spacer {
    display: none;
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    html, body {
        overflow-x: hidden;
    }
    
    /* Fixed header only on mobile */
    .header-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }
    
    /* Show spacer on mobile to compensate for fixed header */
    .mobile-header-spacer {
        display: block;
        height: 80px; /* Approximate height of mobile header */
    }
    
    /* Hide desktop elements */
    .header-top,
    .desktop-nav {
        display: none !important;
    }
    
    /* Mobile header */
    .header-navbar {
        background: white;
        border-bottom: 1px solid #e5e7eb;
        padding: 10px 15px;
    }
    
    .header-navbar .container-strict {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10001;
        position: relative;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 20px;
        height: 2px;
        background: #374151;
        margin: 2px 0;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile logo */
    .mobile-logo {
        display: flex !important;
        flex: 1;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-logo img {
        height: 50px;
        width: auto;
    }
    
    /* Mobile social links in header */
    .mobile-socials {
        display: flex !important;
        gap: 6px;
        align-items: center;
    }
    
    .mobile-socials .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background-color: var(--color-primary);
        color: white;
        text-decoration: none;
        font-size: 14px;
        transition: transform 0.2s ease, filter 0.2s ease;
        box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }
    
    .mobile-socials .social-link:hover {
        transform: translateY(-1px);
        filter: brightness(0.95);
    }
    
    .mobile-socials .social-phone {
        background-color: var(--color-primary);
    }
    
    .mobile-socials .social-telegram {
        background-color: #0088cc;
    }
    
    .mobile-socials .social-whatsapp {
        background-color: #25D366;
    }
    
    .mobile-socials .social-vk {
        background-color: #0077FF;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #2C3E50;
        z-index: 10000;
        transition: left 0.3s ease;
        padding: 20px;
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    
    .mobile-menu-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu-links li {
        margin-bottom: 15px;
    }
    
    .mobile-menu-links a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-links a:hover {
        color: var(--color-primary);
    }
    
    .mobile-menu-footer {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mobile-phone {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
        display: block;
    }
    
    .mobile-phone i {
        margin-right: 8px;
    }
    
    .mobile-schedule {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin: 0 0 20px 0;
    }
    
    .mobile-menu-footer .mobile-socials {
        display: flex;
        gap: 6px;
    }
    
    .mobile-menu-footer .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background-color: var(--color-primary);
        color: white;
        text-decoration: none;
        font-size: 14px;
        transition: transform 0.2s ease, filter 0.2s ease;
        box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }
    
    .mobile-menu-footer .social-link:hover {
        transform: translateY(-1px);
        filter: brightness(0.95);
    }
    
    .mobile-menu-footer .social-phone {
        background-color: var(--color-primary);
    }
    
    .mobile-menu-footer .social-telegram {
        background-color: #0088cc;
    }
    
    .mobile-menu-footer .social-whatsapp {
        background-color: #25D366;
    }
    
    .mobile-menu-footer .social-vk {
        background-color: #0077FF;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Hide mobile elements on desktop */
@media (min-width: 769px) {
    .mobile-menu-btn,
    .mobile-logo,
    .mobile-socials,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Mobile adaptations for services */
@media (max-width: 768px) {
    .services-teaser .underline {
        display: none;
    }
    
    /* Service page mobile styles */
    .hero-content {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: left;
    }
    
    .hero-description {
        font-size: 14px;
        text-align: left;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .price-item.featured {
        transform: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-teaser .underline.short {
        display: inline-block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        height: auto;
    }
    
    .service-image {
        height: 120px;
    }
    
    .service-info {
        height: auto;
        padding: 1rem;
    }
    
    .service-text {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

/* Equipment Categories Grid */
.equipment-categories {
    padding: 3rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.category-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-text {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* Mobile styles for equipment categories */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-img {
        height: 150px;
    }
    
    .category-text {
        padding: 1rem;
        font-size: 14px;
    }
}

/* White border for consultation buttons */
.btn-primary {
    border: 1px solid white !important;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #025aab, #2E86AB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 24px;
}

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

.contact-text {
    font-size: 18px;
    font-weight: 600;
    color: #025aab;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 14px;
}

.contact-link {
    display: inline-block;
    background: #025aab;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.contact-link:hover {
    background: #2E86AB;
    color: white;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 3rem 0;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-info {
    padding-right: 2rem;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.contact-benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 14px;
}

.contact-benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #025aab;
    font-weight: bold;
}

.contact-info-text {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: #333;
    font-size: 16px;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-phone,
.contact-email {
    color: #025aab;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.contact-phone:hover,
.contact-email:hover {
    text-decoration: underline;
}

.contact-address,
.contact-hours {
    color: #333;
    font-size: 16px;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-desc {
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info-simple {
    margin: 1rem 0;
}

.contact-info-simple p {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 16px;
}

.contact-info-simple strong {
    color: #025aab;
}

.contact-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-size: 14px;
}

.benefit-item i {
    color: #025aab;
    font-size: 16px;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #025aab;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkbox-label a {
    color: #025aab;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Mobile styles for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-info {
        padding-right: 0;
    }
    
    .contact-benefits {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

/* News Styles */
.news-meta {
    margin-bottom: 0.5rem;
}

.news-date {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.news-meta-hero {
    margin-top: 1rem;
}

.news-meta-hero .news-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.news-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-content {
    line-height: 1.7;
    color: #333;
}

.news-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #025aab;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: #333;
}

.news-content p {
    margin-bottom: 1rem;
}

.news-content ul, .news-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.news-content li {
    margin-bottom: 0.5rem;
}

.news-content strong {
    color: #025aab;
    font-weight: 600;
}

.news-content blockquote {
    border-left: 4px solid #025aab;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

/* Главный hero: перекрываем Tailwind Preflight (h1 { font-size: inherit }) и гарантируем кегль */
main .d-hero-full h1.d-hero-full__title {
    font-size: 38px;
    font-size: clamp(28px, calc(1rem + 3.5vw), 48px);
    line-height: 1.12;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal;
    font-weight: 800;
    color: #fff;
    text-align: center;
    text-wrap: balance;
    margin: 0 0 28px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
    main .d-hero-full h1.d-hero-full__title {
        font-size: clamp(24px, calc(0.75rem + 4.2vw), 34px);
    }
}

