/* ===== A1 HIBACHI PARTY STYLE.CSS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

:root {
  --a1-red: #dc2626;
  --a1-red-dark: #b91c1c;
  --a1-black: #111111;
  --a1-text: #181818;
  --a1-muted: #666666;
  --a1-soft: #f8f8f8;
  --a1-border: #e5e5e5;
  --a1-white: #ffffff;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--a1-red);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--a1-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6%;
}

.logo {
  flex: 0 0 auto;
}

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

.site-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

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

.menu a {
  font-size: 14px;
  font-weight: 900;
  color: var(--a1-black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.menu a:hover {
  color: var(--a1-red);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--a1-red);
  color: #fff;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid var(--a1-red);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.24);
}

.nav-btn:hover {
  background: var(--a1-red-dark);
  border-color: var(--a1-red-dark);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: var(--a1-black);
  padding: 4px 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  background: #000;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.38),
    rgba(0, 0, 0, 0.68)
  );
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3;
  width: min(1050px, 92vw);
  text-align: center;
  color: #fff;
  padding: 40px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: min(520px, 90vw);
  margin: 0 auto 22px;
}

.hero-overlay h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  margin: 0 auto 18px;
  letter-spacing: -2px;
  max-width: 980px;
  color: #fff;
}

.hero-overlay p {
  font-size: 19px;
  line-height: 1.7;
  max-width: 790px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  color: var(--a1-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 12px;
}

.hero .eyebrow {
  color: #ffb4b4;
}

.tagline {
  margin-top: 12px !important;
  font-weight: 900;
  color: #fff !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px !important;
}

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

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-trust-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  backdrop-filter: blur(8px);
}

/* ===== BUTTONS ===== */
.btn,
.btn-primary,
.btn-secondary,
.outline-btn,
.filled-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary,
.filled-btn {
  background: var(--a1-red);
  color: #fff !important;
  border: 2px solid var(--a1-red);
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.22);
}

.btn-primary:hover,
.filled-btn:hover {
  background: var(--a1-red-dark);
  border-color: var(--a1-red-dark);
}

.btn-secondary,
.outline-btn {
  background: #fff;
  color: var(--a1-red) !important;
  border: 2px solid var(--a1-red);
}

.btn-secondary:hover,
.outline-btn:hover {
  background: var(--a1-red);
  color: #fff !important;
}

/* ===== SECTIONS ===== */
.section {
  padding: 82px 6%;
  background: #fff;
}

.section-light {
  background: var(--a1-soft);
}

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

.section-header h2,
.page-title {
  color: var(--a1-black);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -1.4px;
}

.section-subtitle {
  color: var(--a1-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.center-action {
  text-align: center;
  margin-top: 28px;
}

.trust-strip {
  padding: 18px 6%;
  background: #fff;
  border-bottom: 1px solid var(--a1-border);
  text-align: center;
  color: var(--a1-red);
  font-weight: 900;
}

/* ===== BOOKING SEARCH ===== */
.booking-search-wrap,
.final-cta-box {
  max-width: 980px;
  margin: 0 auto;
}

.booking-search-panel {
  background: #fff;
  border: 1px solid var(--a1-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.booking-search-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.booking-search-box input {
  flex: 1 1 420px;
  min-width: 260px;
  height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid var(--a1-border);
  font-size: 16px;
  outline: none;
  background: #fff;
  color: var(--a1-black);
}

.booking-search-box input:focus {
  border-color: var(--a1-red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.booking-search-box .btn,
.booking-search-box .btn-primary {
  height: 58px;
  min-width: 190px;
}

.city-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.city-chip {
  border: 1px solid var(--a1-border);
  background: #fff;
  color: var(--a1-black);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s ease;
}

.city-chip:hover {
  background: var(--a1-red);
  color: #fff;
  border-color: var(--a1-red);
}

.section-note {
  max-width: 900px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--a1-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== GRIDS ===== */
.intro-highlight-grid,
.why-grid,
.how-it-works-grid,
.city-home-grid,
.review-grid,
.faq-preview-grid {
  display: grid;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-highlight-grid,
.why-grid,
.review-grid,
.faq-preview-grid,
.how-it-works-grid,
.city-home-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ===== CARDS ===== */
.card,
.how-card,
.city-card,
.review-card,
.faq-preview-card,
.intro-highlight-card,
.region-card {
  background: #fff;
  border: 1px solid var(--a1-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card h3,
.how-card h3,
.city-card h3,
.review-card h3,
.faq-preview-card h3,
.intro-highlight-card h3,
.region-card h3 {
  margin: 0 0 10px;
  color: var(--a1-black);
  font-size: 22px;
}

.card p,
.how-card p,
.city-card p,
.review-card p,
.faq-preview-card p,
.intro-highlight-card p,
.region-card p {
  margin: 0;
  color: var(--a1-muted);
  line-height: 1.7;
}

.city-card,
.region-card {
  display: block;
  text-decoration: none;
  transition: 0.2s ease;
}

.city-card:hover,
.region-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.city-card span,
.region-card span {
  display: inline-block;
  margin-top: 14px;
  font-weight: 900;
  color: var(--a1-red);
}

/* ===== HOW IT WORKS ===== */
.how-card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--a1-red);
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
}

.how-card-main {
  font-weight: 900;
  color: var(--a1-black) !important;
  margin-bottom: 10px !important;
}

.how-card-small {
  font-size: 14px;
  margin-top: 10px !important;
}

/* ===== FEATURE SPLIT ===== */
.feature-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.feature-split img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.feature-copy h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--a1-black);
}

.feature-copy p {
  color: var(--a1-muted);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 20px;
}

/* ===== GALLERY / VIDEO ===== */
.gallery-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.social-video {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  background: #000;
}

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

/* ===== REVIEWS ===== */
.review-stars {
  color: var(--a1-red);
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.review-name {
  margin-top: 14px;
  font-weight: 900;
  color: var(--a1-black);
  display: block;
}

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

.faq-item {
  border-bottom: 1px solid var(--a1-border);
}

.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: 800;
  color: var(--a1-black);
  cursor: pointer;
}

.faq-icon {
  font-size: 28px;
  font-weight: 400;
  color: var(--a1-red);
  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: var(--a1-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 780px;
}

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

/* ===== FINAL CTA ===== */
.final-cta-box {
  padding: 42px 28px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #fff5f5);
  border: 1px solid var(--a1-border);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.final-cta-box h2 {
  color: var(--a1-black);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  margin-bottom: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--a1-black);
  color: rgba(255, 255, 255, 0.78);
  padding: 42px 6%;
  text-align: center;
  margin-top: 0;
}

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

.footer-nav a {
  color: #fff;
  font-weight: 800;
}

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

.footer-contact {
  margin-top: 18px;
  text-align: center;
}

.footer-contact p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact a,
.footer-shuilink-link {
  color: #fff;
  font-weight: 800;
}

.footer-contact a:hover,
.footer-shuilink-link:hover {
  text-decoration: underline;
}

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

/* ===== FLOATING CTA ===== */
.desktop-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: 260px;
}

.desktop-cta-stack a,
.mobile-cta-stack a {
  text-align: center;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.desktop-text-now,
.mobile-text-now {
  background: var(--a1-black);
}

.desktop-book-now,
.mobile-book-now {
  background: var(--a1-red);
}

.mobile-cta-stack {
  display: none;
}

/* ===== LEGACY FLOATING CONTACT SUPPORT ===== */
.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;
  min-width: 150px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
}

.float-call {
  background: var(--a1-red);
  color: #fff;
}

.float-text {
  background: #fff;
  color: var(--a1-red);
  border: 2px solid var(--a1-red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .intro-highlight-grid,
  .why-grid,
  .review-grid,
  .faq-preview-grid,
  .how-it-works-grid,
  .city-home-grid,
  .gallery-grid,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-split img {
    height: 340px;
  }

  .menu {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 6%;
    border-bottom: 1px solid var(--a1-border);
  }

  .menu.menu-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar .nav-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar {
    font-size: 12px;
    padding: 9px 12px;
  }

  .navbar {
    padding: 12px 16px;
  }

  .site-logo {
    height: 42px;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-logo {
    width: min(380px, 86vw);
  }

  .hero-overlay {
    width: 94vw;
    padding: 24px 12px;
  }

  .hero-overlay h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

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

  .tagline {
    font-size: 12px !important;
    letter-spacing: 1px;
  }

  .booking-search-box {
    flex-direction: column;
  }

  .booking-search-box input,
  .booking-search-box .btn,
  .booking-search-box .btn-primary {
    width: 100%;
    min-width: 0;
  }

  .gallery-grid img {
    height: 250px;
  }

  .desktop-cta-stack,
  .floating-contact {
    display: none;
  }

  .mobile-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    z-index: 999;
    width: calc(100% - 32px);
    max-width: 340px;
  }

  body {
    padding-bottom: 150px;
  }

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