/*
Theme Name: fasad-crimea
Theme URI: https://your-site.com/
Description: Фасад дома крым
Version: 1.0
Author: Ваше имя
Author URI: https://your-site.com/
Text Domain:fasad-crimea
*/

/* Базовый сброс */

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .header {
            background: #1a3d5d;
            color: white;
            padding: 1rem;
        }
        .nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .nav a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
        }
        .hero {
            text-align: center;
            padding: 2rem 1rem;
            background: #f0f4f8;
        }
        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background: #1a3d5d;
            color: white;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
        }
        .seo-content {
            background: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .benefits-list {
            columns: 2;
            margin: 2rem 0;
        }
        .btn {
            background: #1a3d5d;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
        }
                .review-section {
            background: #fff;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .review-item {
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-left: 4px solid #1a3d5d;
        }
        .rating {
            color: #ffc107;
            font-weight: bold;
        }
        .section{
            padding-top:10px;
        }
        .section-fao{
        margin-top: 10px;
        }
           /* Липкое меню */
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #1a3d5d;
        color: white;
        padding: 1rem;
        transition: all 0.3s ease;
    }
    
    /* Основное меню для десктопа */
    .nav {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .nav a {
        color: white;
        text-decoration: none;
        padding: 0.5rem 1rem;
        transition: color 0.3s;
    }
    
    .nav a:hover {
        color: #ffcc00;
    }
        /* Мобильное меню - скрыто по умолчанию */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    
    .nav-mobile {
        display: none;
        flex-direction: column;
        background: #1a3d5d;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
    }
    
    .nav-mobile a {
        color: white;
        text-decoration: none;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Адаптация под мобильные */
    @media (max-width: 1024px) {
        .nav {
            display: none;
        }
        
        .mobile-menu-btn {
            display: block;
        }
        
        .nav-mobile.active {
            display: flex;
        }
    }
        @media (max-width: 768px) {
            .nav { flex-direction: column; text-align: center; }
            .benefits-list { columns: 1; }
            .gallery { grid-template-columns: 1fr; }
        }
        
        
        
        
        
        
        .site-content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex: 1;
}

/* Шапка */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo-area a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

/* Главное меню */
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #0073aa;
}

/* Основной контент */
.primary-content {
    flex: 1;
    padding: 30px 20px 30px 0;
}

.sidebar {
    width: 300px;
    padding: 30px 0;
}

/* Карточки статей */
.article-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 20px;
}

.article-header h2 {
    margin: 0 0 10px;
}

.article-header h2 a {
    text-decoration: none;
    color: #333;
}

.article-meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.article-excerpt {
    margin-bottom: 15px;
}

.article-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 14px;
}

/* Отдельная статья */
.single-article {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.single-article .article-header h1 {
    margin: 0 0 15px;
}

.article-content {
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

/* Боковая колонка */
.widget {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.widget-title {
    margin: 0 0 15px;
    font-size: 18px;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    text-decoration: none;
    color: #333;
}

.widget a:hover {
    color: #0073aa;
}

.tagcloud a {
    display: inline-block;
    margin: 0 5px 5px 0;
    padding: 3px 10px;
    background: #f0f0f0;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
}

.tagcloud a:hover {
    background: #0073aa;
    color: #fff;
}

/* Подвал */
.site-footer {
    background: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-widget {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.footer-widget h3 {
    color: #fff;
    margin: 0 0 15px;
}

.footer-widget p, .footer-widget a {
    color: #ccc;
}

.footer-widget a:hover {
    color: #fff;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    
    .primary-content {
        padding-right: 0;
    }
    
    .sidebar {
        width: 100%;
        padding-top: 0;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    .main-navigation {
        margin-top: 15px;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-navigation li {
        margin: 0 10px 5px;
    }
}
























/* Основные стили */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Секция героя */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/hero-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Кнопки */
.call-button, .cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
}

.call-button {
  background: #3573aa;
  color: white;
  box-shadow: 0 4px 15px rgba(53, 115, 170, 0.3);
}

.phone-button {
  background: #3573aa;
  color: white;
}

.site-button {
  background: #4CAF50;
  color: white;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Галерея */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Услуги */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card ul {
  padding-left: 20px;
}

.service-card li {
  margin-bottom: 8px;
  position: relative;
}

.service-card li:before {
  content: "•";
  color: #3573aa;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Портфолио */
.portfolio-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.portfolio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

@media (max-width: 768px) {
  .portfolio-content {
    grid-template-columns: 1fr;
  }
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.portfolio-item h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* SEO секции */
.seo-section {
  background: white;
  padding: 50px;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.seo-section h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
}

.seo-section h3 {
  color: #3573aa;
  margin: 25px 0 15px;
}

/* FAQ */
.faq-section {
  background: white;
  padding: 50px;
  border-radius: 10px;
  margin: 40px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}

.faq-section h3 {
  color: #3573aa;
  margin: 25px 0 15px;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}

.faq-section h3:before {
  content: "+";
  position: absolute;
  left: 0;
  color: #3573aa;
  font-weight: bold;
}

/* Контакты */
.contacts-section {
  background: #2c3e50;
  color: white;
  padding: 60px;
  border-radius: 10px;
  margin: 50px 0;
}

.contacts-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.contacts-section p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contacts-section a {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts-section a:hover {
  color: #3573aa;
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  color: white;
  margin: 0 10px;
  font-weight: 600;
}

/* Отзывы */
.reviews-section {
  background: white;
  padding: 50px;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}

.review {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid #3573aa;
}

.review strong {
  color: #2c3e50;
  font-size: 1.1rem;
}

/* CTA секция */
.cta-section {
  text-align: center;
  padding: 70px 0;
  background: linear-gradient(135deg, #3573aa 0%, #2c3e50 100%);
  color: white;
  border-radius: 10px;
  margin: 50px 0;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Адаптивность */
@media (max-width: 768px) {
  .hero {
    padding: 70px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .services-container {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .seo-section, .faq-section, .contacts-section {
    padding: 30px;
  }
}


















/* Глобальные переменные */
:root {
  --primary-color: #3573aa;
  --secondary-color: #2c3e50;
  --accent-color: #ffcc00;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --white: #ffffff;
  --dark-bg: #1a1a1a;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Базовые стили */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Липкое меню - современный дизайн */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 61, 93, 0.95);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 1rem 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.header.scrolled {
  padding: 0.5rem 2rem;
  background: rgba(26, 61, 93, 0.98);
}

/* Основное меню */
.nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav a:hover {
  color: var(--accent-color);
}

.nav a:hover::after {
  width: 70%;
}

/* Мобильное меню */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--accent-color);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--secondary-color);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.nav-mobile a {
  color: var(--white);
  text-decoration: none;
  padding: 1rem;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.nav-mobile a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
}

/* Адаптация меню */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-mobile.active {
    display: flex;
  }
}

/* Герой секция - современный дизайн */
.hero {
  background: linear-gradient(135deg, rgba(26, 61, 93, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%), 
              url('img/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Кнопки - современный дизайн */
.call-button, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin: 0.5rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.call-button {
  background: var(--primary-color);
  color: var(--white);
}

.phone-button {
  background: var(--primary-color);
  color: var(--white);
}

.site-button {
  background: var(--accent-color);
  color: var(--secondary-color);
}

.call-button::before, 
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0));
  z-index: -1;
  transition: var(--transition);
}

.call-button:hover, 
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.call-button:hover::before, 
.cta-button:hover::before {
  background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.1));
}

/* Галерея - современная сетка */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* Карточки услуг */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-color);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  position: relative;
  padding-left: 1rem;
}

.service-card h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--accent-color);
  border-radius: var(--radius-sm);
}

.service-card ul {
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.service-card li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Портфолио */
.portfolio-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
  transition: var(--transition);
  padding: 20px;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover img {
  transform: scale(1.02);
}

.portfolio-item h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  position: relative;
}

.portfolio-item h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  margin-top: 0.8rem;
}

/* Секции */
.section {
  padding: 4rem 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: var(--secondary-color);
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* SEO секции */
.seo-section {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  margin: 3rem 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.seo-section h2 {
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.seo-section h3 {
  color: var(--primary-color);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.seo-section h3::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* FAQ */
.faq-section {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  margin: 3rem 0;
  box-shadow: var(--shadow-sm);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.faq-section h3 {
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
  cursor: pointer;
  position: relative;
  padding-left: 2rem;
  transition: var(--transition);
}

.faq-section h3:hover {
  color: var(--secondary-color);
}

.faq-section h3::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: var(--transition);
}

.faq-section h3.active::before {
  content: '-';
}

/* Контакты */
.contacts-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 4rem;
  border-radius: var(--radius-md);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.contacts-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contacts-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contacts-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
}

.contacts-section p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.contacts-section a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.contacts-section a:hover {
  color: var(--white);
  text-decoration: underline;
}

.social-links {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.social-links a {
  color: var(--white);
  margin: 0 1rem;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--accent-color);
}

/* Отзывы */
.reviews-section {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  margin: 3rem 0;
  box-shadow: var(--shadow-sm);
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.review {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review strong {
  color: var(--secondary-color);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* CTA секция */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
  background-size: 50px 50px;
  opacity: 0.2;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Анимации */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивность */
@media (max-width: 1024px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 2rem 1.5rem;
  }
  
  .contacts-section,
  .reviews-section,
  .seo-section,
  .faq-section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .portfolio-content {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
  }
  
  .header {
    padding: 1rem;
  }
  
  .section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .call-button, .cta-button {
    width: 100%;
    margin: 0.5rem 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .contacts-section::before,
  .contacts-section::after {
    display: none;
  }
}










.achievements-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center;
    margin: 2rem 0;
}
.achievement-item{
padding: 1rem;
    background: #f0f4f8;
    border-radius: 8px;
}
.achievement-number{
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3d5d;
}
.team-container{
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.team-member{
text-align: center;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}








