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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  line-height: 1.5;
  background: #fff;
}

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

img,
video {
  max-width: 100%;
  display: block;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: bold;
  font-size: 32px;
  white-space: nowrap;
}

.menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.menu a {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}

.menu a:hover {
  color: #e11d48;
  opacity: 1;
}

.nav-btn {
  background: #c90f02;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.2s ease;
}

.nav-btn:hover {
  background: #ab0d02;
}

.back-shuilink-link {
  color: #2563eb !important;
  font-weight: 700;
  white-space: nowrap;
}

.back-shuilink-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 680px;
  overflow: hidden;
  background: #000 url("../assets/demo/c0.JPG") center center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.5);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 920px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-overlay h4 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 700;
}

.hero-overlay h1 {
  font-size: 56px;
  line-height: 1.12;
  margin-bottom: 16px;
}

.hero-overlay p {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.tagline {
  margin-top: 14px !important;
  font-size: 14px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  background: #f0f0f0;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ===== GENERAL SECTIONS ===== */
.section {
  padding: 80px 20px;
}

.section-light {
  background: #fafafa;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #c90f02;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #666;
  font-size: 18px;
}

.page-hero {
  padding-bottom: 40px;
}

.page-title {
  font-size: 42px;
}

/* ===== HOME REGION CARDS ===== */
.region-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.region-card {
  display: block;
  padding: 28px;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.region-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.region-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.region-card p {
  color: #666;
  margin-bottom: 16px;
}

.region-card span {
  color: #c90f02;
  font-weight: bold;
}

/* ===== GENERIC CARDS ===== */
.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  padding: 25px 30px;
  border-radius: 14px;
  background: #f7f7f7;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.card p {
  color: #666;
}

/* ===== GALLERY ===== */
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-grid img {
  width: 32%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-video-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-video-wrap video {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
}

.social-video {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-video video {
  width: 80%;
  max-width: 900px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* ===== CTA ===== */
.center-action {
  text-align: center;
  margin-top: 24px;
}

.outline-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  border: 1px solid #111;
  font-weight: bold;
  transition: all 0.2s ease;
}

.outline-btn:hover {
  background: #111;
  color: white;
}

.filled-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  background: #c90f02;
  color: white;
  font-weight: bold;
  transition: 0.2s ease;
}

.filled-btn:hover {
  background: #ab0d02;
}

.text-btn {
  display: inline-block;
  padding: 12px 6px;
  font-weight: bold;
  color: #111;
}

/* ===== CONTACT BASIC ===== */
.contact-box {
  text-align: center;
}

.contact-box p {
  margin-top: 10px;
  font-size: 18px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 20px;
  text-align: center;
  background: #111;
  color: white;
  margin-top: 60px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-nav a {
  color: white;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-contact {
  margin-top: 8px;
}

.footer-contact p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-copy {
  margin-top: 26px;
  opacity: 0.82;
  font-size: 14px;
  line-height: 1.7;
}

.footer-shuilink-link {
  color: #60a5fa;
  font-weight: 700;
  text-decoration: none;
}

.footer-shuilink-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* ===== BOOK ONLINE ===== */
.region-list-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.region-detail-card {
  background: white;
  border: 1px solid #e4e4e4;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.region-detail-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.region-states {
  color: #666;
  margin-bottom: 18px;
}

.region-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.region-phone {
  color: #444;
  font-weight: 600;
}

.call-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.call-card {
  display: block;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.call-card h3 {
  margin-bottom: 8px;
}

/* ===== LOCATIONS ===== */
.locations-directory,
.location-blocks {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.location-block {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 26px;
  background: white;
}

.location-block h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.location-states {
  color: #555;
  margin-bottom: 16px;
}

.location-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-city-list a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fafafa;
}

.location-city-list a:hover {
  background: #f0f0f0;
}

/* ===== REGION PAGE ===== */
.region-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.region-page-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 22px;
}

.region-meta-card,
.region-state-card,
.city-info-card,
.faq-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.region-meta-card h2,
.region-state-card h3,
.city-info-card h2,
.faq-card h3 {
  margin-bottom: 10px;
}

.region-state-card p,
.city-info-card p,
.faq-card p {
  color: #666;
}

/* ===== CITY GRID ===== */
.city-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.city-card {
  display: block;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.city-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.city-card p {
  color: #666;
  margin-bottom: 14px;
}

.city-card span {
  color: #c90f02;
  font-weight: bold;
}

/* ===== CITY PAGE ===== */
.city-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.city-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.city-feature-list {
  padding-left: 18px;
}

.city-feature-list li {
  margin-top: 8px;
}

.booking-embed-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ===== MENU PAGE ===== */
.menu-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.menu-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.menu-card h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.menu-card p {
  color: #4d5562;
  margin-bottom: 16px;
  font-size: 17px;
}

.menu-subtitle {
  margin-top: 28px;
  color: #c62828;
}

.food-list {
  padding-left: 20px;
  color: #2c3440;
}

.food-list li {
  margin-bottom: 10px;
  font-size: 17px;
}

/* ===== FAQ PAGE ===== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
}

.faq-question:hover {
  opacity: 0.85;
}

.faq-icon {
  font-size: 28px;
  font-weight: 400;
  color: #c2410c;
  margin-left: 18px;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
  padding-bottom: 0;
}

.faq-answer p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.75;
  max-width: 780px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
  align-items: start;
}

.contact-left h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin-top: 10px;
  font-size: 16px;
  color: #444;
}

.contact-address {
  margin-top: 18px;
}

.contact-right {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  margin-top: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .navbar {
    padding: 16px 18px;
  }

  .hero-overlay h1 {
    font-size: 42px;
  }

  .hero-overlay p {
    font-size: 18px;
  }

  .gallery-grid img {
    width: 48%;
  }

  .region-home-grid,
  .region-list-grid,
  .call-grid,
  .region-page-main,
  .city-main-grid,
  .city-grid,
  .menu-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .social-video video {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .logo {
    font-size: 24px;
    text-align: center;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    position: static;
    width: 100%;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-top: none;
  }

  .menu a {
    font-size: 15px;
    font-weight: 600;
  }

  .nav-btn {
    display: none;
  }

  .hero {
    height: 78vh;
    min-height: 560px;
  }

  .hero-overlay h1 {
    font-size: 32px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  .section-header h2,
  .page-title {
    font-size: 32px;
  }

  .gallery-grid img {
    width: 100%;
    min-height: 220px;
  }

  .card {
    width: 100%;
    max-width: 360px;
  }

  .contact-box p,
  .faq-answer p {
    font-size: 15px;
  }

  .faq-question {
    font-size: 19px;
    line-height: 1.4;
  }

  .faq-icon {
    font-size: 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .back-shuilink-link {
    display: none;
  }
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.how-it-works-header {
  max-width: 980px;
}

.how-it-works-header h2 {
  font-size: 58px;
  line-height: 1.15;
  max-width: 980px;
  margin: 0 auto 18px;
}

.how-it-works-header .section-subtitle {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works-grid {
  max-width: 1400px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.how-card {
  background: #c90f02;
  color: white;
  border-radius: 36px;
  padding: 48px 36px;
  text-align: center;
}

.how-card-icon {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 400;
}

.how-card h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: white;
}

.how-card p {
  color: white;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
}

.how-card-main {
  font-size: 22px;
  font-weight: 700;
}

.how-card-emphasis {
  font-style: italic;
  font-weight: 700;
  margin-top: 10px;
}

.how-card-small {
  font-size: 15px;
  opacity: 0.95;
  max-width: 560px;
  margin: 14px auto 0;
}

@media (max-width: 900px) {
  .how-it-works-header h2 {
    font-size: 42px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .how-it-works-header h2 {
    font-size: 32px;
  }

  .how-card {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .how-card-icon {
    font-size: 54px;
  }

  .how-card h3 {
    font-size: 24px;
  }

  .how-card p {
    font-size: 16px;
  }

  .how-card-main {
    font-size: 19px;
  }

  .how-card-small {
    font-size: 14px;
  }
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-call,
.float-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.float-call {
  background: #2563eb;
  color: #ffffff;
}

.float-text {
  background: #ffffff;
  color: #c90f02;
  border: 2px solid #c90f02;
}

.float-call:hover,
.float-text:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

/* 手机端 */
@media (max-width: 768px) {
  .floating-contact {
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .float-call,
  .float-text {
    min-width: 132px;
    padding: 12px 16px;
    font-size: 14px;
  }
}