:root {
  --bg: #f9fcff;
  --bg-soft: #f2f9ff;
  --white: #ffffff;
  --text: #173042;
  --muted: #62809a;
  --line: rgba(23, 48, 66, 0.08);
  --brand: #8fd3ff;
  --brand-deep: #56acef;
  --accent: #e8f5ff;
  --shadow: 0 20px 60px rgba(86, 172, 239, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .nav-right,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-badges,
html[dir="rtl"] .booking-highlight-badges,
html[dir="rtl"] .faq-heading-row,
html[dir="rtl"] .footer-wrap {
  flex-direction: row-reverse;
}

html[dir="rtl"] .feature-list li {
  padding-left: 0;
  padding-right: 18px;
}

html[dir="rtl"] .feature-list li::before {
  left: auto;
  right: 0;
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans SC", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 30%, #f8fbff 100%);
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 253, 0.78);
  border-bottom: 1px solid rgba(19, 37, 46, 0.05);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo-wrap {
  width: 208px;
  height: 76px;
  overflow: hidden;
  background: rgba(248, 251, 253, 0.34);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  line-height: 1;
  white-space: nowrap;
}

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

.lang-select-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(84,199,215,.16);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(29, 67, 88, 0.08);
}

.lang-globe {
  font-size: 0.95rem;
}

.lang-select {
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
  outline: none;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.28), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(255,255,255,0.14), transparent 20%),
    linear-gradient(135deg, #a8dcff 0%, #8fd3ff 38%, #cdeaff 100%);
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 9% 7% 10% 7%;
  border-radius: 8px;
  border: 2px solid rgba(247, 252, 255, 0.9);
  background: linear-gradient(180deg, rgba(160, 214, 255, 0.18) 0%, rgba(160, 214, 255, 0.06) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.hero-media::after {
  content: '';
  position: absolute;
  left: 9%;
  top: 18%;
  width: 22%;
  height: 48%;
  background:
    url('./assets/logo-icon.png') no-repeat center center,
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.0) 28%, rgba(255,255,255,0.015) 100%);
  background-size: contain, auto;
  opacity: 0.16;
  filter: brightness(0) invert(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 40, 64, 0.34) 0%, rgba(12, 40, 64, 0.14) 46%, rgba(12, 40, 64, 0.05) 100%);
}

.hero-art {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.95;
}

.hero-art-1 {
  width: 300px;
  height: 300px;
  right: 4%;
  top: 9%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.14), rgba(255,255,255,.03));
}

.hero-art-2 {
  width: 420px;
  height: 170px;
  right: -3%;
  bottom: 10%;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(143, 219, 230, .06));
}

.hero-art-3 {
  width: 220px;
  height: 220px;
  left: 72%;
  bottom: 14%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.10), rgba(84,199,215,.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 760px;
  padding: 110px 0 90px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6c9fb3;
}

.hero .eyebrow {
  color: rgba(255,255,255,0.78);
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-copy {
  margin: 20px 0 0;
  max-width: 640px;
  color: rgba(255,255,255,0.92);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.booking-card:hover,
.room-card:hover,
.gallery-card:hover,
.contact-card:hover,
.soft-card:hover,
.mini-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #c5e7ff 0%, #8fd3ff 100%);
  color: #10324a;
  box-shadow: 0 18px 44px rgba(86, 172, 239, 0.20);
}

.btn-secondary {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
}

.btn-strong {
  min-height: 66px;
  padding: 0 34px;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
}

.hero .btn-primary {
  box-shadow: 0 22px 54px rgba(86, 172, 239, 0.28);
  background: linear-gradient(135deg, #def0ff 0%, #addcff 42%, #78c6ff 100%);
  border: 2px solid rgba(255,255,255,0.3);
}

.hero .btn-secondary {
  background: rgba(255,255,255,0.28);
  border: 2px solid rgba(255,255,255,0.52);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(8, 28, 39, 0.12);
}

.hero .btn-primary:hover,
.hero .btn-secondary:hover {
  box-shadow: 0 24px 58px rgba(8, 28, 39, 0.18);
}

.hero .btn-primary::after,
.hero .btn-secondary::after {
  content: '→';
  margin-left: 10px;
  font-size: 1.05em;
  line-height: 1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.hero-badges li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.92rem;
}

.strip {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

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

.strip-grid > div {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(19,37,46,0.05);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.strip-grid span {
  display: block;
  color: var(--brand-deep);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  font-weight: 700;
}

.strip-grid strong {
  font-size: 1.02rem;
  line-height: 1.5;
}

.section {
  padding: 96px 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(238,247,251,0.72) 0%, rgba(248,251,253,0.28) 100%);
}

.section-white {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,252,253,0.96) 100%);
}

.section-blue {
  background: linear-gradient(180deg, rgba(236, 247, 255, 0.96) 0%, rgba(246, 251, 255, 0.96) 100%);
}

.section-blue-soft {
  background: linear-gradient(180deg, rgba(243, 250, 255, 0.94) 0%, rgba(249, 253, 255, 0.96) 100%);
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 620px;
}

.faq-wrap {
  display: grid;
  gap: 22px;
}

.faq-heading-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.faq-heading-row .eyebrow {
  margin: 0;
  min-width: 56px;
}

.faq-heading-row h2 {
  margin: 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.03em;
}

.section p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.card,
.room-card,
.booking-card,
.gallery-card,
.contact-card,
.mini-card,
.faq-list details {
  background: rgba(244, 252, 255, 0.92);
  border: 1px solid rgba(84,199,215,.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.soft-card {
  padding: 28px;
  background: rgba(238, 249, 253, 0.92);
}

.soft-card h3,
.gallery-body h3,
.room-card h3,
.booking-card strong,
.mini-card h3 {
  margin-top: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
}

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

.gallery-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-media {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.gallery-carousel {
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms ease;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(238, 248, 252, 0.92);
}

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

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(29, 67, 88, 0.18);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

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

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

.carousel-slide.terrace-1 {
  background-image: url('./assets/terrace/微信图片_20260316180934_105_1.jpg');
}

.carousel-slide.terrace-2 {
  background-image: url('./assets/terrace/微信图片_20260316180935_106_1.jpg');
}

.carousel-slide.terrace-3 {
  background-image: url('./assets/terrace/微信图片_20260316180938_108_1.jpg');
}

.carousel-slide.terrace-4 {
  background-image: url('./assets/terrace/微信图片_20260316180939_109_1.jpg');
}

.carousel-slide.terrace-5 {
  background-image: url('./assets/terrace/微信图片_20260316183819_158_1.jpg');
}

.carousel-slide.terrace-6 {
  background-image: url('./assets/terrace/微信图片_20260316183909_189_1.jpg');
}

.carousel-slide.public-1 {
  background-image: url('./assets/public-area/微信图片_20260316180940_110_1.jpg');
}

.carousel-slide.public-2 {
  background-image: url('./assets/public-area/微信图片_20260316180941_111_1.jpg');
}

.carousel-slide.public-3 {
  background-image: url('./assets/public-area/微信图片_20260316181013_128_1.jpg');
}

.carousel-slide.public-4 {
  background-image: url('./assets/public-area/微信图片_20260316181224_129_1.jpg');
}

.carousel-slide.public-5 {
  background-image: url('./assets/public-area/微信图片_20260316181229_131_1.jpg');
}

.carousel-slide.public-6 {
  background-image: url('./assets/public-area/微信图片_20260316181256_141_1.jpg');
}

.carousel-slide.bed-1 {
  background-image: url('./assets/clean-beds/微信图片_20260316180930_102_1.jpg');
}

.carousel-slide.bed-2 {
  background-image: url('./assets/clean-beds/微信图片_20260316183826_166_1.jpg');
}

.carousel-slide.bed-3 {
  background-image: url('./assets/clean-beds/微信图片_20260316183830_170_1.jpg');
}

.carousel-slide.bed-4 {
  background-image: url('./assets/clean-beds/微信图片_20260316180919_91_1.jpg');
}

.carousel-slide.bed-5 {
  background-image: url('./assets/clean-beds/微信图片_20260316180927_98_1.jpg');
}

.gallery-body {
  padding: 20px 22px 24px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.room-card {
  padding: 24px;
}

.room-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.room-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1.1rem;
}

.accent-card {
  background: linear-gradient(180deg, #f0fbfd 0%, #ffffff 100%);
  border-color: rgba(84,199,215,.28);
}

.fine-print {
  margin-top: 18px;
  font-size: 0.92rem;
}

.facilities-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.facility-feature-card,
.facility-photo-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(84,199,215,.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.facility-feature-media,
.facility-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.facility-feature-media {
  min-height: 390px;
}

.facility-feature-body {
  position: relative;
  padding: 24px 24px 26px;
  min-height: 260px;
  overflow: hidden;
}

.facility-feature-body > p {
  max-width: 100%;
}

.facility-feature-body > * {
  position: relative;
  z-index: 1;
}

.facility-inline-photos {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.facility-inline-photo {
  display: block;
  min-height: 112px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(84,199,215,.12);
  box-shadow: 0 14px 30px rgba(29, 67, 88, 0.12);
}

.facility-bottom-photo {
  margin-top: 14px;
  min-height: 220px;
  border-radius: 18px;
  background-image: url('./assets/facility-stickers/9971.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(84,199,215,.12);
  box-shadow: 0 16px 34px rgba(29, 67, 88, 0.12);
}

.inline-photo-1 {
  background-image: url('./assets/facility-stickers/微信图片_20260316181253_138_1.jpg');
}

.inline-photo-2 {
  background-image: url('./assets/facility-stickers/微信图片_20260316183757_144_1.jpg');
}

.inline-photo-3 {
  background-image: url('./assets/facility-stickers/微信图片_20260316183758_145_1.jpg');
}

.inline-photo-4 {
  background-image: url('./assets/facility-stickers/微信图片_20260316183802_147_1.jpg');
}

.inline-photo-5 {
  background-image: url('./assets/facility-stickers/微信图片_20260316183804_148_1.jpg');
}

.inline-photo-6 {
  background-image: url('./assets/facility-stickers/微信图片_20260316183810_153_1.jpg');
}

.facility-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.facility-feature-body h3,
.facility-photo-copy h3 {
  margin: 0 0 10px;
}

.facility-feature-body p,
.facility-photo-copy p {
  margin: 0;
}

.facility-side-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.facility-photo-card.tall {
  grid-column: span 2;
}

.facility-photo-card.wide-card {
  grid-column: span 2;
}

.facility-photo-card.tall .facility-photo {
  min-height: 280px;
}

.facility-photo-card .facility-photo {
  min-height: 190px;
}

.facility-photo-card.wide-card .facility-photo {
  min-height: 220px;
}

.facility-photo-copy {
  padding: 18px 20px 22px;
}

.facility-photo-laundry {
  background-image: url('./assets/facilities/微信图片_20260316181245_135_1.jpg');
}

.facility-photo-wash {
  background-image: url('./assets/facilities/微信图片_20260316181247_136_1.jpg');
}

.facility-photo-shower {
  background-image: url('./assets/facilities/微信图片_20260316181255_140_1.jpg');
}

.facility-photo-locker {
  background-image: url('./assets/facilities/微信图片_20260316183807_150_1.jpg');
}

.facility-photo-dressing {
  background-image: url('./assets/facilities/微信图片_20260316183816_156_1.jpg');
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.facility-pills {
  margin-top: 22px;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(29, 67, 88, 0.06);
  color: var(--text);
  font-weight: 600;
}

.booking-section {
  position: relative;
  background: linear-gradient(135deg, rgba(232,248,253,0.96) 0%, rgba(255,255,255,0.98) 52%, rgba(225,246,251,0.96) 100%);
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(84,199,215,0.18), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(84,199,215,0.12), transparent 20%),
    radial-gradient(circle at 78% 78%, rgba(30,146,179,0.10), transparent 18%);
  pointer-events: none;
}

.booking-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 18px 0;
}

.booking-copy-block h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
}

.booking-highlight-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.booking-highlight-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(84,199,215,.22);
  box-shadow: 0 12px 28px rgba(29, 67, 88, 0.08);
  color: var(--brand-deep);
  font-weight: 700;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.booking-grid-compact {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.booking-card {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  display: grid;
  gap: 10px;
  min-height: 170px;
  border-radius: 24px;
  border: 1px solid rgba(84,199,215,.24);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 20px 44px rgba(29, 67, 88, 0.10);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.booking-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.38), transparent 42%);
  pointer-events: none;
}

.booking-card > * {
  position: relative;
  z-index: 1;
}

.booking-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.booking-note-card {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px dashed rgba(84,199,215,.45);
  background: rgba(234, 248, 252, 0.92);
  color: var(--text);
  box-shadow: 0 16px 36px rgba(29, 67, 88, 0.08);
}

.booking-note-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 48%);
  pointer-events: none;
}

.booking-note-card > * {
  position: relative;
  z-index: 1;
}

.booking-note-card small {
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.booking-note-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}

.booking-note-card p {
  margin: 10px 0 0;
}

.booking-note-card span {
  font-weight: 700;
}

.booking-card small {
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.booking-card strong {
  font-size: 1.25rem;
}

.booking-card span {
  color: var(--muted);
}

.booking-card.primary {
  background: linear-gradient(180deg, #f6fdff 0%, #ffffff 100%);
  border-color: rgba(84,199,215,.42);
  box-shadow: 0 20px 44px rgba(60, 183, 205, 0.16);
}

.booking-card.primary strong {
  font-size: 1.5rem;
}

.booking-card.primary::after {
  content: '→';
  justify-self: end;
  align-self: end;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #90e7f2 0%, #49c6d8 100%);
  color: #08303c;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(60, 183, 205, 0.24);
}

.booking-card.primary small {
  font-size: 0.82rem;
}

.booking-card.primary span {
  font-size: 1rem;
}

.policy-card-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.mini-card {
  padding: 22px;
}

.compact {
  gap: 10px;
}

.parking-tip {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.surrounding-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.surrounding-media {
  min-height: 240px;
}

.surrounding-media.city-1 {
  background-image: url('./assets/around-cards/chunxi.jpg');
  background-size: cover;
  background-position: center;
}

.surrounding-media.city-2 {
  background-image: url('./assets/around-cards/ifs.jpg');
  background-size: cover;
  background-position: center;
}

.surrounding-media.city-3 {
  background-image: url('./assets/around-cards/around.jpg');
  background-size: cover;
  background-position: center;
}

.surrounding-body {
  padding: 20px 22px 24px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-box {
  padding: 18px;
  background: rgba(236, 249, 253, 0.92);
  border: 1px solid rgba(84,199,215,.16);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.faq-static-list {
  gap: 16px;
}

.faq-item-card {
  padding: 22px 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(84,199,215,.12);
  border-radius: 24px;
}

.faq-item-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.faq-item-card p {
  margin: 0;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.contact-card {
  padding: 34px 30px;
  display: grid;
  gap: 30px;
}

.contact-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.06rem;
  font-weight: 800;
}

.contact-card strong {
  display: block;
  font-size: 1.42rem;
  line-height: 1.45;
  margin-bottom: 8px;
}

.site-footer {
  border-top: 1px solid rgba(19,37,46,0.05);
  background: #f8fbfd;
}

.footer-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .strip-grid,
  .rooms-grid,
  .booking-grid,
  .two-col,
  .booking-wrap,
  .contact-grid,
  .surroundings-grid,
  .facilities-layout,
  .facility-side-grid,
  .pill-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-media {
    min-height: 280px;
  }

  .facility-inline-photos {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .nav-right {
    gap: 10px;
  }

  .lang-select-wrap {
    padding: 0 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 100px 0 72px;
  }

  .strip-grid,
  .rooms-grid,
  .booking-grid,
  .two-col,
  .booking-wrap,
  .contact-grid,
  .surroundings-grid,
  .facilities-layout,
  .facility-side-grid,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .facility-photo-card.tall,
  .facility-photo-card.wide-card {
    grid-column: span 1;
  }

  .facility-feature-media {
    min-height: 280px;
  }

  .facility-feature-body {
    min-height: auto;
    padding-bottom: 26px;
  }

  .facility-feature-body > p {
    max-width: 100%;
  }

  .facility-inline-photos {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-inline-photo {
    min-height: 92px;
  }

  .facility-photo-card.tall .facility-photo,
  .facility-photo-card .facility-photo,
  .facility-photo-card.wide-card .facility-photo {
    min-height: 220px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .faq-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .footer-wrap {
    min-height: auto;
    padding: 18px 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .beian-row {
    font-size: 13px;
    color: rgba(17, 49, 60, 0.72);
  }

  .footer-wrap-formal {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-brand {
    margin: 0;
    font-weight: 700;
    color: rgba(17, 49, 60, 0.92);
  }

  .footer-copyright {
    margin: 0;
    max-width: 860px;
    line-height: 1.7;
  }

  .footer-filing-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
  }

  .footer-filing-stack p {
    margin: 0;
  }

  .gongan-row {
    font-size: 13px;
    color: rgba(17, 49, 60, 0.72);
  }

  .gongan-row.is-placeholder {
    color: rgba(17, 49, 60, 0.45);
  }

  .floating-booking-bar {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1.6fr 1fr;
  }
}

.hero-trust-copy {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 34rem;
}

.booking-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(125, 201, 223, 0.14);
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(125, 201, 223, 0.26);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mini-action:hover {
  transform: translateY(-2px);
  background: rgba(125, 201, 223, 0.22);
  box-shadow: 0 10px 24px rgba(79, 146, 171, 0.12);
}

.mini-action-soft {
  background: rgba(255, 255, 255, 0.8);
}

.floating-booking-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(23, 67, 78, 0.18);
  border: 1px solid rgba(125, 201, 223, 0.26);
}

.floating-booking-main,
.floating-booking-side {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
}

.floating-booking-main {
  background: linear-gradient(135deg, #5dc4e0, #4c86ff);
  color: #fff;
}

.floating-booking-side {
  background: rgba(125, 201, 223, 0.12);
  color: var(--brand-deep);
}

body {
  padding-bottom: 104px;
}

@media (min-width: 1024px) {
  .floating-booking-bar {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 360px;
  }
}
