/* Основные стили - природная цветовая схема */
:root {
    /* Основные цвета - природные тона */
    --primary-color: #2d5016;        /* Темно-зеленый (лес) */
    --primary-light: #4a7c59;        /* Зеленый (трава) */
    --secondary-color: #8b4513;      /* Коричневый (земля) */
    --accent-color: #228b22;         /* Ярко-зеленый (листва) */
    --success-color: #32cd32;        /* Лайм-зеленый */
    --warning-color: #daa520;        /* Золотисто-желтый */
    --error-color: #cd5c5c;          /* Приглушенный красный */
    
    /* Текстовые цвета */
    --text-primary: #2f4f2f;         /* Темно-зеленый для текста */
    --text-secondary: #556b2f;       /* Оливковый */
    --text-light: #708090;           /* Серо-голубой */
    --text-muted: #a0a0a0;           /* Светло-серый */
    
    /* Фоновые цвета */
    --bg-primary: #ffffff;           /* Белый */
    --bg-secondary: #f5f5dc;         /* Бежевый (песочный) */
    --bg-accent: #f0f8e8;            /* Очень светло-зеленый */
    --bg-earth: #faf0e6;             /* Льняной (земляной) */
    
    /* Границы */
    --border-color: #d2b48c;         /* Песочно-коричневый */
    --border-light: #e6ddd4;         /* Светло-бежевый */
    
    /* Тени - более мягкие */
    --shadow-sm: 0 2px 4px rgba(45, 80, 22, 0.1);
    --shadow-md: 0 4px 8px rgba(45, 80, 22, 0.15);
    --shadow-lg: 0 8px 16px rgba(45, 80, 22, 0.2);
    --shadow-xl: 0 12px 24px rgba(45, 80, 22, 0.25);
    
    /* Радиусы - более округлые */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Шрифты - более дружелюбные */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Типография - более дружелюбная */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--text-primary);

}

h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Кнопки - более дружелюбные */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-family);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--bg-earth);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--bg-accent);
    border-color: var(--primary-light);
    color: var(--primary-color);
    text-decoration: none;
}

.btn-large {
    padding: 12px 24px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* Заголовок сайта - более теплый */
.header {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    background-color: var(--bg-accent);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.work-time {
    color: var(--text-secondary);
    font-style: italic;
}

.header-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-light);
    color: white;
    text-decoration: none;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-family: var(--font-heading);

}

.tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--bg-accent);
    color: var(--primary-color);
    text-decoration: none;
}

/* Бургер-меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: var(--bg-accent);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
}

.mobile-nav a {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
    font-size: 1rem;
}

.mobile-nav a:hover {
    background-color: var(--bg-accent);
}

/* Hero секция - более природная */
.hero {
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-earth) 50%, var(--bg-secondary) 100%);
    padding: 3rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23228b22" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%232d5016" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%238b4513" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-benefits {
    margin-bottom: 1.5rem;

}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    /* padding: 4px 0; */

}

.benefit-icon {
    color: var(--success-color);
    font-size: 1.2rem;
    background-color: rgba(50, 205, 50, 0.1);
    padding: 6px;
    border-radius: 50%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border-color);
}

/* Секции - более воздушные */
.services {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.advantages {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.how-we-work {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.service-area {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.page-content {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Сетки - более дружелюбные карточки */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-earth) 100%);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.service-features {
    list-style: none;
    margin: 1.25rem 0;
    padding-left: 0;
}

.service-features li {
    padding: 4px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-features li::before {
    content: '🌱';
    flex-shrink: 0;
    margin-top: 2px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
    text-align: center;
    background-color: var(--bg-earth);
    padding: 8px;
    border-radius: var(--radius-md);
}

/* Преимущества - более живые */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.advantage-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.advantage-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Как мы работаем - более структурированно */
.work-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-earth) 0%, var(--bg-secondary) 100%);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* CTA секция - более природная */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,10 Q35,20 25,30 Q15,20 25,10" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>') repeat;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-buttons .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    font-weight: 600;
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--bg-accent);
    color: var(--primary-color);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Подвал - более теплый */
.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-seo {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
    line-height: 1.6;
}

/* Хлебные крошки */
.breadcrumbs {
    background-color: var(--bg-secondary);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-nav {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.separator {
    margin: 0 0.8rem;
    color: var(--text-light);
}

.current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Заголовок страницы */
.page-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    padding: 2.5rem 0;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.page-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Макет контента */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    margin-top: 1.5rem;
}

.main-content {
    min-width: 0;
}

.content-section {
    margin-bottom: 2rem;
}

/* Сайдбар - более дружелюбный */
.sidebar-widget {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.advantages-list,
.services-menu {
    list-style: none;
    padding-left: 0;
}

.advantages-list li,
.services-menu li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.advantages-list li:last-child,
.services-menu li:last-child {
    border-bottom: none;
}

/* Выравнивание списков с иконками */
.benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    /* padding: 6px 0; */

}

.benefit-icon {
    color: var(--success-color);
    font-size: 1.2rem;
    background-color: rgba(50, 205, 50, 0.1);
    padding: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.benefit-text {
    flex: 1;
    line-height: 1.5;
    margin-top: 4px;
}

/* Маркированные списки */
ul:not(.advantages-list):not(.services-menu):not(.main-nav ul):not(.mobile-nav ul) {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

ul:not(.advantages-list):not(.services-menu):not(.main-nav ul):not(.mobile-nav ul) li {
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

/* Восстановление отступов между блоками */
.content-section {
    margin-bottom: 3rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

/* Дополнительные отступы для контента */
.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-section h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section h3:first-child {
    margin-top: 0;
}

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

.content-section ul,
.content-section ol {
    margin-bottom: 1.5rem;
}

/* Списки в сайдбаре с иконками */
.sidebar-widget .advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.sidebar-widget .advantages-list li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    text-align: center;
}

/* Списки преимуществ на главной */
.advantage-item ul {
    text-align: left;
    padding-left: 1rem;
}

.advantage-item ul li {
    margin-bottom: 0.25rem;
}

/* Стили для страниц услуг */
.reasons-grid,
.documents-grid,
.snt-features,
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.reason-item,
.document-item,
.feature-item,
.result-item {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.reason-item:hover,
.document-item:hover,
.feature-item:hover,
.result-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.reason-item h3,
.document-item h3,
.feature-item h3,
.result-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.services-list,
.survey-types,
.izhs-services,
.volume-calculation,
.equipment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item,
.survey-type,
.izhs-item,
.calc-item,
.equipment-item {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-item:hover,
.survey-type:hover,
.izhs-item:hover,
.calc-item:hover,
.equipment-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-item h3,
.survey-type h3,
.izhs-item h3,
.calc-item h3,
.equipment-item h3,
.object-item h3,
.process-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Дополнительные стили для techplan.php */
.objects-grid,
.techplan-content,
.apartment-info,
.replanning-process,
.types-grid,
.survey-info,
.work-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.object-item,
.content-part,
.info-block,
.process-step,
.type-item,
.survey-block,
.process-item {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.object-item:hover,
.content-part:hover,
.info-block:hover,
.process-step:hover,
.type-item:hover,
.survey-block:hover,
.process-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.content-part h3,
.info-block h3,
.survey-block h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.documents-list {
    list-style: none;
    padding-left: 0;
}

.documents-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.documents-list li::before {
    content: '📄';
    flex-shrink: 0;
    margin-top: 2px;
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item ul li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-item ul li::before {
    content: '•';
    color: var(--primary-light);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.process-steps {
    margin: 2rem 0;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.price-item {
    background: linear-gradient(135deg, var(--bg-earth) 0%, var(--bg-secondary) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
}

.price-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.price-factors {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.price-factors h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-factors ul {
    list-style: none;
    padding-left: 0;
}

.price-factors ul li {
    padding: 0.3rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.price-factors ul li::before {
    content: '→';
    color: var(--primary-light);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--primary-light);
    font-weight: 500;
}

.services-menu a {
    color: var(--text-secondary);
    padding: 3px 6px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.services-menu a:hover {
    background-color: var(--primary-light);
    color: white;
    text-decoration: none;
}

/* Кнопка обратного звонка - более дружелюбная */
.callback-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.btn-callback {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: gentle-pulse 3s infinite;
    font-weight: 600;
}

.btn-callback:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
}

@keyframes gentle-pulse {
    0%, 100% {
        box-shadow: 0 8px 16px rgba(45, 80, 22, 0.2), 0 0 0 0 rgba(50, 205, 50, 0.7);
    }
    50% {
        box-shadow: 0 8px 16px rgba(45, 80, 22, 0.2), 0 0 0 8px rgba(50, 205, 50, 0);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .header-cta {display: none;}
    .hero-text {
        text-align: left;
    
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .main-nav ul {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .header-cta {display: none;}
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header {
        position: relative;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .callback-button {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .btn-callback {
        padding: 1rem 1.5rem;
    }
    
    .callback-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .services,
    .advantages,
    .how-we-work,
    .page-content {
        padding: 3rem 0;
    }
    
    .service-card,
    .sidebar-widget {
        padding: 2rem;
    }
    
    .step {
        flex-direction: column;
        /* text-align: center; */
        gap: 1.5rem;
    
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

/* Дополнительные элементы для природного дизайна */
.nature-accent {
    position: relative;
}

.nature-accent::after {
    content: '🌿';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Анимации для более живого интерфейса */
@keyframes leaf-sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.service-icon:hover {
    animation: leaf-sway 2s ease-in-out infinite;
}

/* Улучшенные формы */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
    background-color: var(--bg-accent);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Дополнительные стили для улучшения UX */
.form-error {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-success {
    color: var(--success-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Загрузочные состояния */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--bg-primary);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--bg-accent);
    color: var(--text-primary);
}

/* Уведомления */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: var(--success-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    animation: slideInRight 0.3s ease-out;
}

.notification.error {
    background-color: var(--error-color);
}

.notification.warning {
    background-color: var(--warning-color);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Улучшения для доступности */
.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;
}

/* Фокус для клавиатурной навигации */
.btn:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* Печать */
@media print {
    .header-top,
    .main-nav,
    .cta-section,
    .callback-button,
    .modal {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}