/* =====================================================
   Kajo Motion — Báo Giá / Booking Page
   Design: CES Academy Brutalist adapted for Wedding
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Noto+Serif:ital,wght@0,400;0,700;1,400&display=swap');

/* ===== CSS Variables ===== */
:root {
  --cream: #FFF9F5;
  --white: #FFFFFF;
  --gray: #F5F3F0;
  --primary: #7b5556;
  --primary-d: #5e3f40;
  --accent: #c9956c;
  --accent-d: #b07d54;
  --green: #10b981;
  --green-bg: #ecfdf5;
  --blue: #3b82f6;
  --blue-bg: #eff6ff;
  --red: #ef4444;
  --red-bg: #fef2f2;
  --silver: #64748b;
  --silver-bg: #f1f5f9;
  --gold: #f59e0b;
  --gold-bg: #fffbeb;
  --diamond: #8b5cf6;
  --diamond-bg: #f5f3ff;
  --text: #3b2829;
  --text-muted: rgba(59, 40, 41, 0.55);
  --success: #059669;
  --danger: #dc2626;

  /* Border & Shadow — CES brutalist style */
  --bw: 3px;
  --border: 3px solid var(--primary);
  --border-2: 2px solid var(--primary);
  --border-light: 2px solid rgba(123, 85, 86, 0.15);
  --shadow: 5px 5px 0 var(--primary);
  --shadow-sm: 3px 3px 0 var(--primary);
  --shadow-lg: 7px 7px 0 var(--primary);
  --shadow-accent: 5px 5px 0 var(--accent);

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: 68px;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* ===== Layout ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 48px 0 32px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: var(--white);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand .brand-icon {
  font-size: 1.4rem;
}

.navbar-brand .brand-name {
  font-family: 'Noto Serif', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navbar-brand .brand-tag {
  background: var(--primary);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.navbar-menu a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.navbar-menu a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .navbar-menu {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: var(--border);
  transition: all 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: none !important;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  box-shadow: 7px 7px 0 var(--accent);
  background: var(--primary-d);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-accent:hover {
  box-shadow: var(--shadow-lg);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  box-shadow: var(--shadow);
  background: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--cream);
  box-shadow: var(--shadow);
}

.btn-success {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 3px 3px 0 #065f46;
}

.btn-success:hover {
  box-shadow: 5px 5px 0 #065f46;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-label.accent {
  background: var(--accent);
  color: var(--white);
}

.section-label.green {
  background: var(--green);
  color: var(--white);
}

.section-heading-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading-center h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
  margin-top: 8px;
}

.section-heading-center p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 0.95rem;
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--primary);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-inner span {
  display: inline-block;
  padding: 0 32px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marquee-inner span::before {
  content: '⚡';
  margin-right: 8px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== HERO (2 columns — CES Academy) ===== */
.hero {
  display: flex;
  align-items: center;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
  background-color: #5e3f40;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-box {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  text-align: center;
}

.hero-box::before,
.hero-box::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.hero-box::before {
  top: -7px;
  left: -7px;
}

.hero-box::after {
  bottom: -7px;
  right: -7px;
}

.hero-tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: var(--accent);
  border: var(--border);
  border-radius: 4px;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: var(--r-full);
  display: inline-flex;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: 'Noto Serif', serif;
  font-size: clamp(1.6rem, 5vw, 2.9rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-title .highlight {
  -webkit-text-stroke: 1px rgba(201, 149, 108, 0.6);
  color: var(--accent);
  display: inline-block;
  text-shadow: 0 0 20px rgba(201, 149, 108, 0.4);
}

.hero-desc {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px 12px 22px;
  border-radius: var(--r-md);
  margin: 10px 0 20px;
  line-height: 1.4;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.hero-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--accent);
  border-radius: calc(var(--r-md) - 2px) 0 0 calc(var(--r-md) - 2px);
  opacity: 0.8;
}

/* FOMO Promo Style */
.hero-promo {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.2)) !important;
  border-color: rgba(239, 68, 68, 0.4) !important;
  text-align: center;
  font-size: 0.95rem !important;
  animation: promoPulse 2s ease-in-out infinite;
}

.hero-promo::before {
  background: #ef4444 !important;
}

.hero-promo strong {
  font-size: 1.2rem;
  color: #fbbf24;
}

@keyframes promoPulse {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
  }

  50% {
    box-shadow: 0 4px 24px rgba(239, 68, 68, 0.35);
  }
}

/* Sale Badge on Cards */
.sale-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: var(--r-md);
  transform: rotate(4deg);
  box-shadow: 0 3px 10px rgba(239, 68, 68, 0.35);
  z-index: 2;
  letter-spacing: 0.3px;
  animation: badgeBounce 2.5s ease-in-out infinite;
}

@keyframes badgeBounce {

  0%,
  100% {
    transform: rotate(4deg) scale(1);
  }

  50% {
    transform: rotate(4deg) scale(1.06);
  }
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  justify-content: center;
}

.hero-stat-num {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Feature Cards */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
  margin-left: auto;
}

.hf-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 5px 5px 0 var(--primary);
  transform: rotate(-1.5deg);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.hf-item:nth-child(even) {
  transform: rotate(1.5deg);
  box-shadow: 5px 5px 0 var(--accent);
}

.hf-item:nth-child(3) {
  box-shadow: 5px 5px 0 var(--green);
}

.hf-item:hover {
  transform: rotate(0) translateY(-4px);
  box-shadow: 8px 8px 0 var(--primary);
}

.hf-item:nth-child(even):hover {
  box-shadow: 8px 8px 0 var(--accent);
}

.hf-item:nth-child(3):hover {
  box-shadow: 8px 8px 0 var(--green);
}

.hf-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent);
  border: var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.hf-item:nth-child(2) .hf-icon {
  background: var(--green);
  color: white;
}

.hf-item:nth-child(3) .hf-icon {
  background: #d97706;
  color: white;
}

.hf-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.hf-desc {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.65;
  line-height: 1.4;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-full);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-sm);
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.5;
  cursor: pointer;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--primary);
  color: var(--accent);
  opacity: 1;
  border-color: var(--primary);
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  overflow: visible;
}

.price-card > .btn-block {
  margin-top: auto;
}

.price-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow);
}

.price-card.selected {
  border-color: var(--accent);
  box-shadow: 5px 5px 0 var(--accent);
}

.price-card.selected:hover {
  box-shadow: 7px 7px 0 var(--accent);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 16px;
  border-radius: var(--r-full);
  border: var(--border-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.price-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  border: var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.price-name {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  margin: 8px 0 4px;
}

.price-amount small {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.5;
  text-decoration: line-through;
  margin-left: 6px;
}

.price-desc {
  font-size: 0.82rem;
  opacity: 0.55;
  margin-bottom: 16px;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.price-features li {
  padding: 7px 0;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px dashed rgba(123, 85, 86, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

.price-ship {
  font-size: 0.75rem;
  color: var(--success);
  font-style: italic;
  margin-bottom: 4px;
}

/* ===== CARD EXPAND PANEL (Inline Customize) ===== */
.card-expand-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.card-expand-panel.expanded {
  max-height: 800px;
  opacity: 1;
  margin-top: 16px;
}

.card-expand-inner {
  border-top: 2px dashed rgba(123, 85, 86, 0.15);
  padding-top: 16px;
  padding-bottom: 8px;
}

.expand-section {
  margin-bottom: 16px;
}

.expand-section-title {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.expand-tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(123, 85, 86, 0.1);
  color: var(--primary);
  font-size: 0.7rem;
  cursor: pointer;
  font-style: normal;
  transition: background 0.2s;
}

.expand-tooltip-icon:hover {
  background: rgba(123, 85, 86, 0.2);
}

.expand-discount-tooltip {
  background: #fffbeb;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.expand-discount-tooltip::before {
  content: '💡 ';
}

/* Transport Radio Rows */
.transport-radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(123, 85, 86, 0.08);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.transport-radio-row input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.transport-label {
  flex: 1;
}

.transport-price {
  font-weight: 900;
  color: var(--accent);
  white-space: nowrap;
}

/* Expand Total */
.expand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dashed rgba(123, 85, 86, 0.15);
  padding: 12px 0 8px;
  margin: 12px 0 10px;
}

.expand-total-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
}

.expand-total-amount {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ef4444;
}

@keyframes priceFlash {
  0% {
    color: #ef4444;
  }

  30% {
    color: #dc2626;
    transform: scale(1.1);
  }

  100% {
    color: #ef4444;
    transform: scale(1);
  }
}

.price-flash {
  animation: priceFlash 0.5s ease;
  display: inline-block;
}

/* CTA Buttons */
.expand-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 2px 4px;
}

.btn-whatsapp-expand {
  flex: 1;
  padding: 10px 12px;
  background: #25d366;
  color: #fff;
  border: 2px solid #1da851;
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 2px 2px 0 #128c48;
  white-space: nowrap;
  text-align: center;
}

.btn-whatsapp-expand:hover {
  filter: brightness(1.1);
  box-shadow: 3px 3px 0 #128c48;
}

.btn-choose-expand {
  flex: 1;
  padding: 10px 12px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary-d, #5a3e3f);
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
  box-shadow: 2px 2px 0 var(--primary-d, #5a3e3f);
}

.btn-choose-expand:hover {
  filter: brightness(0.9);
  box-shadow: 3px 3px 0 var(--primary-d, #5a3e3f);
}

/* Toggle button close state */
.btn-close-customize {
  background: var(--text) !important;
  color: var(--white) !important;
  border-color: var(--text) !important;
  box-shadow: none !important;
}

.btn-close-customize:hover {
  opacity: 0.85;
  transform: none !important;
}

/* Signature touch-action fix */
.signature-box canvas {
  touch-action: none;
}

/* ===== CUSTOMIZE PANEL (Addons + Discounts) ===== */
.customize-section {
  background: var(--gray);
  border: var(--border-light);
  border-radius: var(--r-md);
  padding: 16px;
  margin-top: 16px;
}

.customize-section h4 {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--text);
}

.addon-row,
.discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(123, 85, 86, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

.addon-row label,
.discount-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex: 1;
}

.addon-price {
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.discount-amount {
  color: var(--danger);
  font-weight: 900;
  white-space: nowrap;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  border: var(--border-2);
  background: var(--white);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
}

.counter-btn:hover {
  background: var(--cream);
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 var(--primary);
}

.counter-val {
  font-size: 0.9rem;
  font-weight: 900;
  width: 24px;
  text-align: center;
}

/* Transport zone dropdown */
.transport-select {
  width: 100%;
  padding: 10px 14px;
  border: var(--border-2);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  margin-top: 8px;
}

.transport-select:focus {
  outline: none;
  box-shadow: var(--shadow-sm);
}

/* ===== PRICE TOTAL BAR ===== */
.price-total-bar {
  background: var(--primary);
  border: var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}

.price-total-label {
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.8;
}

.price-total-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
}

/* ===== MAIN LAYOUT (Cards + Form) ===== */
/* ===== BOOKING PANEL (overlay replaces cards) ===== */
.booking-panel {
  animation: fadeUp 0.4s ease both;
}

.btn-back {
  background: none;
  border: var(--border-light);
  border-radius: var(--r-full);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.2s;
}

.btn-back:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.bp-header {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-header .bp-pkg-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
}

.bp-header .bp-pkg-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
}

.bp-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
}

.bp-left,
.bp-right {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}

.bp-left h4,
.bp-right h4 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: var(--border-light);
}

.bp-summary {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 2px dashed rgba(123, 85, 86, 0.15);
}

.bp-summary table {
  width: 100%;
  border-collapse: collapse;
}

.bp-summary td {
  padding: 6px 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.bp-summary .text-right {
  text-align: right;
}

.bp-summary .row-total td {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  padding-top: 12px;
  border-top: var(--border);
}

.bp-summary .row-addon td {
  color: var(--green);
}

.bp-summary .row-discount td {
  color: #ef4444;
}

.bp-summary .row-transport td {
  color: var(--accent);
}

/* ===== BOOKING PANEL: Mini Package Tabs ===== */
.bp-header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bp-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.bp-pkg-tabs {
  display: flex;
  gap: 16px;
  padding: 0 24px 16px;
  border-top: var(--border-light);
  padding-top: 14px;
}

.bp-tab-group {
  flex: 1;
}

.bp-tab-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 8px;
}

.bp-tab-row {
  display: flex;
  gap: 6px;
}

.bp-tab {
  flex: 1;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 8px 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.bp-tab:hover {
  border-color: var(--tab-color);
  transform: translateY(-1px);
}

.bp-tab.active {
  background: var(--white);
  border-color: var(--tab-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bp-tab-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.bp-tab.active .bp-tab-name {
  color: var(--tab-color);
}

.bp-tab-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--tab-color);
  margin-top: 2px;
}

/* ===== Features List in Panel ===== */
.bp-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
}

.bp-features-list li {
  padding: 5px 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px dashed rgba(123, 85, 86, 0.08);
}

/* ============================================
   NEW: Single-Column Booking Form (bf-*)
   ============================================ */
.bp-single-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.bf-section {
  margin-bottom: 32px;
}

.bf-section:last-child {
  margin-bottom: 0;
}

.bf-intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Form Rows & Fields */
.bf-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.bf-field {
  flex: 1;
}

.bf-field.bf-full {
  flex-basis: 100%;
}

.bf-field.bf-wide {
  flex: 2;
}

.bf-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 6px;
}

.bf-field label .req,
.req {
  color: #ef4444;
}

.bf-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--primary);
  background: #FAFAFA;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.bf-input:focus {
  border-color: #A2D5C6;
  box-shadow: 0 0 0 3px rgba(162, 213, 198, 0.15);
}

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

/* Package Section */

.bf-pkg-header {
  margin-bottom: 20px;
}

.bf-label-bold {
  display: block;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.bf-hint {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}

/* All 6 packages in 1 horizontal row */
.bf-pkg-row-all {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

/* Detail (left) + Add-ons & Price (right) */
.bf-detail-addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.bf-pkg-right {
  flex: none;
}

.bf-addons-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bf-pkg-btn {
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.bf-pkg-btn:hover {
  border-color: #A2D5C6;
  transform: translateY(-2px);
}

.bf-pkg-btn.active {
  border-color: #A2D5C6;
  background: #ecfdf5;
  box-shadow: 0 0 0 3px rgba(162, 213, 198, 0.2);
}

.bf-pkg-btn.active::after {
  content: '✓';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #A2D5C6;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.bf-pkg-emoji {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.bf-pkg-btn .bf-pkg-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--primary);
}

.bf-pkg-btn .bf-pkg-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  color: #10b981;
  margin-top: 2px;
}

.bf-pkg-btn .bf-pkg-old {
  display: block;
  font-size: 0.7rem;
  text-decoration: line-through;
  color: #aaa;
}

/* Package Detail Card */
.bf-detail-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bf-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bf-detail-head h3 {
  font-family: 'Noto Serif', serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.bf-detail-price {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--primary);
}

.bf-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.bf-detail-list li {
  padding: 3px 0;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
}

.bf-detail-note {
  font-size: 0.7rem;
  color: #999;
  font-style: italic;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 10px;
}


.bf-addons {
  background: transparent;
  border: none;
  padding: 0;
}

.bf-price-box {
  background: transparent;
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding: 16px 0 0 0;
  margin-top: 10px;
}

.bf-price-box table {
  width: 100%;
  border-collapse: collapse;
}

.bf-price-box td {
  padding: 6px 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.bf-price-box .text-right {
  text-align: right;
}

.bf-price-box .row-total td {
  font-size: 1.1rem;
  font-weight: 900;
  color: #10b981;
  padding-top: 12px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.bf-price-box .row-addon td {
  color: var(--green);
}

.bf-price-box .row-discount td {
  color: #ef4444;
}

.bf-price-box .row-transport td {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 700px) {
  .bp-single-form {
    padding: 24px 16px;
  }

  .bf-row {
    flex-direction: column;
    gap: 12px;
  }

  .bf-pkg-row-all {
    grid-template-columns: repeat(3, 1fr);
  }

  .bf-detail-addons {
    grid-template-columns: 1fr;
  }
}

/* ===== BOOKING FORM ===== */
.form-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}

.form-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  opacity: 0.65;
}

.form-group label .required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: var(--border-2);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  background: var(--gray);
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s;
}

.form-control:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.form-control::placeholder {
  color: rgba(123, 85, 86, 0.3);
  font-weight: 600;
}

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

.form-row .form-group {
  flex: 1;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237b5556' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

textarea.form-control {
  resize: vertical;
  min-height: 70px;
}

/* ===== SIGNATURE ===== */
.signature-box {
  border: 2px dashed rgba(123, 85, 86, 0.3);
  border-radius: var(--r-md);
  background: var(--gray);
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.signature-box.error {
  border-color: var(--danger);
}

.signature-box canvas {
  display: block;
  width: 100%;
  border-radius: var(--r-md);
}

.sig-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 16px;
}

.btn-copy-link {
  background: none;
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--primary);
  opacity: 0.4;
}

.btn-copy-link:hover {
  opacity: 1;
  background: rgba(162, 213, 198, 0.1);
  transform: scale(1.1);
}

.sig-error {
  color: var(--danger);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 4px;
  display: none;
}

.sig-error.show {
  display: block;
}

/* ===== INVOICE SUMMARY ===== */
.invoice-summary {
  background: var(--green-bg);
  border: 2px solid #bbf7d0;
  border-radius: var(--r-md);
  padding: 16px;
  margin-bottom: 16px;
}

.invoice-summary h4 {
  font-size: 0.82rem;
  font-weight: 900;
  color: #166534;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.invoice-summary table {
  width: 100%;
  font-size: 0.82rem;
  border-collapse: collapse;
}

.invoice-summary td {
  padding: 3px 0;
}

.invoice-summary .row-addon td {
  color: var(--green);
}

.invoice-summary .row-discount td {
  color: var(--danger);
}

.invoice-summary .row-transport td {
  color: var(--blue);
}

.invoice-summary .row-total td {
  border-top: 2px solid #166534;
  padding-top: 8px;
  font-weight: 900;
  font-size: 1rem;
  color: #166534;
}

.invoice-summary .text-right {
  text-align: right;
}

/* ===== SUCCESS STATE ===== */
.success-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-xl);
  padding: 48px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  animation: fadeUp 0.5s ease;
}

.success-card .success-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.success-card h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.success-card p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.6;
  margin-bottom: 8px;
}

.success-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--r-full);
  border: var(--border-2);
  font-weight: 800;
  font-size: 0.88rem;
  margin-top: 16px;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 3px 3px 0 #128c48;
}

.success-whatsapp:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #128c48;
}

/* ===== FAQ SECTION ===== */
.section-faq {
  background: var(--accent);
  border-top: var(--border);
  border-bottom: var(--border);
}

.section-faq .section-heading-center h2 {
  color: var(--white);
}

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

.faq-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--cream);
}

.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
  color: var(--accent);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-a p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  border-top: var(--border);
  padding: 28px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer a {
  color: var(--accent);
  font-weight: 800;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-up {
  animation: fadeUp 0.5s ease both;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

/* ===== CHECKBOX CUSTOM ===== */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bp-body {
    gap: 16px;
  }

  .hero-inner {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 56px;
  }

  .navbar {
    height: 56px;
    padding: 0 16px;
  }

  .navbar-brand .brand-tag {
    display: none;
  }

  .navbar-actions .btn-white,
  .navbar-actions .btn-accent {
    font-size: 0.65rem;
    padding: 5px 10px;
    white-space: nowrap;
  }

  /* Hero: 1 column on tablet/mobile */
  .hero {
    min-height: auto;
    padding: 32px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-features {
    display: flex;
    margin-top: 16px;
    margin-left: 0;
    transform: none;
    max-width: 100%;
  }

  .hf-item {
    transform: none !important;
    padding: 16px;
    margin-bottom: 8px;
  }

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

  /* Booking panel: stack columns on mobile */
  .bp-body {
    grid-template-columns: 1fr;
  }

  /* Marquee smaller */
  .marquee-inner span {
    padding: 0 20px;
    font-size: 0.75rem;
  }

  /* FAQ */
  .faq-q {
    padding: 14px 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .price-card {
    padding: 22px 18px;
  }

  .price-name {
    font-size: 0.85rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .price-features li {
    font-size: 0.78rem;
    padding: 5px 0;
  }

  .hero {
    padding: 24px 0;
  }

  .hero-box {
    padding: 24px 20px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 1.2rem;
  }

  .hero-desc {
    font-size: 0.82rem;
    padding: 10px 14px 10px 18px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .tabs {
    width: 100%;
    border-radius: var(--r-md);
  }

  .tab-btn {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.75rem;
  }

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

  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .faq-q {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .faq-item.open .faq-a {
    padding: 0 14px 14px;
  }
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 249, 245, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 16px;
}

.loading-overlay.active {
  display: flex;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(123, 85, 86, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* (form-handle removed — no longer used) */

/* ===== DISCOUNT TOOLTIP ===== */
.discount-tooltip {
  background: #fffbeb;
  border: var(--border-light);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.discount-tooltip::before {
  content: '💡 ';
}

/* ============================================
   7. CHỤP ẢNH CƯỚI CHÂU ÂU (Services)
   ============================================ */
.section-services {
  padding: 100px 0;
  background: var(--white);
}

.kajo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.kajo-service-card {
  display: flex;
  flex-direction: column;
}

.kajo-service-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 32px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* slight soft elevation */
  transition: transform 0.3s ease;
}

.kajo-service-img:hover {
  transform: translateY(-8px);
}

.kajo-service-title {
  font-family: 'Noto Serif', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.kajo-service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .kajo-services-grid {
    grid-template-columns: 1fr;
  }

  .kajo-service-img {
    aspect-ratio: 16/9;
  }
}

/* ============================================
   8. TẠI SAO CHỌN KAJO WEDDING? (Why Us)
   ============================================ */
.section-whyus {
  padding: 0 0 100px 0;
  /* Giảm padding top vì phần Dịch vụ đã có padding bottom */
  background: var(--white);
}

.whyus-heading {
  text-align: center;
  margin-bottom: 64px;
}

.whyus-heading h2 {
  font-family: 'Noto Serif', serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.whyus-heading p {
  color: var(--text-muted);
  font-size: 1rem;
}

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

.why-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.why-card.large {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: center;
}

.why-card .why-icon {
  font-size: 1.8rem;
  color: #735D5A;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card.large h3 {
  font-size: 1.6rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--on-surface-variant);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .whyus-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .why-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================
   9. QUY TRÌNH LÀM VIỆC (Process Workflow)
   ============================================ */
.section-process {
  background: var(--gray);
  padding: 100px 0;
}

.process-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-heading {
  text-align: center;
  margin-bottom: 64px;
}

.process-heading h2 {
  font-family: 'Noto Serif', serif;
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 24px;
}

.process-heading p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.process-step {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.process-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.process-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: #7E6560;
  /* Warm taupe */
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.process-header h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}

.process-content p,
.process-content ul {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 20px;
}

.process-content p {
  padding-left: 0;
}

@media (max-width: 900px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   10. FORM LIÊN HỆ (Story Contact)
   ============================================ */
.section-contact {
  background: var(--white);
  padding: 100px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 40px;
  background: transparent;
}

.contact-info h2 {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-info p.lead {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 16px;
  background: #F8F8F8;
  /* Sáng hơn một chút */
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: #7E6560;
  box-shadow: 0 0 0 4px rgba(126, 101, 96, 0.1);
}

.contact-form .btn-submit {
  width: 100%;
  padding: 18px;
  background: #7E6560;
  color: var(--white);
  border: none;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: 1.05rem;
  margin-top: 16px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(126, 101, 96, 0.3);
  /* Bóng đổ cho form giống mẫu */
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.contact-form .btn-submit:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(126, 101, 96, 0.4);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
}

/* ============================================
   11. MARQUEE REVIEWS 
   ============================================ */
.section-reviews {
  padding: 100px 0;
  background: var(--primary);
  /* Deep blue or brand color requested. User showed blue, but we'll adapt to brand: Dark Brown/Taupe for contrast */
  overflow: hidden;
}

.section-reviews .section-heading-center h2 {
  color: var(--white);
}

.section-reviews .section-heading-center p {
  color: rgba(255, 255, 255, 0.7);
}

.review-marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

.review-marquee-track {
  display: inline-flex;
  gap: 24px;
  animation: marqueeScroll 40s linear infinite;
  padding-left: 24px;
}

.review-marquee-container:hover .review-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.review-card {
  display: inline-flex;
  flex-direction: column;
  width: 380px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  white-space: normal;
  /* allow text wrapping inside card */
  flex-shrink: 0;
}

.review-stars {
  color: #f59e0b;
  /* Golden stars */
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
  /* push bottom elements down */
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary);
}

.review-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .review-card {
    width: 300px;
    padding: 24px;
  }

  .review-text {
    font-size: 0.9rem;
  }
}