* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;

  font-family: Arial, sans-serif;

  overflow: hidden;

  background: #111;
}


/* КАРТА */

#map {
  width: 100%;
  height: 100vh;
}


/* ВЕРХНЯЯ ПАНЕЛЬ */

.topbar {
  position: absolute;

  top: 20px;
  left: 20px;

  z-index: 1000;

  background: rgba(255,255,255,0.96);

  padding: 18px;

  border-radius: 20px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

  max-width: 420px;
}

.topbar h1 {
  font-size: 24px;
  margin-bottom: 14px;
}


/* ФИЛЬТРЫ */

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  border: none;

  padding: 10px 16px;

  border-radius: 999px;

  background: #efefef;

  cursor: pointer;

  transition: 0.2s;
}

.filter-btn:hover {
  background: #ddd;
}

.filter-btn.active {
  background: black;
  color: white;
}


/* БОКОВАЯ ПАНЕЛЬ */

.project-panel {
  position: fixed;

  top: 0;
  right: -460px;

  width: 440px;
  height: 100vh;

  background: white;

  z-index: 2000;

  transition: 0.35s ease;

  overflow-y: auto;

  box-shadow:
    -10px 0 30px rgba(0,0,0,0.18);
}

.project-panel.open {
  right: 0;
}


/* КНОПКА ЗАКРЫТИЯ */

.close-btn {
  position: absolute;

  top: 14px;
  right: 14px;

  width: 42px;
  height: 42px;

  border: none;

  border-radius: 50%;

  background: rgba(0,0,0,0.08);

  cursor: pointer;

  font-size: 18px;

  z-index: 10;
}


/* КОНТЕНТ */

.panel-content {
  padding: 20px;
}


/* ФОТО */

.project-image {
  width: 100%;
  height: 260px;

  object-fit: cover;

  border-radius: 18px;

  margin-bottom: 20px;
}


/* ЗАГОЛОВОК */

.project-title {
  font-size: 30px;

  line-height: 1.2;

  margin-bottom: 12px;
}


/* ОПИСАНИЕ */

.project-description {
  line-height: 1.6;

  color: #444;

  font-size: 16px;
}


/* КНОПКА */

.route-btn {
  display: inline-block;

  margin-top: 20px;

  background: black;
  color: white;

  text-decoration: none;

  padding: 14px 18px;

  border-radius: 14px;

  transition: 0.2s;
}

.route-btn:hover {
  opacity: 0.85;
}


/* МОБИЛЬНАЯ ВЕРСИЯ */

@media (max-width: 768px) {

  .topbar {
    top: 10px;
    left: 10px;
    right: 10px;

    max-width: unset;

    padding: 14px;
  }

  .topbar h1 {
    font-size: 20px;
  }

  .project-panel {

    width: 100%;
    height: 72vh;

    top: unset;
    bottom: -100%;
    right: 0;

    border-radius: 24px 24px 0 0;
  }

  .project-panel.open {
    bottom: 0;
  }

  .project-image {
    height: 220px;
  }

  .project-title {
    font-size: 24px;
  }
}
  .swiper {
  width: 100%;
  height: 260px;

  border-radius: 18px;

  overflow: hidden;

  margin-bottom: 20px;
}


.swiper-slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}
/* МАРКЕРЫ */

/* =========================
   GOOGLE MAPS STYLE PINS
========================= */

.custom-icon {
  background: transparent !important;
  border: none !important;
}


/* ОСНОВА PIN */

.custom-marker {

  width: 26px;
  height: 26px;

  border-radius: 50% 50% 50% 0;

  transform:
    rotate(-45deg);

  position: relative;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.35);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


/* ВНУТРЕННИЙ КРУГ */

.custom-marker::after {

  content: '';

  width: 10px;
  height: 10px;

  background: rgba(255,255,255,0.95);

  border-radius: 50%;

  position: absolute;

  top: 8px;
  left: 8px;
}


/* HOVER */

.custom-marker:hover {

  transform:
    rotate(-45deg)
    scale(1.15);

  box-shadow:
    0 10px 24px rgba(0,0,0,0.45);
}


/* СЕКЦИОННЫЕ */

.marker-gates {
  background: #007aff;
}


/* ОТКАТНЫЕ */

.marker-sliding {
  background: #00c853;
}


/* ШЛАГБАУМЫ */

.marker-barrier {
  background: #ffffff;
}


/* РОЛЛЕТЫ */

.marker-roller {
  background: #ff3b30;
}


/* АВТОМАТИКА */

.marker-automation {
  background: #ff9500;
}
/* =========================
   LAYOUT
========================= */

body {

  background: #f5f5f5;

  overflow-x: hidden;
  overflow-y: auto;
}


/* HEADER */

.site-header {

  height: 90px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  padding:
    0 40px;

  position: sticky;

  top: 0;

  z-index: 3000;

  overflow: hidden;


  /* ОСНОВА */

  background:

    /* ЛИНИИ */

    radial-gradient(
      circle at top left,
      rgba(255,255,255,0.95),
      rgba(240,240,240,0.92)
    ),

    /* ВЕРТИКАЛЬНЫЕ */

    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.025) 0px,
      rgba(0,0,0,0.025) 1px,
      transparent 1px,
      transparent 80px
    ),

    /* ГОРИЗОНТАЛЬНЫЕ */

    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.025) 0px,
      rgba(0,0,0,0.025) 1px,
      transparent 1px,
      transparent 80px
    ),

    /* ИЗОГНУТЫЕ ЛИНИИ */

    radial-gradient(
      circle at 20% 120%,
      rgba(0,0,0,0.04),
      transparent 45%
    ),

    radial-gradient(
      circle at 80% -20%,
      rgba(0,0,0,0.04),
      transparent 45%
    );


  border-bottom:
    1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 4px 18px rgba(0,0,0,0.04);

  backdrop-filter:
    blur(10px);
}

.logo {

  display: flex;

  align-items: center;

  text-decoration: none;
}


.logo img {

  height: clamp(56px, 7vw, 110px);

  width: auto;

  display: block;

  transition:
    transform 0.2s ease;
}


.logo:hover img {

  transform: scale(1.03);
}


.header-right {

  display: flex;
  align-items: center;

  gap: 20px;
}


.header-right a {

  text-decoration: none;

  color: #111;
}


.whatsapp-btn {

  background: #25d366;

  color: white !important;

  padding:
    12px 18px;

  border-radius: 999px;

  font-weight: 600;
}


/* MAP SECTION */

.map-section {

  width: 100%;

  max-width: 1600px;

  margin:
    40px auto;

  padding:
    0 20px;
}


.map-topbar {

  margin-bottom: 20px;
}


.map-topbar h1 {

  font-size: 42px;

  margin-bottom: 10px;
}


.map-topbar p {

  color: #666;

  font-size: 18px;
}


/* FILTERS */

.filters {

  margin-bottom: 20px;

  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}


/* MAP */

#map {

  width: 100%;

  height: 75vh;

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.12);
}


/* FOOTER */

.site-footer {

  margin-top: 60px;

  background: #111;

  color: white;

  padding:
    40px;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  flex-wrap: wrap;
}


/* MOBILE */

@media (max-width: 768px) {

  .site-header {

    padding:
      0 20px;

    height: auto;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    padding-top: 16px;
    padding-bottom: 16px;
  }

  .map-topbar h1 {
    font-size: 30px;
  }

  #map {
    height: 65vh;
  }

  .site-footer {

    flex-direction: column;
  }

}
/* =========================
   CTA SECTION
========================= */

.cta-section {

  width: 100%;

  max-width: 1600px;

  margin:
    40px auto 0;

  padding:
    0 20px;
}


.cta-card {

  background:
    linear-gradient(
      135deg,
      #111,
      #1d1d1d
    );

  color: white;

  border-radius: 32px;

  padding:
    60px 40px;

  text-align: center;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.18);
}


.cta-card h2 {

  font-size: 42px;

  margin-bottom: 18px;
}


.cta-card p {

  max-width: 700px;

  margin:
    0 auto 30px;

  line-height: 1.7;

  color: rgba(255,255,255,0.8);

  font-size: 18px;
}


/* BUTTON */

.cta-btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    18px 34px;

  border-radius: 999px;

  background: #229ED9;

  color: white;

  text-decoration: none;

  font-size: 18px;
  font-weight: 600;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;

  box-shadow:
    0 10px 30px rgba(34,158,217,0.35);
}


.cta-btn:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 16px 36px rgba(34,158,217,0.45);
}


/* MOBILE */

@media (max-width: 768px) {

  .cta-card {

    padding:
      40px 24px;
  }

  .cta-card h2 {

    font-size: 30px;
  }

  .cta-card p {

    font-size: 16px;
  }

  .cta-btn {

    width: 100%;
  }

}
/* =========================
   SOCIALS
========================= */

.phone-link {

  text-decoration: none;

  color: #111;

  font-weight: 600;
}


.socials {

  display: flex;

  align-items: center;

  gap: 12px;
}


/* BUTTON */

.social-btn {

  width: 44px;
  height: 44px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  text-decoration: none;

  color: white;

  font-size: 20px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.social-btn:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.18);
}
/* =========================
   PREMIUM SOCIALS
========================= */

.socials {

  display: flex;

  align-items: center;

  gap: 12px;
}


/* =========================
   PREMIUM LIGHT SOCIALS
========================= */

.socials {

  display: flex;

  align-items: center;

  gap: 12px;
}


/* BUTTON */

.social-btn {

  width: 48px;
  height: 48px;

  border-radius: 16px;

  display: flex;

  align-items: center;
  justify-content: center;

  text-decoration: none;

  background: white;

  color: #111;

  font-size: 20px;

  border:
    1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.08);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


/* HOVER */

.social-btn:hover {

  transform:
    translateY(-2px);

  box-shadow:
    0 14px 28px rgba(0,0,0,0.12);

  background:
    #fafafa;
}


/* ICON */

.social-btn i {

  opacity: 0.92;
}

/* =========================
   MOBILE HEADER
========================= */

@media (max-width: 768px) {

  .site-header {

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 12px;

    padding:
      18px 16px;

    height: auto;
  }


  /* ЛОГО */

  .logo {
  display: none;
}


  /* ПРАВАЯ ЧАСТЬ */

  .header-right {

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;
  }


  /* ТЕЛЕФОН */

  .phone-link {

    font-size: 18px;

    font-weight: 700;

    text-align: center;
  }


  /* ИКОНКИ */

  .socials {

    justify-content: center;

    flex-wrap: wrap;
  }


  /* КНОПКИ */

  .social-btn {

    width: 46px;
    height: 46px;
  }

}
.custom-marker {

  width: 30px !important;
  height: 30px !important;

  background: red !important;

  display: block !important;

  border-radius: 50%;

  border: 3px solid white;

  box-shadow: 0 0 10px rgba(0,0,0,.5);

}
.video-wrapper {

  width: 100%;

  margin-bottom: 20px;

  border-radius: 18px;

  overflow: hidden;
}

.video-wrapper iframe {

  width: 100%;

  aspect-ratio: 16 / 9;

  border: 0;

  display: block;
}
/* =========================
   FULLSCREEN IMAGE
========================= */

.image-modal {

  position: fixed;

  inset: 0;

  background:
    rgba(0,0,0,.92);

  z-index: 99999;

  display: none;

  justify-content: center;
  align-items: center;
}


.image-modal.open {

  display: flex;
}


.image-modal-img {

  max-width: 96vw;
  max-height: 96vh;

  object-fit: contain;
}


/* ЛОГО */

.image-modal-logo {

  position: absolute;

  top: 20px;
  right: 20px;

  width: 120px;

  opacity: .9;

  pointer-events: none;
}


/* КРЕСТИК */

.image-modal-close {

  position: absolute;

  top: 20px;
  left: 20px;

  color: white;

  font-size: 32px;

  cursor: pointer;

  z-index: 10;
}


/* ВОДЯНОЙ ЗНАК */

.project-image {

  position: relative;

  cursor: zoom-in;

  -webkit-user-drag: none;

  user-select: none;

  pointer-events: auto;
}


.project-image::selection {

  background: transparent;
}


/* ЗАПРЕТ ПЕРЕТАСКИВАНИЯ */

img {

  -webkit-user-drag: none;

  user-select: none;
}
.image-wrapper {

  position: relative;
}


.image-watermark {

  position: absolute;

  right: 12px;
  bottom: 12px;

  background:
    rgba(0,0,0,.55);

  color: white;

  padding:
    6px 10px;

  border-radius: 10px;

  font-size: 12px;

  font-weight: 700;

  pointer-events: none;
}
#modalSwiper {

  width: 100vw;

  height: 100vh;

}

#modalSwiper .swiper-slide {

  display: flex;

  justify-content: center;

  align-items: center;

}

#modalSwiper .swiper-slide img {

  width: auto;

  height: auto;

  max-width: 95vw;

  max-height: 95vh;

  object-fit: contain;

  border-radius: 12px;

}
.image-modal {

  backdrop-filter: blur(10px);

}
:root{
    --primary:#ff6a00;
    --primary-hover:#e55d00;
    --dark:#0f172a;
    --dark-light:#1e293b;
    --light:#f8fafc;
    --white:#ffffff;
    --gray:#64748b;
    --border:#e2e8f0;
    --radius:16px;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --transition:.3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#1e293b;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:min(1280px,92%);
    margin:auto;
}

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
    color:var(--dark);
}

.section-title p{
    color:var(--gray);
    font-size:18px;
}

/* HEADER */

.header{
    /* position:fixed; */
    top:0;
    width:100%;
    z-index:999;
    background:rgba(15,23,42,.92);
    backdrop-filter:blur(10px);
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
}

.logo {
 display: flex;
 align-items: center;
 text-decoration: none;
}


.logo img {
 height: clamp(56px, 7vw, 110px);
 width: auto;
 display: block;
 transition:
    transform 0.2s ease;
}
.logo:hover img {
transform: scale(1.03);
}

.nav{
    display:flex;
    gap:30px;
}

.nav a{
    color:#fff;
    font-weight:500;
    transition:var(--transition);
}

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

.mobile-menu-btn{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* BUTTONS */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:12px;
    transition:var(--transition);
    font-weight:600;
    cursor:pointer;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--primary-hover);
    transform:translateY(-2px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:var(--dark);
}

/* ================= HERO ================= */

.hero{

    height:100vh;

    position:relative;

    overflow:hidden;

}

.heroSwiper{

    position:absolute;

    inset:0;

}

.heroSwiper .swiper-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.45) 35%,
    rgba(0,0,0,.10) 100%
    );

    z-index:2;

}

.hero-content{

    position:absolute;

    top:0;
    left:0;

    width:100%;

    height:100%;

    z-index:100;

    display:flex;

    align-items:center;

}



   .hero-left{

    max-width:700px;

    position:relative;

    z-index:101;
	

}

}

.hero h1{

    color:white;

    font-size:clamp(42px, 5vw, 68px);

    line-height:1.05;

    font-weight:800;

    margin:20px 0;

    max-width:800px;

}

.hero p{

    color:rgba(255,255,255,.85);

    font-size:20px;

    line-height:1.6;

    max-width:650px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:15px;

}

.hero-stats{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.stat{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border-radius:18px;

    padding:18px 25px;

}

.stat span{

    color:white;

    font-size:34px;

    font-weight:700;

}





.hero-pagination{

    position:absolute;

    right:40px;

    top:50%;

    transform:translateY(-50%);

    z-index:20;

}

.hero-pagination .swiper-pagination-bullet{

    display:block;

    background:none;

    color:white;

    opacity:.35;

    font-size:28px;

    width:auto;

    height:auto;

    margin:20px 0 !important;

}

.hero-pagination .swiper-pagination-bullet-active{

    color:#ff6a00;

    opacity:1;

}
.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    color:white;

    font-size:14px;

    font-weight:600;

    backdrop-filter:blur(10px);
}
@media(max-width:1200px){

    .hero h1{

        font-size:48px;

    }

}
@media(max-width:768px){

    .hero h1{

        font-size:34px;

        line-height:1.15;

    }

    .hero p{

        font-size:16px;

    }

    .hero-stats{

        flex-wrap:wrap;

    }

}

/* PRODUCTS */

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h3{
    padding:20px 20px 10px;
    color:var(--dark);
}

.product-card p{
    padding:0 20px 25px;
    color:var(--gray);
}

/* ABOUT */

.about{
    background:#f8fafc;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:24px;
	height: clamp(56px, 7vw, 110px);
 width: auto;
 display: block;
 transition:
    transform 0.2s ease;
}

.about-content h2{
    font-size:42px;
    margin-bottom:25px;
}

.seo-text{
    color:#475569;
    margin-bottom:30px;
}

/* ADVANTAGES */



.advantages h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

/* ===================================
   ADVANTAGES ICONS
=================================== */

.advantages{

    background:#ffffff;

}

.advantages h2{

    text-align:center;

    color:#0f172a;

    margin-bottom:60px;

}

.advantages-icons{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:30px;

    flex-wrap:wrap;

}

.advantage-item{

    flex:1;

    min-width:150px;

    text-align:center;

    transition:.3s;

}

.advantage-item:hover{

    transform:translateY(-8px);

}

.advantage-item i{

    font-size:42px;

    color:#ff6a00;

    margin-bottom:18px;

}

.advantage-item span{

    display:block;

    color:#334155;

    font-weight:600;

    line-height:1.4;

}
@media(max-width:768px){

    .advantages-icons{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:35px;

    }

}


/* PROJECTS */

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* FAQ */

.faq{
    background:#f8fafc;
}

.faq-item{
    background:#fff;
    margin-bottom:15px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.faq-question{
    width:100%;
    padding:25px;
    border:none;
    text-align:left;
    background:#fff;
    font-size:18px;
    cursor:pointer;
}

.faq-answer{
    display:none;
    padding:0 25px 25px;
    color:#64748b;
}

.faq-item.active .faq-answer{
    display:block;
}

/* CONTACT */

/* CONTACT */

.contact{

    background:var(--dark);

    color:#fff;

    padding:100px 0;

}

.contact h2{

    text-align:center;

    margin-bottom:40px;

    font-size:42px;

    color:#fff;

}

.contact-form{

    max-width:700px;

    margin:auto;

    display:grid;

    gap:15px;

}

.contact-form input,
.contact-form select{

    padding:16px;

    border-radius:12px;

    border:none;

    width:100%;

    background:#fff;

    color:#111827;

}
/* ===================================
   FOOTER
=================================== */

.footer{

    background:#020617;

    color:#94a3b8;

    padding:70px 0 30px;

}

.footer-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:50px;

    flex-wrap:wrap;

}

.footer-social{

    display:flex;

    gap:18px;

}

.footer-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0f172a;

    color:#ffffff;

    font-size:20px;

    transition:.3s;

}

.footer-social a:hover{

    background:#ff6a00;

    transform:translateY(-5px);

}

.footer-contacts{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:12px;

}

.footer-contacts a{

    color:#ffffff;

    font-size:18px;

    transition:.3s;

}

.footer-contacts a:hover{

    color:#ff6a00;

}

.footer-address{

    color:#94a3b8;

    margin-top:8px;

}

.footer-divider{

    height:1px;

    background:rgba(255,255,255,.08);

    margin:35px 0;

}

.footer-middle{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    color:#cbd5e1;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    color:#64748b;

}

/* MOBILE */

@media(max-width:768px){

    .footer-top{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .footer-contacts{

        align-items:center;

    }

    .footer-bottom{

        justify-content:center;

        text-align:center;

    }

}
.footer-location{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.footer-route-btn{
    color:#ff6a00;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.footer-route-btn:hover{
    opacity:.8;
}

/* RESPONSIVE */

@media(max-width:1024px){

    .hero-content,
    .about-grid{
        grid-template-columns:1fr;
    }

    .product-grid,
    
    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .nav{
        display:none;
    }

    .mobile-menu-btn{
        display:block;
    }

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .product-grid,
    .advantages-grid,
    .projects-grid{
        grid-template-columns:1fr;
    }

    .section{
        padding:70px 0;
    }

    .section-title h2,
    .about-content h2,
    .advantages h2,
    .contact h2{
        font-size:32px;
    }

}
/* ANIMATIONS */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

/* SCROLLED HEADER */

.header-scrolled{
    background:#0f172a;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* MOBILE MENU */

.nav.mobile-open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#0f172a;
    padding:20px;
}

/* SCROLL TOP */

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ff6a00;
    color:#fff;
    cursor:pointer;
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:999;
}

.scroll-top.show{
    opacity:1;
    pointer-events:auto;
}
.projectsSwiper{
    overflow:visible;
    padding:30px 0 60px;
}

.projectsSwiper .swiper-slide{

    transition:.4s;
    transform:scale(.85);

    opacity:.7;
}

.projectsSwiper .swiper-slide-active{

    transform:scale(1);
    opacity:1;
}

.projectsSwiper img{

    width:100%;
    height:420px;

    object-fit:cover;

    border-radius:24px;

    cursor:pointer;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}
/* ==========================
   BRANDS
========================== */

.brands-section{

    background:#ffffff;

    overflow:hidden;

    padding:80px 0;

}

.brands-slider{

    width:100%;

    overflow:hidden;

    position:relative;

}

.brands-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:brandsScroll 35s linear infinite;

}

.brand-item{

    width:220px;

    height:120px;

    margin:0 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.brand-item:hover{

    transform:translateY(-8px);

}

.brand-item img{

    max-width:140px;

    max-height:60px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.8;

    transition:.3s;

}

.brand-item:hover img{

    filter:none;

    opacity:1;

}

@keyframes brandsScroll {

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}
/* ===================================
   FOOTER
=================================== */

.footer{

    background:#020617;

    color:#94a3b8;

    padding:70px 0 30px;

}

.footer-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:50px;

    flex-wrap:wrap;

}

.footer-social{

    display:flex;

    gap:18px;

}

.footer-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0f172a;

    color:#ffffff;

    font-size:20px;

    transition:.3s;

}

.footer-social a:hover{

    background:#ff6a00;

    transform:translateY(-5px);

}

.footer-contacts{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:12px;

}

.footer-contacts a{

    color:#ffffff;

    font-size:18px;

    transition:.3s;

}

.footer-contacts a:hover{

    color:#ff6a00;

}

.footer-address{

    color:#94a3b8;

    margin-top:8px;

}

.footer-divider{

    height:1px;

    background:rgba(255,255,255,.08);

    margin:35px 0;

}

.footer-middle{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    color:#cbd5e1;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    color:#64748b;

}

/* MOBILE */

@media(max-width:768px){

    .footer-top{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .footer-contacts{

        align-items:center;

    }

    .footer-bottom{

        justify-content:center;

        text-align:center;

    }

}
.footer-location{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.footer-route-btn{
    color:#ff6a00;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.footer-route-btn:hover{
    opacity:.8;
}
/* =====================================================
   TECHROL MAP SECTION
===================================================== */

.map-section{

    padding:120px 0;

    background:#f8fafc;

    position:relative;

}

.map-section .section-title{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;

}

.section-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:rgba(255,106,0,.08);

    border:1px solid rgba(255,106,0,.15);

    color:#ff6a00;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.map-section h2{

    font-size:52px;

    line-height:1.1;

    color:#0f172a;

    margin-bottom:20px;

}

.map-section p{

    color:#64748b;

    font-size:18px;

    line-height:1.7;

}

/* =====================================================
   MAP
===================================================== */

.uz-map{

    position:relative;

    display:block;

    max-width:1100px;

    margin:0 auto;

    transition:.4s;

}

.uz-map img{

    width:100%;

    height:auto;

    display:block;

    filter:drop-shadow(0 25px 50px rgba(0,0,0,.08));

}

.uz-map:hover{

    transform:translateY(-6px);

}

/* =====================================================
   PULSE POINTS
===================================================== */

.map-point{

    position:absolute;

    width:18px;

    height:18px;

    border-radius:50%;

    background:#ff6a00;

    z-index:3;

    cursor:pointer;

}

.map-point::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:50%;

    border:2px solid #ff6a00;

    animation:pulse-ring 2.5s infinite;

}

.map-point::after{

    content:"";

    position:absolute;

    inset:-20px;

    border-radius:50%;

    border:1px solid rgba(255,106,0,.35);

    animation:pulse-ring-2 2.5s infinite;

}

@keyframes pulse-ring{

    0%{

        transform:scale(.4);

        opacity:1;

    }

    100%{

        transform:scale(2.5);

        opacity:0;

    }

}

@keyframes pulse-ring-2{

    0%{

        transform:scale(.6);

        opacity:.7;

    }

    100%{

        transform:scale(3.5);

        opacity:0;

    }

}

/* =====================================================
   TOOLTIPS
===================================================== */

.map-point span{

    position:absolute;

    left:50%;

    bottom:32px;

    transform:translateX(-50%);

    background:#0f172a;

    color:white;

    padding:10px 14px;

    border-radius:12px;

    font-size:13px;

    line-height:1.4;

    white-space:nowrap;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    box-shadow:
    0 15px 30px rgba(0,0,0,.15);

}

.map-point span::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-6px;

    width:12px;

    height:12px;

    background:#0f172a;

    transform:
    translateX(-50%)
    rotate(45deg);

}

.map-point:hover span{

    opacity:1;

    visibility:visible;

    bottom:38px;

}

/* =====================================================
   CITY POSITIONS
===================================================== */

.tashkent{
    top:52%;
    left:74%;
}

.samarkand{
    top:65%;
    left:59%;
}

.navoi{
    top:45%;
    left:49%;
}

.bukhara{
    top:52%;
    left:39%;
}

.fergana{
    top:54%;
    left:84%;
}

.andijan{
    top:57%;
    left:93%;
}
/* =====================================================
   OPEN MAP BUTTON
===================================================== */

.map-open{

    position:absolute;

    left:50%;

    bottom:5%;

    transform:translateX(-50%);

    padding:18px 28px;

    border-radius:50px;

    background:rgba(255,255,255,.9);

    backdrop-filter:blur(10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

    transition:.3s;

}

.map-open span{

    color:#0f172a;

    font-weight:700;

}

.uz-map:hover .map-open{

    transform:
    translateX(-50%)
    translateY(-5px);

}

/* =====================================================
   STATS
===================================================== */

.map-stats{

    margin-top:80px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.map-stat{

    background:white;

    border-radius:24px;

    padding:35px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(15,23,42,.06);

    transition:.3s;

}

.map-stat:hover{

    transform:translateY(-8px);

}

.map-stat span{

    display:block;

    font-size:48px;

    font-weight:800;

    color:#ff6a00;

    margin-bottom:12px;

}

.map-stat p{

    font-size:16px;

    color:#64748b;

    margin:0;

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:992px){

    .map-section{

        padding:90px 0;

    }

    .map-section h2{

        font-size:40px;

    }

    .map-stats{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .map-section h2{

        font-size:32px;

    }

    .map-section p{

        font-size:16px;

    }

    .map-point{

        width:14px;

        height:14px;

    }

    .map-point span{

        font-size:11px;

        padding:8px 10px;

    }

    .map-open{

        padding:14px 20px;

    }

}

@media(max-width:480px){

    .map-section{

        padding:70px 0;

    }

    .map-section h2{

        font-size:28px;

    }

    .map-stat{

        padding:25px;

    }

    .map-stat span{

        font-size:38px;

    }

}
