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

body {
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
  color: #1f2328;
  background: #f3f1ec;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17, 17, 17, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

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

.logo {
  font-weight: 700;
  font-size: 18px;
  color: #f5e6c8;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  color: rgba(255, 255, 255, 0.75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 999px;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: #f2d090;
  color: #1b1b1b;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(18, 33, 67, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #c8a05a, #f2d090);
  color: #1b1b1b;
}

.btn-outline {
  border-color: #c8a05a;
  color: #c8a05a;
  background: transparent;
}

.btn-light {
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5e6c8;
}

.hero {
  padding: 72px 0 56px;
  background: linear-gradient(rgba(14, 12, 10, 0.55), rgba(14, 12, 10, 0.55)),
    url("photo/business-hotel-almaty.jpg") top center/cover no-repeat;
  color: #f8f2e8;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.tag {
  display: inline-flex;
  background: rgba(200, 160, 90, 0.2);
  color: #f2d090;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  display: grid;
  gap: 12px;
}

.meta-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.meta-value {
  font-weight: 600;
}

.hero-card {
  background: rgba(17, 17, 17, 0.88);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  color: #f7f2e8;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.section-desc {
  color: #6b6157;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.code {
  background: #eef2ff;
  color: #3730a3;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0f0f0f;
  border: 1px solid #eceff3;
}

.carousel-track {
  position: relative;
  height: clamp(320px, 60vw, 620px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f0f0f;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.carousel-arrow.left {
  left: 16px;
}

.carousel-arrow.right {
  right: 16px;
}

.carousel-dot {
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(17, 24, 39, 0.4);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #ffffff;
}

.card {
  background: #fffaf2;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(200, 160, 90, 0.2);
}

.booking-form {
  display: grid;
  gap: 16px;
  background: #f9f5ec;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(200, 160, 90, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #3f3427;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(200, 160, 90, 0.35);
  font-size: 14px;
  background: #ffffff;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.form-hint {
  font-size: 13px;
  color: #9a6b2f;
  min-height: 18px;
}

.map-card {
  background: #fffaf2;
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 20px;
  border: 1px solid rgba(200, 160, 90, 0.2);
}

.map-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}

.footer {
  background: #14110d;
  color: #f5e6c8;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.footer .meta-label {
  color: rgba(245, 230, 200, 0.6);
}

.footer-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}


@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .lang-switch {
    order: 2;
    width: 100%;
    justify-content: center;
    padding: 8px;
  }

  .lang-switch button {
    padding: 8px 12px;
    font-size: 13px;
  }

  .header .btn {
    width: 100%;
  }

  .hero {
    padding: 56px 0 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card {
    padding: 18px;
  }

  .section {
    padding: 48px 0;
  }

  .carousel-track {
    height: clamp(220px, 70vw, 420px);
  }

  .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .map-actions {
    grid-template-columns: 1fr;
  }
}

