/* =========================================
   MOBILE VERSION — CLEAN & FAST
   Target: max-width 768px
   ========================================= */

/* -------- RESET & BASE -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #f5f7fa;
  color: #2d3436;
  line-height: 1.6;
  overflow-x: hidden;
}

/* -------- CONTAINER -------- */
.container {
  width: 100%;
  padding: 0 16px;
}

/* -------- DISABLE HEAVY DESKTOP EFFECTS -------- */
.parallax-container,
.floating-wrapper,
.marquee-track {
  display: none !important;
}

/* -------- HEADER -------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 64px;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 2000;
}

.header-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 42px;
}

/* -------- BURGER -------- */
.burger-menu {
  display: block;
  font-size: 26px;
  background: none;
  border: none;
  color: #2b5876;
}

/* -------- MOBILE NAV -------- */
.nav-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 3000;
}

.nav-menu.active {
  transform: translateX(0);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.nav-link {
  font-size: 1.2rem;
  font-weight: 700;
}

/* -------- HERO -------- */
.hero-section {
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* -------- BUTTONS -------- */
.btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: 40px;
}

/* -------- DOMS -------- */
.doms-section {
  padding: 60px 0;
}

.doms-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.doms-info {
  padding: 0;
  text-align: center;
}

.doms-image-decoration {
  height: 220px;
  border-radius: 14px;
}

/* -------- PRODUCTS -------- */
.products-section {
  padding: 70px 0;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.product-card {
  padding: 28px 22px;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

/* -------- EVENTS -------- */
.events-section {
  padding: 60px 0;
}

.info-grid,
.events-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.event-block {
  padding: 24px;
}

/* -------- CONTACTS -------- */
.contacts-section {
  padding: 60px 0 80px;
}

.contacts-grid {
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-info {
  padding: 28px;
}

.info-item {
  gap: 16px;
}

.info-item i {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}

/* -------- MAPS -------- */
.map-card {
  padding: 20px;
}

.map-frame {
  height: 220px;
}

/* -------- FOOTER -------- */
.main-footer {
  padding: 24px 0;
}

.footer-content {
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

/* -------- SCROLL TOP -------- */
.scroll-top-btn {
  margin: 20px auto 0;
  width: 200px;
  justify-content: center;
}

/* -------- PERFORMANCE -------- */
* {
  animation: none !important;
  transition: none !important;
}
