* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #f9fafb;
  color: #111827;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
}

/* =======================
   NAVIGATION - НЕ НАЛЕЗАЕТ
   ======================= */
nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 4px 16px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  min-height: 70px;
  padding: 0 16px;
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.brand-logo.center {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
  margin: 0;
  text-align: left;
}

.sidenav-trigger {
  display: none;
  color: #1e293b;
}

.sidenav-trigger i {
  font-size: 28px;
}

nav ul.right {
  display: flex;
  gap: 8px;
  margin: 0;
  height: auto;
  position: static;
  right: auto;
}

nav ul.right li {
  float: none;
  display: inline-block;
}

nav ul.right li a {
  color: #1f2937;
  font-weight: 500;
  border-radius: 40px;
  padding: 8px 18px;
  transition: 0.2s;
}

nav ul.right li a:hover {
  background: #eef2ff;
  color: #6a11cb;
}

.sidenav {
  background: #ffffff;
  padding-top: 20px;
  width: 280px;
}

.sidenav li a {
  color: #1f2937;
  font-weight: 500;
  padding: 14px 24px;
}

@media (max-width: 992px) {
  .brand-logo.center {
    font-size: 1rem;
  }
  
  .sidenav-trigger {
    display: block;
  }
  
  nav ul.right {
    display: none;
  }
}

@media (min-width: 993px) {
  .sidenav-trigger {
    display: none !important;
  }
}

/* =======================
   HERO SECTION
   ======================= */
.hero {
  border-radius: 0 0 48px 48px;
  overflow: hidden;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.btn-primary {
  background: white;
  color: #6a11cb;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: inline-block;
  margin: 0 8px;
  line-height: 1.2;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-block;
  margin: 0 8px;
  line-height: 1.2;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* =======================
   ADVANTAGES SECTION
   ======================= */
#advantages {
  padding: 70px 0;
  background: white;
  border-radius: 48px;
  margin: 40px 0;
}

#advantages .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 48px;
  color: #1e293b;
}

#advantages .card {
  border-radius: 28px;
  transition: all 0.25s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

#advantages .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.15);
}

#advantages .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #6a11cb;
  margin-bottom: 16px;
}

#advantages .card-content p {
  color: #4b5563;
}

/* =======================
   SERVICES SECTION
   ======================= */
.services-section {
  background: #f1f5f9;
  padding: 70px 0;
  border-radius: 48px;
  margin: 40px 0;
}

.services-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 48px;
  color: #1e293b;
}

.service-box {
  background: white;
  padding: 32px 24px;
  border-radius: 28px;
  text-align: center;
  transition: all 0.25s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  color: #6a11cb;
  margin-bottom: 16px;
  display: inline-block;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.service-description {
  color: #4b5563;
  line-height: 1.5;
}

/* =======================
   CONTACT FORM
   ======================= */
#contact-form {
  background: white;
  padding: 70px 0;
  border-radius: 48px;
  margin: 40px auto;
  max-width: 800px;
}

#contact-form h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1e293b;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1e293b;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6a11cb;
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.1);
}

.form-group button {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.2;
}

.form-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
}

/* =======================
   ABOUT SECTION
   ======================= */
#about {
  background: #f1f5f9;
  border-radius: 48px;
  margin: 40px 0;
  padding: 70px 0;
}

#about h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
}

#about p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

#about .responsive-img {
  border-radius: 28px;
  transition: transform 0.3s ease;
}

#about .responsive-img:hover {
  transform: scale(1.01);
}

/* =======================
   MAP SECTION - КРАСИВЫЙ БЛОК
   ======================= */
.map-section {
  margin: 48px 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  background: #fff;
}

.map-section__map {
  flex: 1;
  min-height: 400px;
}

.map-section__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

.map-section__content {
  flex: 1;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
}

.map-section__content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.map-section__content p {
  font-size: 1.25rem;
  color: #2d4a6e;
  margin-bottom: 8px;
}

.map-section__content address {
  font-style: normal;
  font-size: 1.1rem;
  color: #1e3a8a;
  font-weight: 500;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .map-section {
    flex-direction: column;
  }
  
  .map-section__map {
    min-height: 300px;
  }
  
  .map-section__content {
    padding: 32px 24px;
  }
  
  .map-section__content h2 {
    font-size: 1.5rem;
  }
  
  .map-section__content p {
    font-size: 1rem;
  }
}

/* =======================
   TESTIMONIALS SLIDER - РАБОЧИЙ
   ======================= */
.testimonials {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 48px;
  margin: 40px 0;
  padding: 70px 0;
}

.testimonials .section-title {
  color: white;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 48px;
}

.slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 32px;
  text-align: center;
  box-sizing: border-box;
}

.client-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: white;
  line-height: 1.6;
  margin-bottom: 24px;
}

.client-name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
  color: #6a11cb;
  font-size: 1.5rem;
  font-weight: bold;
}

.slider-btn:hover {
  background: #f8fafc;
  transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.2s;
}

.dot.active {
  background: white;
  width: 28px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .slider-btn.prev {
    left: 8px;
  }
  
  .slider-btn.next {
    right: 8px;
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  
  .testimonial-slide {
    padding: 24px;
  }
  
  .client-quote {
    font-size: 1rem;
  }
}

/* =======================
   FOOTER
   ======================= */
.page-footer {
  background: #0f172a !important;
  border-radius: 48px 48px 0 0;
  margin-top: 48px;
  padding: 48px 0 0;
}

.page-footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.page-footer p,
.page-footer li,
.page-footer a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.page-footer a:hover {
  color: #60a5fa !important;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 32px;
  color: #94a3b8;
  text-align: center;
}

/* =======================
   COOKIE BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #1f2937;
  backdrop-filter: blur(16px);
  color: #f3f4f6;
  padding: 20px 28px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 1000;
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
  flex: 2;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner button {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.cookie-banner button:hover {
  transform: scale(0.98);
  opacity: 0.9;
}

/* =======================
   MODAL
   ======================= */
.modal {
  border-radius: 32px;
  max-width: 500px;
  width: 90%;
}

.modal .modal-content {
  padding: 32px;
  border-radius: 32px;
}

.modal h4 {
  margin-bottom: 24px;
  color: #1e293b;
}

.modal .btn {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  line-height: 1.2;
  padding: 12px 20px;
}

.modal-close {
  margin-top: 16px;
  width: 100%;
  background: #e5e7eb;
  border-radius: 40px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 0 20px;
}

.modal-close:hover {
  background: #cbd5e1;
}

#thank-modal .modal-content {
  text-align: center;
}

#thank-modal .btn-secondary {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.2;
}

#thank-modal .btn-secondary:hover {
  transform: translateY(-2px);
}

/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin: 0 4px;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  .service-box {
    margin-bottom: 20px;
  }
  
  .row .col {
    margin-bottom: 20px;
  }
  
  #advantages .row .col,
  .services-section .row .col {
    margin-bottom: 20px;
  }
}







.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 15px 20px;
            box-sizing: border-box;
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .cookie-banner p {
            margin: 0;
            flex: 1;
            text-align: left;
        }
        .cookie-banner button {
            background-color: #f1c40f;
            color: #333;
            border: none;
            padding: 10px 20px;
            margin-left: 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #d4ac0d;
        }
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
