:root {
  --primary: #0f172a;
  --secondary: #0ea5e9;
  --accent: #059669;
  --success: #059669;
  --success-bg: #ecfdf5;
  --success-border: #10b981;
  --danger: #dc2626;
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
  --text-dark: #334155;
  --text-light: #64748b;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-float: 0 30px 40px -10px rgb(0 0 0 / 0.15);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--primary); font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
.section-title { font-size: clamp(28px, 5vw, 40px); letter-spacing: -0.5px; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.my-section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-4 { margin-top: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; font-weight: 600; font-size: 16px;
  border-radius: 50px; text-decoration: none; cursor: pointer;
  transition: all 0.2s ease; border: 2px solid transparent; text-align: center;
}
.btn-large { padding: 16px 36px; font-size: 18px; }
.btn-full { width: 100%; }
.btn-primary { background-color: var(--primary); color: white; }
.btn-accent { background-color: var(--accent); color: white; }
.btn-accent:active { transform: scale(0.98); background-color: #047857; }
.btn-outline { background-color: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-white { background-color: rgba(255,255,255,0.1); color: white; border-color: white; backdrop-filter: blur(4px); }
.btn-outline-white:hover { background-color: white; color: var(--primary); }

/* Hero */
.hero { position: relative; height: 100vh; min-height: 760px; display: flex; flex-direction: column; background-size: cover; background-position: center; color: white; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; pointer-events: none; animation: heroVideoFloat 14s ease-in-out infinite; will-change: transform; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; display: block; transition: opacity 0.4s ease; }
@keyframes heroVideoFloat {
  0%   { transform: scale(1.0)  translate(0,    0);    }
  25%  { transform: scale(1.06) translate(-1%,  0.5%); }
  50%  { transform: scale(1.08) translate(0.5%, -0.5%);}
  75%  { transform: scale(1.04) translate(1%,   0.5%); }
  100% { transform: scale(1.0)  translate(0,    0);    }
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,18,42,0.2) 0%, rgba(8,18,42,0.3) 44%, rgba(8,18,42,0.46) 100%); z-index: 1; }
.navbar { position: relative; z-index: 10; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 22px 5% clamp(60px, 10vh, 100px); }
.hero-brand { position: absolute; top: 20px; left: 20px; z-index: 11; }
.logo-wrap { display: inline-flex; align-items: center; text-decoration: none; transition: transform 0.3s ease; }
.logo-wrap:hover { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(255,255,255,0.4)); }
.logo-img { height: 132px; width: auto; object-fit: contain; filter: drop-shadow(0 6px 14px rgba(1, 14, 33, 0.36)); }
.logo-slogan { margin-top: -10px; font-family: var(--font-display); font-size: clamp(17px, 2.1vw, 23px); font-weight: 800; letter-spacing: 0.01em; line-height: 1.1; }
.logo-slogan-line { display: inline-block; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42); }
.logo-slogan-line-primary { color: #e2f8ef; }
.logo-slogan-line-accent { color: #86efac; margin-left: 8px; }
.lang-selector { position: absolute; top: 24px; right: 24px; z-index: 20; }
.goog-te-gadget-simple { background: rgba(8, 20, 44, 0.42) !important; border: 1px solid rgba(255,255,255,0.52) !important; border-radius: 999px !important; padding: 7px 12px !important; backdrop-filter: blur(5px); display: flex !important; align-items: center; box-shadow: 0 8px 20px rgba(2, 9, 22, 0.2); }
.goog-te-gadget-simple span, .goog-te-gadget-simple a { color: #f8fafc !important; font-family: var(--font-main) !important; font-weight: 600 !important; font-size: 12.5px !important; text-decoration: none !important; }
.goog-te-gadget-simple img { display: none !important; }
.goog-te-gadget-simple::before { content: '🌐'; margin-right: 6px; font-size: 13px; }
.hero-cta-group { position: absolute; top: 67%; left: 50%; transform: translate(-50%, -50%); display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; z-index: 11; width: max-content; }
.btn-hero-primary { background: linear-gradient(135deg, #0ca678, #059669); color: #fff; border: 1px solid rgba(255,255,255,0.34); border-radius: 999px; padding: 15px 34px; font-size: 17px; font-weight: 700; box-shadow: 0 14px 34px rgba(5, 150, 105, 0.35), 0 4px 16px rgba(2, 8, 23, 0.24); }
.btn-hero-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(5, 150, 105, 0.42), 0 8px 20px rgba(2, 8, 23, 0.25); background: linear-gradient(135deg, #10b981, #047857); }
.btn-hero-primary:focus-visible { outline: 3px solid rgba(186, 230, 253, 0.92); outline-offset: 2px; }
.btn-hero-primary:active { transform: translateY(0); box-shadow: 0 10px 22px rgba(5, 150, 105, 0.28); }

/* USP */
.usp-list { display: flex; flex-direction: column; gap: 20px; max-width: 860px; margin: 0 auto; }
.usp-row { display: flex; align-items: center; gap: 32px; background: white; border-radius: var(--radius-md); padding: 28px 32px; border: 1px solid #e2e8f0; transition: box-shadow 0.3s, border-color 0.3s; }
.usp-row:hover { box-shadow: var(--shadow-float); border-color: var(--secondary); }
.usp-row-text { flex: 1; text-align: left; }
.usp-row-text h4 { font-size: 20px; margin-bottom: 10px; }
.usp-row:hover .usp-row-text h4 { color: var(--secondary); }
.usp-row-text p { font-size: 15px; color: var(--text-light); margin: 0; }
.usp-row-img { flex: 0 0 50%; height: 260px; border-radius: 12px; overflow: hidden; }
.usp-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.usp-row:hover .usp-row-img img { transform: scale(1.06); }

/* USP desktop redesign (mobile keeps current layout) */
@media (min-width: 769px) {
  #usp .container.text-center {
    max-width: 1140px;
  }

  #usp .section-title {
    font-size: clamp(36px, 3.4vw, 46px);
    margin-bottom: 36px;
  }

  .usp-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: none;
    margin: 0;
  }

  .usp-row {
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
    min-height: 280px;
    padding: 0;
    gap: 0;
    border-radius: 14px;
    border: 1px solid #d6dbe2;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    overflow: hidden;
  }

  .usp-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
    border-color: #c7d2de;
  }

  .usp-row-text {
    flex: 1 1 0;
    text-align: left;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .usp-row-text h4 {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 12px;
  }

  .usp-row:hover .usp-row-text h4 {
    color: var(--primary);
  }

  .usp-row-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin: 0;
  }

  .usp-row-img {
    flex: 0 0 48%;
    align-self: stretch;
    min-height: unset;
    height: auto;
    border-radius: 0;
    overflow: hidden;
  }

  .usp-row-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }

  .usp-row:hover .usp-row-img img {
    transform: scale(1.06);
  }
}



/* Reviews */
.reviews-subtitle {
  color: var(--text-light);
  margin-top: 12px;
  font-size: 16px;
  max-width: 640px;
  margin-inline: auto;
}

.reviews-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-image-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-image-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: top center;
  background: #ffffff;
}





/* Booking Form */
.form-section { background-color: #f1f5f9; padding: 80px 0; }
.form-wrapper { background: white; border-radius: var(--radius-lg); padding: 32px; max-width: 800px; margin: 0 auto; box-shadow: var(--shadow-float); }
.booking-form { margin-top: 24px; }
.form-row { display: flex; gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; text-align: left; margin-bottom: 24px; }
.form-group.half { flex: 1; margin-bottom: 0; }
.form-group label { font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--primary); }
.input-control { width: 100%; padding: 14px; border: 1px solid #cbd5e1; border-radius: var(--radius-sm); font-size: 15px; font-family: var(--font-main); transition: border-color 0.2s, box-shadow 0.2s; background: #fff; }
.input-control:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1); }
.input-control[readonly] { background: #f1f5f9; color: var(--text-light); cursor: not-allowed; }
select.input-control { background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; -webkit-appearance: none; }
.input-hint { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* â”€â”€ Success State â”€â”€ */
.success-state {
  text-align: center;
  padding: 24px;
  background: var(--success-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--success-border);
}
.success-icon { font-size: 48px; margin-bottom: 12px; }
.success-state h3 { color: var(--success); font-size: 26px; margin-bottom: 8px; }
.success-state > p { font-size: 14px; color: var(--text-dark); margin-bottom: 12px; font-weight: 500; }

/* Khung thÃ´ng tin Ä‘áº·t chá»— */
.booking-summary {
  background: white; border: 1px solid #e2e8f0; border-radius: var(--radius-sm);
  padding: 12px; margin-bottom: 14px; text-align: left;
  font-size: 14px; color: var(--text-dark); box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.booking-summary-row {
  display: flex; justify-content: space-between;
  padding: 5px 0; border-bottom: 1px dashed #e2e8f0;
}
.booking-summary-row:last-child { border-bottom: none; }

/* Khung hoÃ¡ Ä‘Æ¡n giÃ¡ */
.invoice-box {
  background: white; border: 1px solid #e2e8f0; border-radius: var(--radius-sm);
  padding: 12px; margin-bottom: 14px; text-align: left;
  font-size: 14px; color: var(--text-dark); box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.invoice-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0;
}
.invoice-row.discount { color: var(--success); }
.invoice-row.total {
  border-top: 2px solid var(--success-border);
  margin-top: 6px; padding-top: 10px;
  font-size: 17px; font-weight: 700; color: var(--success);
}
.invoice-tag {
  display: inline-block; background: #d1fae5; color: var(--success);
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 50px;
  margin-left: 6px;
}

/* ── Booking Card (thanh-toan.html) ── */
.bk-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}
.bk-head {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  text-align: center;
  padding: 28px 24px 20px;
  border-bottom: 1px solid #a7f3d0;
}
.bk-icon { font-size: 40px; margin-bottom: 8px; }
.bk-title { font-size: 22px; font-weight: 800; color: #064e3b; margin: 0 0 6px; }
.bk-subtitle { font-size: 13px; color: #047857; margin: 0; line-height: 1.6; }

.bk-body { padding: 0 20px; }
.bk-section { padding: 14px 0; }
.bk-sep { border: none; border-top: 1px solid #f1f5f9; margin: 0 -20px; }

.bk-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: #374151; padding: 4px 0;
}
.bk-lbl { color: #9ca3af; flex-shrink: 0; margin-right: 12px; }
.bk-discount { color: #10b981; }
.bk-total {
  font-size: 16px; font-weight: 700; color: #064e3b;
  padding-top: 10px; border-top: 1px solid #d1fae5; margin-top: 6px;
}

.bk-deposit { background: #fffbeb; border-radius: 8px; padding: 12px 14px; margin: 4px -6px; }
.bk-dep-title { font-size: 13px; font-weight: 700; color: #92400e; margin-bottom: 8px; }
.bk-dep-row { font-size: 14px; color: #78350f; padding: 3px 0; }

.bk-qr-zone { text-align: center; }
.bk-qr-label { font-size: 13px; color: #374151; margin-bottom: 10px; }
.bk-qr-img {
  width: 190px; height: 190px; object-fit: contain;
  border-radius: 8px; display: block; margin: 0 auto 12px;
}
.bk-bank { display: flex; flex-direction: column; gap: 3px; font-size: 13px; color: #374151; }

.bk-policy { padding: 14px 0; }
.bk-policy summary {
  font-size: 13px; font-weight: 600; color: #374151;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.bk-policy summary::-webkit-details-marker { display: none; }
.bk-policy summary::after { content: '▾'; color: #9ca3af; }
details[open].bk-policy summary::after { content: '▴'; }
.bk-policy-list {
  margin: 10px 0 0; padding-left: 18px;
  font-size: 13px; color: #4b5563; line-height: 1.75;
}
.bk-policy-list li { margin-bottom: 4px; }

.bk-actions { padding: 16px 0; display: flex; flex-direction: column; gap: 10px; }

/* Quy định */
.policy-box {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: var(--radius-sm);
  margin-bottom: 14px; font-size: 14px; overflow: hidden;
}
.policy-title {
  font-weight: 700; color: #374151; padding: 13px 16px; cursor: pointer;
  list-style: none; display: flex; align-items: center; gap: 8px;
  user-select: none;
}
.policy-title::-webkit-details-marker { display: none; }
.policy-title::after { content: '▾'; margin-left: auto; font-size: 12px; color: #9ca3af; }
details[open] .policy-title::after { content: '▴'; }
.policy-content { padding: 4px 16px 14px; border-top: 1px solid #e2e8f0; }
.policy-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 7px 0; border-bottom: 1px dashed #f1f5f9; color: #374151; line-height: 1.5;
}
.policy-item:last-of-type { border-bottom: none; }
.policy-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}
.policy-dot--green { background: #10b981; }
.policy-dot--yellow { background: #f59e0b; }
.policy-dot--red { background: #ef4444; }

/* Tiền cọc */
.deposit-box {
  background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius-sm);
  padding: 14px 16px; margin-bottom: 14px; text-align: left;
  font-size: 14px; color: var(--text-dark);
}
.deposit-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; border-bottom: 1px dashed #fde68a;
}
.deposit-row:last-of-type { border-bottom: none; }

/* Khung thanh toán QR */
.payment-box {
  background: white; border: 1px solid #e2e8f0; border-radius: var(--radius-sm);
  padding: 12px; margin-bottom: 14px; text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.payment-box p { font-size: 13px; margin-bottom: 6px; color: var(--text-dark); }
.payment-box img { max-width: 140px; margin: 0 auto 8px; display: block; border-radius: 8px; border: 1px solid #e2e8f0; }
.payment-box .bank-info { font-size: 14px; margin-bottom: 2px; }
.payment-box .transfer-note { font-size: 14px; color: var(--text-dark); }
.payment-box .transfer-note strong { color: var(--primary); }

/* Scroll hint */
.scroll-hint {
  color: var(--accent); font-weight: bold; background: white;
  padding: 8px 12px; border-radius: 8px; border: 1px dashed var(--accent);
  font-size: 13px; margin-bottom: 0;
}

/* Error alert inline */
.alert-error {
  background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius-sm);
  padding: 12px 16px; margin-bottom: 16px; color: var(--danger);
  font-size: 14px; font-weight: 500; display: none;
}
.alert-error.show { display: block; }

/* Form notes */
.form-notes { font-size: 14px; color: var(--text-light); text-align: left; background: #f8fafc; padding: 16px; border-radius: var(--radius-sm); }
.form-notes ul { padding-left: 20px; margin-top: 8px; }
.form-notes li { margin-bottom: 4px; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; background: white; padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.faq-item { border-bottom: 1px solid #f1f5f9; }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-light); font-size: 15px; }
.faq-answer p { padding-bottom: 24px; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-icon { transition: transform 0.3s ease; font-size: 12px; color: var(--secondary); }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* Location */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto; align-items: start; }
.location-text { font-size: 16px; }
.location-images { display: flex; flex-direction: column; gap: 24px; }
.loc-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; transition: transform 0.4s ease, box-shadow 0.4s ease; border: 4px solid #fff; }
.loc-img:hover { transform: scale(1.03); box-shadow: var(--shadow-float); }

/* Final CTA */
.final-cta { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); padding: 100px 0; text-align: center; color: white; }

/* Chatbot */
.chatbot-shell {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.97), rgba(5, 150, 105, 0.96));
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.3);
  cursor: pointer;
}

.chatbot-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fde68a;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.chatbot-panel {
  width: min(380px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid #dbe4ef;
  border-radius: 24px;
  box-shadow: var(--shadow-float);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: calc(100svh - 90px);
}
.chatbot-panel[hidden] { display: none; }

.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, #fff7ed, #eff6ff);
  border-bottom: 1px solid #e2e8f0;
}

.chatbot-header strong {
  display: block;
  color: var(--primary);
}

.chatbot-header p {
  margin-top: 4px;
  color: var(--text-light);
  font-size: 13px;
}

.chatbot-close {
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  min-height: 0;
  max-height: 320px;
  overflow-y: auto;
  padding: 16px;
  background: #fff;
}

.chatbot-message {
  margin-bottom: 12px;
}

.chatbot-message:last-child {
  margin-bottom: 0;
}

.chatbot-bubble {
  display: inline-block;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-line;
}

.chatbot-message.bot .chatbot-bubble {
  background: #f8fafc;
  color: var(--text-dark);
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 6px;
}

.chatbot-message.user {
  text-align: right;
}

.chatbot-message.user .chatbot-bubble {
  background: linear-gradient(135deg, var(--secondary), #0284c7);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}

.chatbot-suggestion {
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
}

.chatbot-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  font: inherit;
}

.chatbot-send {
  padding: 12px 14px;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.chatbot-cta {
  display: block;
  margin: 0 16px 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #047857);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}

/* ── Time Compare ── */
.tc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.tc-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tc-card:hover { box-shadow: var(--shadow-float); }

.tc-card-morning { border-top: 4px solid var(--secondary); }
.tc-card-morning:hover { border-color: var(--secondary); }
.tc-card-afternoon { border-top: 4px solid #f97316; }
.tc-card-afternoon:hover { border-color: #f97316; }

.tc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 28px 16px;
}
.tc-icon { font-size: 30px; line-height: 1; flex-shrink: 0; }
.tc-title { font-size: 22px; font-weight: 700; color: var(--primary); margin: 0; }

.tc-slots { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; padding: 0; margin-bottom: 18px; }
.tc-slots-inline { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tc-slots-inline .tc-slot {
  width: 100%;
  white-space: nowrap;
  justify-content: center;
  text-align: center;
}
.tc-slot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}
.tc-card-morning .tc-slot { background: #e0f2fe; color: #0369a1; }
.tc-card-afternoon .tc-slot { background: #fff7ed; color: #c2410c; }

.tc-clock { width: 13px; height: 13px; flex-shrink: 0; }
.tc-card-morning .tc-clock { stroke: #0369a1; }
.tc-card-afternoon .tc-clock { stroke: #c2410c; }

.tc-desc { padding: 0 28px 28px; font-size: 14.5px; line-height: 1.75; color: var(--text-light); margin: 0; flex: 1; }

.tc-list { list-style: none; padding-left: 28px; }
.tc-list li { position: relative; padding-left: 20px; margin-bottom: 0; min-height: 3.2em; display: flex; align-items: center; }
.tc-list li::before { content: '•'; position: absolute; left: 0; font-weight: 700; }
.tc-card-morning .tc-list li::before { color: var(--secondary); }
.tc-card-afternoon .tc-list li::before { color: #f97316; }

.tc-badge {
  display: inline-block;
  margin-top: 4px;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Pricing Card */
.pricing-card {
  max-width: 560px;
  margin: 36px auto 0;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--secondary);
  text-align: left;
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 20px;
  border-radius: 999px;
  text-transform: uppercase;
}
.pricing-header { margin-bottom: 24px; text-align: center; }
.pricing-amount { font-size: 42px; font-weight: 800; color: var(--primary); font-family: var(--font-display); }
.pricing-unit { font-size: 15px; color: var(--text-light); margin-left: 6px; }
.promo-badge-row { display: flex; justify-content: center; margin: -8px 0 18px; }
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff7d6, #ffe9a8);
  border: 1px solid #fcd34d;
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(146, 64, 14, 0.12);
}
.promo-note { text-align: center; color: var(--text-light); font-size: 12.5px; margin: -8px 0 16px; }
.discount-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.discount-item {
  background: #fef9c3;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.discount-item-label { color: #92400e; font-weight: 700; }
.discount-code-label { color: var(--text-light); }
.discount-code { color: var(--primary); font-weight: 700; }
.discount-note { font-size: 12.5px; line-height: 1.6; color: var(--text-light); margin: -12px 0 20px; }
.discount-sub-note { font-size: 12.5px; line-height: 1.6; color: var(--text-light); margin: 2px 0 10px; padding: 8px 12px; background: rgba(16, 185, 129, 0.06); border-left: 3px solid rgba(16, 185, 129, 0.35); border-radius: 0 6px 6px 0; }
.features-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}
.feature-item:last-child { border-bottom: none; padding-bottom: 0; }
.feature-check { color: var(--secondary); font-weight: 700; font-size: 17px; flex-shrink: 0; }

/* Footer */
footer { padding: 40px 0; text-align: center; color: var(--text-light); background: #f8fafc; font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
  .hero { height: 100svh; min-height: 100svh; }
  .hero-video { object-position: center 42%; }
  .hero-overlay { background: linear-gradient(180deg, rgba(8,18,42,0.26) 0%, rgba(8,18,42,0.34) 48%, rgba(8,18,42,0.5) 100%); }
  .hero-brand { top: 14px; left: 14px; }
  .logo-img { height: 70px; }
  .lang-selector { position: absolute; top: 12px; right: 12px; transform: scale(0.86); transform-origin: top right; }
  .hero-cta-group .btn { width: min(280px, 86vw); padding: 12px 24px; font-size: 15px; }
  .form-row { flex-direction: column; gap: 0; }
  .form-group.half { margin-bottom: 24px; }
  .form-wrapper { padding: 24px 16px; }

  .my-section { padding: 60px 0; }
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .chatbot-shell { right: 12px; bottom: 12px; left: auto; align-items: flex-end; }
  .chatbot-panel { width: min(360px, calc(100vw - 24px)); max-height: calc(100svh - 80px); }
  .chatbot-toggle { justify-content: center; padding: 10px 13px; font-size: 13px; }
  .chatbot-close { min-width: 36px; min-height: 36px; display: flex; align-items: center; justify-content: center; font-size: 26px; }
  .tc-grid { grid-template-columns: 1fr; }
  .tc-slots-inline {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .tc-slots-inline .tc-slot {
    width: fit-content;
    white-space: nowrap;
    justify-content: flex-start;
    text-align: left;
  }
  .tc-slot { width: fit-content; justify-content: flex-start; text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
  .review-image-card { aspect-ratio: auto; }
  .review-image-card img { height: auto; max-height: 70vh; object-fit: contain; object-position: center; }
}
