/* ===================== ОСНОВНЫЕ СТИЛИ ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  overflow-x: hidden;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #555;
  transform: translateY(-3px);
}

/* Общие стили для заголовков секций */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  font-size: 16px;
  color: #888;
  margin-bottom: 15px;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #333;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #333;
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================== ХЕДЕР ===================== */
.main-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  transition: all 0.5s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header.visible {
  top: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
}

.logo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 30px;
  background: #333;
}

.logo-kitchen {
  color: #656260;
}

.logo:hover {
  opacity: 0.8;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #333;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-phone a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header-phone a:hover {
  color: #333;
}

.mobile-menu-btn {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* ===================== МОБИЛЬНОЕ МЕНЮ ===================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 25px;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: #ccc;
}

.mobile-phone {
    margin-top: 40px;
}

.mobile-phone a {
    font-size: 18px;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-phone a:hover {
    background: #fff;
    color: #000;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: #ccc;
}

/* Адаптация основного меню */
@media (max-width: 992px) {
    .main-nav, .header-phone {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        z-index: 10000;
    }
}

@media (min-width: 993px) {
    .mobile-menu-overlay {
        display: none;
    }
}

.mobile-menu-btn {
    position: relative;
    width: 24px;
    height: 24px;
}

.mobile-menu-btn .burger-icon,
.mobile-menu-btn .close-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .burger-icon {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-btn.active .close-icon {
    opacity: 1;
    visibility: visible;
    display: block !important;
}

/* ===================== КНОПКА МОБИЛЬНОГО МЕНЮ ===================== */
.mobile-menu-btn {
    display: none;
    position: relative;
    width: 30px;
    height: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
}

.mobile-menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Иконка бургера */
.burger-icon {
    top: 50%;
    transform: translateY(-50%);
}

.burger-icon::before,
.burger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.burger-icon::before {
    top: -8px;
}

.burger-icon::after {
    bottom: -8px;
}

/* Иконка крестика */
.close-icon {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0;
}

.close-icon::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: rotate(-90deg);
}

/* Анимация при активном состоянии */
.mobile-menu-btn.active .burger-icon {
    opacity: 0;
}

.mobile-menu-btn.active .close-icon {
    opacity: 1;
}

/* ===================== СЛАЙДЕР ===================== */
.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.slide-content {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 2;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.title-line {
  display: block;
  overflow: hidden;
}

.slide-button {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
}

.cta-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}

.cta-button:hover::after {
  width: 100%;
}

/* Навигация слайдера */
.slide-nav {
  position: absolute;
  left: 50px;
  bottom: 50px;
  display: flex;
  gap: 40px;
  z-index: 10;
}

.nav-item {
  cursor: pointer;
  position: relative;
  padding-bottom: 15px;
}

.nav-number {
  font-size: 14px;
  color: #999;
  display: block;
  margin-bottom: 5px;
}

.nav-title {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #999;
}

.nav-item.active .nav-number,
.nav-item.active .nav-title {
  color: white;
}

.nav-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.5s ease;
}

.nav-item.active .nav-line {
  width: 100%;
}

/* Счетчик слайдов */
.slide-counter {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  color: white;
  z-index: 10;
}

.slide-counter .current-slide {
  font-size: 24px;
  line-height: 0.8;
}

.slide-counter .total-slides {
  font-size: 16px;
}

/* Социальные сети */
.social-links {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  display: block;
  margin-bottom: 15px;
  text-decoration: none;
}

.social-links a:hover {
  opacity: 1;
}

/* Анимации */
.slide.active .slide-title .title-line {
  animation: slideUp 0.8s ease forwards;
}

.slide.active .slide-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ===================== СЕКЦИЯ "О НАС" ===================== */
.about-section {
  padding: 50px 0 0;
  background: #fff;
  color: #333;
  position: relative;
  overflow: visible;
}

.about-section .about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-section .about-text {
  flex: 1;
  max-width: 500px;
}

.about-section .section-subtitle {
  display: block;
  font-size: 16px;
  color: #888;
  margin-bottom: 15px;
  position: relative;
  padding-left: 48px;
}

.about-section .section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: #333;
}

.about-section .section-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-section .section-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
}

.about-section .about-button {
  display: inline-block;
  padding: 12px 30px;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.about-button:hover {
  background: #555;
  transform: translateY(-3px);
}

.about-images {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.about-image-back {
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  animation: fadeInRight 1s ease forwards;
}

.about-image-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-front {
  position: absolute;
  width: 60%;
  height: 70%;
  bottom: -50px;
  left: 0;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.about-image-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== СЕКЦИЯ СЧЕТЧИКОВ ===================== */
.counters-section {
  padding: 100px 0 80px;
  background: #333;
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: -30px;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.counter-item {
  padding: 30px;
  position: relative;
}

.counter-number {
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1;
}

.counter-title {
  font-size: 18px;
  font-weight: 300;
  color: #b8b8b8;
  line-height: 1.4;
}

/* ===================== СЕКЦИЯ УСЛУГ ===================== */
.services-section {
  background: #f5f5f5;
  padding: 50px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.service-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===================== СЕКЦИЯ РАБОТ ===================== */
.portfolio-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
}

.portfolio-slider {
  margin-top: 50px;
  position: relative;
  width: 100%;
}

.portfolio-section .swiper {
  width: 100%;
  height: 100%;
}

.portfolio-section .swiper-wrapper {
  box-sizing: border-box;
}

.portfolio-section .swiper-slide {
  height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  width: 100%;
}

.portfolio-section .portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.portfolio-section .portfolio-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 30px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  transition: bottom 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.portfolio-section .swiper-slide:hover .portfolio-overlay {
  bottom: 0;
}

.portfolio-section .portfolio-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.portfolio-section .portfolio-description {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #eee;
}

.portfolio-section .portfolio-info {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.portfolio-section .swiper-slide img {
  max-width: 100%; 
  max-height: 100%; 
}

/* Навигация слайдера */
.portfolio-section .swiper-button-next,
.portfolio-section .swiper-button-prev {
  color: #333 !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.portfolio-section .swiper-button-next::after,
.portfolio-section .swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: bold !important;
}

.portfolio-section .swiper-button-prev {
  left: 20px !important;
}

.portfolio-section .swiper-button-next {
  right: 20px !important;
}

.portfolio-section .swiper-pagination {
  position: relative !important;
  margin-top: 20px !important;
}

.portfolio-section .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #ddd !important;
  opacity: 1 !important;
}

.portfolio-section .swiper-pagination-bullet-active {
  background: #333 !important;
}

/* ===================== СЕКЦИЯ ПРОЦЕССА РАБОТЫ ===================== */
.process-section {
  margin-bottom: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #333;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #333;
}

.step-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.step-description {
  color: #666;
  line-height: 1.6;
}

/* ===================== СЕКЦИЯ ПАРТНЕРОВ ===================== */
.partners {
  text-align: center;
  padding: 50px;
}

.partnersSwiper {
  width: 100%;
  height: 150px;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.swiper-slide img {
  max-width: 80%;
  max-height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.swiper-slide:hover img {
  filter: grayscale(100%);
  opacity: 0.7;
  transform: scale(1.1);
}

.swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* ===================== СЕКЦИЯ КОНТАКТОВ ===================== */
.contact-section {
  background: #fff;
  position: relative;
}

.contact-content {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.info-text p, .info-text a {
  color: #666;
  line-height: 1.6;
  text-decoration: none;
}

.info-text a:hover {
  color: #333;
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  color: #333;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #333;
  color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #333;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-map {
  height: 500px;
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================== ФУТЕР ===================== */
.main-footer {
  background: #222;
  color: #fff;
  padding: 70px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col {
  padding: 0 15px;
}

.footer-title {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #333;
}

.footer-about {
  color: #aaa;
  line-height: 1.6;
  margin-top: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #333;
  padding-left: 5px;
}

.footer-contacts li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
}

.footer-contacts i {
  color: #333;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #333;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #777;
  font-size: 14px;
}

.footer-links-bottom {
  display: flex;
  gap: 20px;
}

.footer-links-bottom a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
  color: #333;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #333;
}

/* ===================== АНИМАЦИИ ===================== */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== АДАПТИВНАЯ ВЕРСТКА ===================== */

/* Планшеты (768px - 1024px) */
@media (max-width: 1024px) {
  .slide-content {
    left: 10%;
    max-width: 500px;
  }
  
  .slide-title {
    font-size: 2.8rem;
  }
  
  .slide-nav {
    left: 30px;
    bottom: 30px;
    gap: 30px;
  }
  
  .slide-counter {
    left: 30px;
  }
  
  .social-links {
    right: 30px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .about-images {
    width: 100%;
    min-height: 400px;
  }
}

/* Большие мобильные (576px - 767px) */
@media (max-width: 767px) {
  .slider-container {
    height: 100vh;
  }
  
  .slide-content {
    left: 5%;
    right: 5%;
    max-width: 100%;
    text-align: center;
  }
  
  .slide-title {
    font-size: 2.2rem;
  }
  
  .slide-nav {
    display: none;
  }
  
  .slide-counter {
    top: auto;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    padding: 8px 15px;
    border-radius: 20px;
    width: auto;
    min-width: 80px;
    justify-content: center;
  }
  
  .social-links {
    display: none;
  }
  
  /* Альтернативная навигация точками */
  .dots-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    padding: 10px;
    margin: 0 20px;
    border-radius: 20px;
    width: calc(100% - 40px);
    box-sizing: border-box;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background: white;
    transform: scale(1.2);
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 14px;
  }
  
  .section-description {
    font-size: 16px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    width: 100%;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .portfolio-section .swiper-slide {
    height: 400px;
  }
}

/* Малые мобильные (до 575px) */
@media (max-width: 575px) {
  .slider-container {
    height: 100vh;
  }
  
  .slide-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .cta-button {
    font-size: 0.9rem;
  }
  
  .dots-nav {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
  
  .header-phone {
    display: none;
  }
  
  .contact-map {
    height: 350px;
  }
  
  .counters-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-section .swiper-slide {
    height: 300px;
  }
  
  .portfolio-section .portfolio-overlay {
    padding: 15px;
  }
  
  .portfolio-section .swiper-button-next,
  .portfolio-section .swiper-button-prev {
    display: none !important;
  }
}

/* Очень маленькие экраны (до 400px) */
@media (max-width: 400px) {
  .slide-title {
    font-size: 1.5rem;
  }
  
  .slide-content {
    left: 15px;
    right: 15px;
  }
  
  .slide-counter {
    bottom: 45px;
    font-size: 14px;
  }
  
  .slide-counter .current-slide {
    font-size: 20px;
  }
  
  .dots-nav {
    padding: 8px;
    gap: 8px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .section-title {
    font-size: 24px;
  }
}