/* ==========================================================
   ITINERARY DETAIL — Modern Luxury, Serene & Sophisticated
   Palette: Deep Ocean Blue · Champagne Gold · Crisp White
   ========================================================== */

:root {
  --it-cream:    #f0f7fb;
  --it-sand:     #eef4f8;
  --it-gold:     #d4a373;
  --it-gold-soft:#e8c89f;
  --it-jade:     #1a85b8;
  --it-deep:     #0d6e94;
  --it-ocean:    #032e45;
  --it-text:     #1a2e38;
  --it-muted:    #6b8597;

  --serif:  'Playfair Display', 'Cormorant Garamond', serif;
  --italic: 'Cormorant Garamond', serif;
  --sans:   'Inter', system-ui, sans-serif;
}

/* ==========================================================
   1. CINEMATIC HERO
========================================================== */
.itin-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: visible;          /* ← đổi từ hidden → visible */
  padding-bottom: 120px;      /* ← tăng từ 90px → 120px */
}

.itin-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;            /* ← thêm vào để giới hạn ảnh */
}

.itin-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroSlow 22s ease-out forwards;
}

.itin-hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(3, 46, 69, 0.7) 100%),
    linear-gradient(180deg, rgba(3, 46, 69, 0.3) 0%, rgba(3, 46, 69, 0.5) 100%);
}

@keyframes heroSlow {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}

.itin-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 2rem;
}

.itin-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--it-gold);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}

.badge-line {
  width: 50px;
  height: 1px;
  background: var(--it-gold);
}

.itin-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s 0.5s forwards;
}

.itin-hero-excerpt {
  font-family: var(--italic);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  animation: fadeUp 1.2s 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- Floating Booking Bar ----- */
.itin-booking-bar {
  position: absolute;
  bottom: -60px;               /* ← đổi từ -45px → -60px */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;                 /* ← tăng từ 10 → 20 */
  width: calc(100% - 4rem);
  max-width: 980px;
  opacity: 0;
  animation: fadeUp 1.2s 1.3s forwards;
}

.booking-bar-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 1px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 4px;
  padding: 1px;
  box-shadow: 0 30px 80px -20px rgba(3, 46, 69, 0.4);
  overflow: hidden;
}

.bb-field {
  background: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.bb-field label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--it-gold);
  font-weight: 500;
}

.bb-field input,
.bb-field select {
  border: none;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--it-text);
  background: transparent;
  outline: none;
  font-weight: 500;
}

.bb-submit {
  background: var(--it-deep);
  color: #fff;
  border: none;
  padding: 1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.bb-submit:hover {
  background: var(--it-gold);
}

.bb-submit span {
  transition: transform 0.25s;
}

.bb-submit:hover span {
  transform: translateX(4px);
}

@media (max-width: 880px) {
  .itin-hero { padding-bottom: 280px; min-height: 90vh; }
  .booking-bar-form { grid-template-columns: 1fr 1fr; }
  .bb-submit { grid-column: span 2; padding: 1.2rem; justify-content: center; }
}

/* ==========================================================
   2. INTRO + META CARD
========================================================== */
.itin-intro {
  padding: 9rem 0 5rem;        /* ← tăng từ 7rem → 9rem (chừa chỗ booking bar) */
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.intro-text .eyebrow {
  color: var(--it-gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.intro-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  color: var(--it-deep);
  margin: 1rem 0 1.5rem;
  line-height: 1.25;
}

.intro-content {
  color: var(--it-muted);
  line-height: 1.85;
  font-size: 1.02rem;
}

.intro-content :is(h3) {
  font-family: var(--serif);
  color: var(--it-deep);
  margin: 1.75rem 0 0.75rem;
  font-size: 1.4rem;
}

.intro-content :is(ul) {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.intro-content li {
  margin-bottom: 0.6rem;
}

/* Meta card */
.meta-card {
  background: var(--it-deep);
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 100px;
  position: relative;
  overflow: hidden;
}

.meta-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(92, 200, 240, 0.2), transparent 70%);
}

.meta-item {
  text-align: center;
}

.meta-num,
.meta-num-price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--it-gold);
  line-height: 1;
}

.meta-num-price {
  font-size: 2.2rem;
}

.meta-from {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--it-gold-soft);
  margin-bottom: 0.4rem;
}

.meta-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.3rem;
}

.meta-divider {
  width: 1px;
  height: 50px;
  background: rgba(92, 200, 240, 0.35);
}

@media (max-width: 480px) {
  .meta-card {
    grid-template-columns: 1fr;
    grid-row-gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .meta-divider {
    width: 50px;
    height: 1px;
  }
}

/* ==========================================================
   3. USP HIGHLIGHTS
========================================================== */
.itin-usp {
  padding: 6rem 0;
  background: #fff;
}

.itin-usp .section-header,
.itin-bento .section-header,
.itin-timeline .section-header,
.itin-faq .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.itin-usp h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  color: var(--it-deep);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 880px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .usp-grid { grid-template-columns: 1fr; }
}

.usp-card {
  padding: 2.5rem 2rem;
  background: var(--it-cream);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: left;
}

.usp-card:hover {
  background: #fff;
  border-color: var(--it-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -25px rgba(10, 110, 159, 0.25);
}

.usp-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--it-deep), var(--it-jade));
  border-radius: 4px;
  color: var(--it-gold);
  margin-bottom: 1.5rem;
  transition: transform 0.4s;
}

.usp-card:hover .usp-icon {
  transform: scale(1.08) rotate(-3deg);
}

.usp-icon svg {
  width: 26px;
  height: 26px;
}

.usp-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--it-deep);
  margin: 0 0 0.75rem;
}

.usp-card p {
  color: var(--it-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================
   4. BENTO GRID
========================================================== */
.itin-bento {
  padding: 6rem 0;
}

.itin-bento h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  color: var(--it-deep);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}

.bento {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento:hover img {
  transform: scale(1.06);
}

.bento::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 46, 69, 0.85));
  pointer-events: none;
}

.bento-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  font-family: var(--serif);
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.bento-1 { grid-column: span 2; grid-row: span 2; }
.bento-2 { grid-column: span 2; grid-row: span 1; }
.bento-3 { grid-column: span 1; grid-row: span 1; }
.bento-4 { grid-column: span 1; grid-row: span 1; }
.bento-5 { grid-column: span 2; grid-row: span 1; }

@media (max-width: 880px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-1 { grid-column: span 2; aspect-ratio: 16/10; }
  .bento-2, .bento-3, .bento-4, .bento-5 { grid-column: span 1; aspect-ratio: 1; grid-row: auto; }
}

/* ==========================================================
   5. INTERACTIVE TIMELINE
========================================================== */
.itin-timeline {
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, #fff, var(--it-cream));
  position: relative;
}

.itin-timeline h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  color: var(--it-deep);
}

.timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--it-gold) 5%, var(--it-gold) 95%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem;
  display: flex;
}

.timeline-item.left {
  margin-right: auto;
  justify-content: flex-end;
  padding-right: 4rem;
}

.timeline-item.right {
  margin-left: 50%;
  padding-left: 4rem;
}

.timeline-marker {
  position: absolute;
  top: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--it-deep);
  border: 3px solid var(--it-gold);
  color: var(--it-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  box-shadow: 0 0 0 8px var(--it-cream), 0 10px 30px -10px rgba(10, 110, 159, 0.4);
  z-index: 2;
}

.timeline-item.left .timeline-marker {
  right: -30px;
}

.timeline-item.right .timeline-marker {
  left: -30px;
}

.timeline-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem 2.25rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 40px -20px rgba(10, 110, 159, 0.2);
  border-left: 3px solid var(--it-gold);
  position: relative;
}

.timeline-item.left .timeline-card {
  border-left: none;
  border-right: 3px solid var(--it-gold);
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 2.4rem;
  width: 18px;
  height: 18px;
  background: #fff;
  transform: rotate(45deg);
}

.timeline-item.left .timeline-card::before {
  right: -9px;
  border-right: 3px solid var(--it-gold);
  border-top: 3px solid var(--it-gold);
}

.timeline-item.right .timeline-card::before {
  left: -9px;
  border-left: 3px solid var(--it-gold);
  border-bottom: 3px solid var(--it-gold);
}

.timeline-day-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--it-gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.timeline-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--it-deep);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.timeline-narrative {
  font-family: var(--italic);
  font-style: italic;
  color: var(--it-jade);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed rgba(92, 200, 240, 0.4);
}

.timeline-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-items li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
}

.ti-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--it-gold);
  margin-top: 0.55rem;
}

.ti-text {
  color: var(--it-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-end {
  text-align: center;
  padding: 3rem 0 0;
  position: relative;
  z-index: 1;
}

.timeline-end-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--it-deep);
  color: var(--it-gold);
  border-radius: 50%;
  font-size: 2rem;
  border: 4px solid var(--it-cream);
  margin-bottom: 1rem;
  position: relative;
}

.timeline-end p {
  font-family: var(--italic);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--it-jade);
  margin: 0;
}

@media (max-width: 880px) {
  .timeline-line {
    left: 30px;
  }
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    margin: 0;
    padding: 1.5rem 0 1.5rem 4.5rem;
    justify-content: flex-start;
  }
  .timeline-item.left .timeline-marker,
  .timeline-item.right .timeline-marker {
    left: 0;
    right: auto;
  }
  .timeline-card,
  .timeline-item.left .timeline-card {
    border-left: 3px solid var(--it-gold);
    border-right: none;
  }
  .timeline-item.left .timeline-card::before,
  .timeline-item.right .timeline-card::before {
    left: -9px;
    right: auto;
    border-left: 3px solid var(--it-gold);
    border-bottom: 3px solid var(--it-gold);
    border-right: none;
    border-top: none;
  }
}

/* ==========================================================
   6. FAQ
========================================================== */
.itin-faq {
  padding: 6rem 0;
}

.itin-faq h2 {
  font-family: var(--serif);
  color: var(--it-deep);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 4px;
  margin-bottom: 1rem;
  border-left: 3px solid transparent;
  transition: all 0.3s;
  overflow: hidden;
}

.faq-item[open] {
  border-left-color: var(--it-gold);
  box-shadow: 0 8px 30px -15px rgba(10, 110, 159, 0.2);
}

.faq-item summary {
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
  transition: background 0.25s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: rgba(92, 200, 240, 0.05);
}

.faq-q {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--it-deep);
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--it-cream);
  color: var(--it-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--it-gold);
  color: #fff;
}

.faq-a {
  padding: 0 1.75rem 1.5rem;
  color: var(--it-muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ==========================================================
   7. FINAL CTA
========================================================== */
.itin-cta {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 46, 69, 0.85), rgba(10, 110, 159, 0.7));
}

.itin-cta .container {
  position: relative;
  z-index: 1;
}

.cta-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: #fff;
}

.cta-card .eyebrow-gold {
  color: var(--it-gold);
}

.cta-card h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 1rem 0 1.25rem;
  line-height: 1.2;
}

.cta-card > p {
  font-family: var(--italic);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 2.5rem;
  max-width: 540px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.btn-ghost {
  background: transparent;
  color: var(--it-gold-soft);
  border: 1px solid rgba(232, 216, 176, 0.4);
  padding: 1.1rem 2.8rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-ghost:hover {
  background: var(--it-gold);
  border-color: var(--it-gold);
  color: var(--it-deep);
}

.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--it-gold-soft);
  padding-top: 2rem;
  border-top: 1px solid rgba(92, 200, 240, 0.25);
}

/* ==========================================================
   REVEAL ANIMATIONS
========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   INLINE BOOKING SECTION
========================================================== */
.itin-booking {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--it-cream) 0%, #fff 100%);
  position: relative;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* LEFT — Info */
.booking-info {
  position: sticky;
  top: 100px;
}

.booking-info h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  color: var(--it-deep);
  margin: 1rem 0 1.25rem;
  line-height: 1.2;
}

.booking-lead {
  color: var(--it-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.booking-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.booking-perks li {
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(92, 200, 240, 0.3);
  color: var(--it-deep);
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.booking-perks li:last-child {
  border-bottom: none;
}

.booking-perks li span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--it-gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* Price tag */
.booking-price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--it-deep);
  border-radius: 4px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.booking-price-tag::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(92, 200, 240, 0.25), transparent 70%);
}

.price-from {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--it-gold-soft);
}

.price-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--it-gold);
  font-weight: 500;
  line-height: 1;
}

.price-cur {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--it-gold-soft);
}

.price-unit {
  margin-left: auto;
  font-family: var(--italic);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* RIGHT — Booking Card */
.booking-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px -30px rgba(10, 110, 159, 0.25),
              0 4px 20px -10px rgba(10, 110, 159, 0.1);
  overflow: hidden;
  border: 1px solid rgba(92, 200, 240, 0.15);
}

.booking-card-header {
  background: linear-gradient(135deg, var(--it-deep), var(--it-jade));
  padding: 2rem 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.booking-card-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(92, 200, 240, 0.2), transparent 70%);
}

.bch-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--it-gold);
  background: rgba(92, 200, 240, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.booking-card-header h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* Form */
.booking-form-full {
  padding: 2.5rem;
}

@media (max-width: 540px) {
  .booking-form-full { padding: 1.75rem 1.5rem; }
  .booking-card-header { padding: 1.75rem 1.5rem; }
}

.bf-grid {
  display: grid;
  gap: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.bf-grid-2 { grid-template-columns: 1fr 1fr; }
.bf-grid-3 { grid-template-columns: 1.3fr 1fr 1fr; }

@media (max-width: 600px) {
  .bf-grid-2,
  .bf-grid-3 { grid-template-columns: 1fr; }
}

.bf-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.bf-row label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--it-gold);
  font-weight: 500;
}

.bf-row input,
.bf-row select,
.bf-row textarea {
  padding: 0.85rem 1rem;
  border: 1px solid #dde7ed;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--it-text);
  background: #fafafa;
  transition: all 0.25s;
  width: 100%;
}

.bf-row input:focus,
.bf-row select:focus,
.bf-row textarea:focus {
  outline: none;
  border-color: var(--it-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(92, 200, 240, 0.15);
}

.bf-row textarea {
  resize: vertical;
  min-height: 90px;
}

.bf-row .error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 0.2rem;
}

.btn-block {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.booking-trust-line {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--it-muted);
  font-family: var(--italic);
  font-style: italic;
}
