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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #f7f3ea 0%, #efe7d6 100%);
  padding: 14px;
}

div,
section,
header,
footer,
nav,
main,
article,
aside {
  border-radius: 18px;
  overflow: hidden;
}

.main-header,
.header-right,
.lang-switcher {
  overflow: visible !important;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
  margin: 10px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 50px;
}

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

.nav-menu a {
  text-decoration: none;
  font-size: 16px;
  color: #001f3f;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #b89b63;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 14px;
}

.lang-select {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.contact-btn {
  background: #d3b17e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #b89b63;
}

.form-box {
  background: #fffdf7;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  margin: 120px auto 40px;
}

.form-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #111;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  color: #000;
  font-size: 15px;
  box-sizing: border-box;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

.form-box textarea {
  resize: vertical;
  min-height: 110px;
}

.form-box button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #d3b17e;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.form-box button:hover {
  background: #c2a06d;
}

.company-phone {
  text-align: center;
  margin: -10px 0 22px;
  font-size: 15px;
  color: #333;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(194, 190, 190, 0.75),
    inset 0 -10px 18px rgba(0,0,0,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.call-btn:hover {
  background: #000;
  color: #f3efef;
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.call-btn:active {
  transform: translateY(0);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.18),
    inset 0 2px 10px rgba(0,0,0,0.25);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 9998;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(85vw, 320px);
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateX(-110%);
  transition: 0.28s ease;
  z-index: 9999;
  padding: 18px;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mobile-menu-title {
  margin: 0;
  font-weight: 800;
  color: #001f3f;
}

.close-menu {
  border: none;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #001f3f;
}

.mobile-menu a {
  display: block;
  padding: 14px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: #001f3f;
  font-weight: 600;
}

.mobile-menu a:hover {
  background: rgba(211,177,126,0.18);
}

.m-contact {
  margin-top: 10px;
  background: #d3b17e;
  color: #fff !important;
  text-align: center;
}

.mobile-lang {
  margin: 18px 0 10px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .lang-select {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
  }

  .menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .lang-switcher {
    display: none;
  }

  .form-box {
    margin: 90px auto 30px;
    padding: 24px;
    max-width: 92%;
  }
}
.footer {
  background-color: #111;
  color: #fff;
  padding: 20px 5%;
  text-align: center;
  margin-top: 30px;
}

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

.footer-copy {
  max-width: 900px;
  line-height: 1.6;
}

.footer p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

.footer-note {
  display: block;
  margin-top: 6px;
  color: #cfcfcf;
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-links a {
  color: #d3b17e;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .dot {
  color: #666;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #222;
  transition: background 0.3s;
}

.social-links a:hover {
  background-color: #555;
}

.social-links img {
  width: 20px;
  height: 20px;
}