body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  background: #f5f5f5;
  color: #333;
  overflow-x: hidden;
  height: 100%;
}
html, body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 40px 60px;
  flex-wrap: nowrap;
  flex: 1;
  gap: 60px;
}

.left-content {
  width: 30%;
  text-align: justify;
  text-align-last: left;
}

.left-content p {
  font-size: 16px;
  color: #999;
  margin-bottom: 10px;
}

.left-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin: 0;
}

.right-content {
  width: 50%;
}

.right-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  font-size: 18px;
  background: #f5f5f5;
  z-index: 1000;
  width: 95%;
}

.menu {
  display: flex;
  align-items: center;
  gap: 80px;
}

.menu-items {
  display: flex;
  gap: 20px;
  padding-top: 50px;
}

.menu-items a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu-items a:hover,
.menu-items a.active {
  color: #ce4a4a;
}

.language-items a {
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  transition: color 0.3s ease;
}

.language-items a:hover {
  color: #ce4a4a;
}

.language-container {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  display: none;
}

.language-container:hover .language-dropdown {
  display: block;
}

.language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  white-space: nowrap;
}

.language-dropdown a {
  display: block;
  padding: 5px 10px;
  font-size: 14px;
}

.language-dropdown a:hover {
  background: #f0f0f0;
}

header .logo {
  font-weight: bold;
  font-size: 20px;
}

.product-section {
  padding: 140px 40px 60px;
}

.product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.product:nth-child(even) {
  flex-direction: row-reverse;
}

.product img {
  max-width: 30%;
  height: auto;
}

.product-text {
  max-width: 50%;
}

.product-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.product-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.learn-more {
  padding: 10px 24px;
  border: 1px solid #ccc;
  border-radius: 30px;
  background: #fff;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.learn-more:hover {
  background: #ce4a4a;
  color: #fff;
  border-color: #ce4a4a;
}

.bottom-bar {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 40px;
  font-size: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bottom-bar img {
  height: 60px;
  width: auto;
}

.footer-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.footer-contact {
  font-size: 13px;
  color: #ccc;
}

.bottom-bar .icons {
  display: flex;
  gap: 15px;
}

.bottom-bar a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.pagination {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagination span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
}

.pagination span.active {
  background: #333;
}

.pagination button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  top: 20px;
  right: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
   position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh; /* Full screen */
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* important */
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu .menu-items {
  flex-direction: column;
  gap: 20px;
}

.mobile-menu .language-items {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #333;
  background-color: #f9f9f9; /* optional for testing */
}


.mobile-menu .language-items a {
  text-decoration: none;
  color: inherit;
  margin: 0 5px;
}

.mobile-menu .language-items a:hover {
  color: #ce4a4a;
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #f5f5f5;
  align-items: center;
  padding: 10px 20px;
  z-index: 1002;
}

.mobile-header img {
  width: 30px;
  height: 60px;
  margin-right: 10px;
}

.mobile-header .company-name {
  font-size: 18px;
  line-height: 1;
}

/* RESPONSIVE FIXES */
@media (min-width: 901px) {
  .mobile-header {
    display: none !important;
  }
}

@media (max-width: 1150px) {
  header .language-items {
    display: none;
  }
  .language-container {
    display: block;
  }
}


@media (max-width: 900px) {
  .menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .right {
    display: none;
  }
  .language-container {
    display: none;
  }

  body main {
    flex-direction: column;
    padding: 80px 10px 20px !important;
    text-align: center;
  }

  .left-content {
    width: 100%;
    margin: 0;
  }

  .left-content h1 {
    font-size: 32px;
    word-break: break-word;
  }

  .right-content {
    width: 100%;
    margin: 0;
  }

  .right-content img {
    margin-top: 10px;
  }

  .product {
    flex-direction: column !important;
    align-items: center;
  }

  .product img,
  .product-text {
    max-width: 100%;
    text-align: center;
  }

  .product-text h2 {
    font-size: 28px;
  }

  .product-text p {
    font-size: 15px;
  }

  .product-section {
    padding: 0px 20px 20px !important;
  }

  .product img {
    margin-top: 40px;
  }

  header {
    display: none !important;
  }

  .form-wrapper {
    flex-direction: column;
    align-items: center;
  }

  #contactForm {
    width: 100%;
    max-width: 100%;
  }

  #contactForm div {
    flex-direction: column !important;
  }

  #contactForm input,
  #contactForm select,
  #contactForm textarea,
  #contactForm button {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    margin-top: 10px;
  }
}

.bottom-bar .profile {
  flex-direction: column;
  align-items: flex-start;
}

.footer-text-block.horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-text,
.footer-contact {
  font-size: 14px;
  line-height: 1.4;
  color: #ccc;
}

.footer-left {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.footer-left img {
  height: 60px;
  width: auto;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
}


.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-top {
  flex-grow: 1;
}

.mobile-menu .language-items {
  display: block;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #333;
  background-color: #f9f9f9;
}

