/* ==========================================================================
   Homepage V3 — BnBuddy AI-Forward Redesign
   Plus Jakarta Sans + Inter · Brand blue #4361ee
   ========================================================================== */

/* ---------- Google Material Symbols ---------- */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@400,0&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --v3-primary: #4361ee;
  --v3-primary-dark: #3a56d4;
  --v3-accent: #1CB5FC;
  --v3-dark: #1a1a2e;
  --v3-text: #191c1e;
  --v3-text-muted: #555;
  --v3-text-light: #717185;
  --v3-bg: #ffffff;
  --v3-bg-soft: #f8f9fb;
  --v3-bg-dark: #0f172a;
  --v3-card-radius: 16px;
  --v3-section-pad: 96px 0;
  --v3-section-pad-mobile: 56px 0;
  --v3-max-width: 1140px;
  --v3-font-heading: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  --v3-font-body: 'Inter', sans-serif;
  --v3-green: #22c55e;
  --v3-green-dark: #16a34a;
}

/* ---------- Section Reset ---------- */
.v3-section {
  padding: var(--v3-section-pad);
  width: 100%;
}

.v3-container {
  max-width: var(--v3-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.v3-section h2 {
  font-family: var(--v3-font-heading);
  font-weight: 800;
  color: var(--v3-text);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.v3-section h3 {
  font-family: var(--v3-font-heading);
  font-weight: 700;
  color: var(--v3-text);
  line-height: 1.25;
  margin: 0 0 8px;
}

.v3-section p, .v3-section li {
  font-family: var(--v3-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--v3-text-muted);
}

/* ---------- Buttons ---------- */
.v3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--v3-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.v3-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.v3-btn:active {
  transform: translateY(0);
}

.v3-btn--primary {
  background: var(--v3-green);
  color: #fff !important;
}

.v3-btn--primary:hover {
  background: var(--v3-green-dark);
}

.v3-btn--outline {
  background: transparent;
  color: var(--v3-text);
  border: 2px solid #ddd;
}

.v3-btn--outline:hover {
  border-color: var(--v3-primary);
  color: var(--v3-primary);
}

.v3-btn--white {
  background: #fff;
  color: var(--v3-primary);
}

.v3-btn--white:hover {
  background: #f0f4ff;
}

/* ---------- Eyebrow / Label ---------- */
.v3-eyebrow {
  font-family: var(--v3-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v3-primary);
  margin-bottom: 12px;
}

/* ---------- Section Header ---------- */
.v3-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.v3-section-header h2 {
  font-size: 2.5rem;
}

.v3-section-header p {
  font-size: 1.125rem;
  margin-top: 12px;
}

/* ==========================================================================
   SECTION 2: Logo Bar
   ========================================================================== */
.v3-logos {
  padding: 32px 0;
  background: var(--v3-bg);
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.v3-logos__label {
  text-align: center;
  font-family: var(--v3-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--v3-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.v3-logos__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: v3-scroll 25s linear infinite;
  width: max-content;
}

.v3-logos__track img,
.v3-logos__track svg {
  height: 28px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.v3-logos__track img:hover,
.v3-logos__track svg:hover {
  opacity: 0.8;
}

@keyframes v3-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTION 3: AI Co-Host (Stitch-inspired phone mockup)
   ========================================================================== */
.v3-cohost {
  background: var(--v3-bg-soft);
  overflow: hidden;
}

.v3-cohost__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.v3-cohost__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.v3-cohost__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.v3-cohost__content h2 .v3-gradient-text {
  background: linear-gradient(135deg, var(--v3-primary), #c8a917);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v3-cohost__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.v3-cohost__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(67, 97, 238, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v3-cohost__card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 48px rgba(67, 97, 238, 0.1);
}

.v3-cohost__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-cohost__card-icon .material-symbols-outlined {
  font-size: 24px;
}

.v3-cohost__card-icon--purple {
  background: #e2dfff;
  color: var(--v3-primary);
}

.v3-cohost__card-icon--blue {
  background: #dcddfc;
  color: #5a5d76;
}

.v3-cohost__card-icon--gold {
  background: #ffe16c;
  color: #705d00;
}

.v3-cohost__card-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.v3-cohost__card-text p {
  font-size: 0.875rem;
  color: var(--v3-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Phone Mockup --- */
.v3-cohost__mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.v3-cohost__mockup-glow {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 380px;
  height: 380px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.v3-phone {
  position: relative;
  z-index: 10;
  width: 300px;
  height: 600px;
  background: #1e293b;
  border-radius: 2.5rem;
  padding: 10px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
  ring: 6px solid #334155;
}

.v3-phone__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #1e293b;
  border-radius: 0 0 12px 12px;
  z-index: 20;
}

.v3-phone__screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Chat Header */
.v3-chat__header {
  background: var(--v3-primary);
  padding: 20px 16px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.v3-chat__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.v3-chat__avatar .material-symbols-outlined {
  font-size: 20px;
  color: #fff;
}

.v3-chat__header-info h4 {
  font-family: var(--v3-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.v3-chat__header-info span {
  font-size: 0.6rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Chat Messages */
.v3-chat__messages {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  background: var(--v3-bg-soft);
}

.v3-chat__msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.75rem;
  line-height: 1.45;
  font-family: var(--v3-font-body);
}

.v3-chat__msg--guest {
  align-self: flex-end;
  background: #fff;
  color: var(--v3-text);
  border-top-right-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.v3-chat__msg--ai {
  align-self: flex-start;
  background: #6661e7;
  color: #fff;
  border-top-left-radius: 4px;
}

/* Chat Input */
.v3-chat__input {
  padding: 10px 14px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v3-chat__input-field {
  flex: 1;
  background: var(--v3-bg-soft);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 0.65rem;
  color: var(--v3-text-light);
}

.v3-chat__input-send {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--v3-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.v3-chat__input-send .material-symbols-outlined {
  font-size: 14px;
  color: #fff;
}

/* Floating Response Badge */
.v3-cohost__float-badge {
  position: absolute;
  top: 25%;
  left: -30px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
}

.v3-cohost__float-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-cohost__float-icon .material-symbols-outlined {
  font-size: 18px;
}

.v3-cohost__float-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--v3-text-light);
}

.v3-cohost__float-value {
  font-family: var(--v3-font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--v3-text);
  line-height: 1;
}

/* CTA buttons row */
.v3-cohost__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.v3-btn--gradient {
  background: linear-gradient(135deg, var(--v3-primary), #6661e7);
  color: #fff !important;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(67, 97, 238, 0.25);
}

.v3-btn--gradient:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 32px rgba(67, 97, 238, 0.3);
}

.v3-cohost__ctas a.v3-btn--ghost,
.v3-btn--ghost {
  background: #edeef0;
  color: var(--v3-text) !important;
  border-radius: 9999px;
  text-decoration: none !important;
  border: 1px solid #d9dadc;
}

.v3-btn--ghost:hover {
  background: #e1e2e4;
  text-decoration: none !important;
}

/* ==========================================================================
   SECTION 4: Welcome Portal / Digital Guidebook
   ========================================================================== */
.v3-guidebook {
  background: var(--v3-bg);
}

.v3-guidebook__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.v3-guidebook__card {
  background: var(--v3-bg-soft);
  padding: 32px;
  border-radius: var(--v3-card-radius);
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.v3-guidebook__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.v3-guidebook__card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.v3-guidebook__card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.v3-guidebook__card p {
  font-size: 0.9375rem;
  margin: 0;
}

/* ==========================================================================
   SECTION 5: Direct Booking — Stitch Split-Screen Redesign
   ========================================================================== */
.v3-booking {
  background: var(--v3-bg);
  padding: 0;
  overflow: hidden;
}

.v3-booking__split {
  display: flex;
  min-height: 680px;
}

/* --- Left: Value Proposition --- */
.v3-booking__left {
  flex: 1;
  background: #f2f4f6;
  padding: 80px 64px;
  display: flex;
  align-items: center;
}

.v3-booking__left-inner {
  max-width: 540px;
  margin: 0 auto 0 auto;
}

.v3-booking__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe16c;
  color: #221b00;
  padding: 6px 18px;
  border-radius: 9999px;
  font-family: var(--v3-font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.v3-booking__badge .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 1;
}

.v3-booking__left h2 {
  font-family: var(--v3-font-heading);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--v3-text);
  margin: 0 0 24px;
}

.v3-booking__left h2 .v3-booking__accent {
  color: var(--v3-primary);
  font-style: italic;
}

.v3-booking__left > .v3-booking__left-inner > p {
  font-family: var(--v3-font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #464554;
  margin: 0 0 40px;
  max-width: 460px;
}

/* Checklist */
.v3-booking__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v3-booking__checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--v3-font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--v3-text);
}

.v3-booking__check-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2dfff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v3-booking__check-icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--v3-primary);
  font-variation-settings: 'FILL' 1;
}

/* Gradient CTA */
.v3-btn--booking-cta {
  background: linear-gradient(135deg, var(--v3-primary), #6661e7);
  color: #fff !important;
  padding: 18px 40px;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(67, 97, 238, 0.25);
  text-decoration: none;
}

.v3-btn--booking-cta:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 16px 40px rgba(67, 97, 238, 0.35);
}

.v3-btn--booking-cta .material-symbols-outlined {
  font-size: 20px;
}

/* --- Right: Showcase Side --- */
.v3-booking__right {
  flex: 1;
  background: #fff;
  position: relative;
  padding: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative skewed bg */
.v3-booking__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(241, 243, 247, 0.5);
  transform: skewY(-6deg) translateY(120px);
  pointer-events: none;
}

.v3-booking__showcase {
  position: relative;
  width: 100%;
  max-width: 560px;
  z-index: 1;
}

/* Property card */
.v3-booking__property-card {
  position: relative;
  z-index: 20;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(67, 97, 238, 0.12);
  padding: 16px;
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.v3-booking__property-card:hover {
  transform: rotate(0deg);
}

.v3-booking__property-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.v3-booking__property-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 8px;
}

.v3-booking__property-name {
  font-family: var(--v3-font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--v3-text);
  letter-spacing: -0.02em;
  margin: 0;
}

.v3-booking__property-location {
  font-family: var(--v3-font-body);
  font-size: 0.875rem;
  color: #464554;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 0;
}

.v3-booking__property-location .material-symbols-outlined {
  font-size: 14px;
}

.v3-booking__property-price {
  font-family: var(--v3-font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--v3-primary);
  letter-spacing: -0.02em;
}

.v3-booking__property-price-unit {
  display: block;
  font-family: var(--v3-font-body);
  font-size: 0.75rem;
  color: #777585;
  font-weight: 400;
  text-align: right;
}

/* Floating Calendar */
.v3-booking__calendar {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 30;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  padding: 20px 24px;
  width: 280px;
  transform: rotate(3deg);
}

.v3-booking__cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.v3-booking__cal-header h4 {
  font-family: var(--v3-font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--v3-text);
  margin: 0;
}

.v3-booking__cal-nav {
  display: flex;
  gap: 4px;
}

.v3-booking__cal-nav .material-symbols-outlined {
  font-size: 18px;
  color: #777585;
  cursor: pointer;
}

.v3-booking__cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
  font-family: var(--v3-font-body);
  font-size: 0.6875rem;
  color: #777585;
  margin-bottom: 8px;
}

.v3-booking__cal-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
  font-family: var(--v3-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
}

.v3-booking__cal-date {
  padding: 6px 2px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.v3-booking__cal-date:hover {
  background: #e2dfff;
}

.v3-booking__cal-date--dim {
  color: #d9dadc;
}

.v3-booking__cal-date--selected {
  background: var(--v3-primary);
  color: #fff;
}

.v3-booking__cal-date--range {
  background: #e2dfff;
  color: #464554;
}

.v3-booking__cal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.v3-booking__cal-footer span {
  font-size: 0.6875rem;
  color: #777585;
}

.v3-booking__cal-footer button {
  background: var(--v3-primary);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--v3-font-body);
}

/* Floating Interior Image */
.v3-booking__float-img {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 10;
  width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 4px solid #fff;
  transform: rotate(-12deg);
}

.v3-booking__float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Legacy badge (kept for backward compat) */
.v3-badge--soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: #FFF4E5;
  color: #855B1B;
  font-family: var(--v3-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   SECTION 6: How It Works
   ========================================================================== */
.v3-steps {
  background: var(--v3-bg);
}

.v3-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.v3-step {
  text-align: center;
}

.v3-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--v3-primary);
  color: #fff;
  font-family: var(--v3-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.v3-step h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.v3-step p {
  font-size: 0.9375rem;
}

/* ==========================================================================
   SECTION 7: Testimonial
   ========================================================================== */
.v3-testimonial {
  background: var(--v3-bg-soft);
}

.v3-testimonial__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.v3-testimonial__quote {
  font-family: var(--v3-font-body);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--v3-text);
  font-style: italic;
  position: relative;
  margin: 0 0 32px;
}

.v3-testimonial__quote::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--v3-primary);
  opacity: 0.2;
  position: absolute;
  top: -24px;
  left: -12px;
}

.v3-testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.v3-testimonial__author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.v3-testimonial__author-info {
  text-align: left;
}

.v3-testimonial__author-name {
  font-family: var(--v3-font-heading);
  font-weight: 700;
  color: var(--v3-text);
  font-size: 1rem;
}

.v3-testimonial__author-detail {
  font-family: var(--v3-font-body);
  font-size: 0.875rem;
  color: var(--v3-text-light);
}

/* ==========================================================================
   SECTION 8: Management Services (compressed)
   ========================================================================== */
.v3-management {
  background: var(--v3-bg-dark);
  color: #fff;
}

.v3-management h2 {
  color: #fff;
}

.v3-management p {
  color: rgba(255, 255, 255, 0.7);
}

.v3-management__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.v3-management__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--v3-card-radius);
}

.v3-management__card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.v3-management__card p {
  font-size: 0.9375rem;
  margin: 0;
}

.v3-management__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 32px;
}

.v3-management__trust span {
  font-family: var(--v3-font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   SECTION 9: FAQ
   ========================================================================== */
.v3-faq {
  background: var(--v3-bg);
}

.v3-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.v3-faq__item {
  border-bottom: 1px solid #eee;
}

.v3-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--v3-font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--v3-text);
  text-align: left;
}

.v3-faq__question:hover {
  color: var(--v3-primary);
}

.v3-faq__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--v3-text-light);
  transition: transform 0.3s ease;
}

.v3-faq__item.is-open .v3-faq__icon {
  transform: rotate(45deg);
}

.v3-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.v3-faq__item.is-open .v3-faq__answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.v3-faq__answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ==========================================================================
   SECTION 10: Final CTA
   ========================================================================== */
.v3-cta {
  background: linear-gradient(135deg, var(--v3-primary) 0%, #6366f1 100%);
  text-align: center;
}

.v3-cta h2 {
  color: #fff;
  font-size: 2.5rem;
}

.v3-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.v3-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   NAVIGATION DROPDOWN
   ========================================================================== */
.breakdance-dropdown-custom-content .v3-tools-dropdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
}

.breakdance-dropdown-custom-content .v3-tools-dropdown a {
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--v3-text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.breakdance-dropdown-custom-content .v3-tools-dropdown a:hover {
  background: var(--v3-bg-soft);
  color: var(--v3-primary);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .v3-section-header h2 {
    font-size: 2rem;
  }

  .v3-cohost__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v3-cohost__mockup {
    order: -1;
  }

  .v3-cohost__float-badge {
    display: none;
  }

  .v3-cohost__content h2 {
    font-size: 2rem;
  }

  /* Direct Booking split-screen → stack */
  .v3-booking__split {
    flex-direction: column;
    min-height: auto;
  }

  .v3-booking__left {
    padding: 56px 32px;
  }

  .v3-booking__right {
    padding: 40px 32px 72px;
    min-height: 480px;
  }

  .v3-booking__float-img {
    width: 120px;
    height: 120px;
    top: -10px;
    left: -10px;
  }

  .v3-booking__calendar {
    width: 240px;
    right: -10px;
    bottom: -10px;
  }
}

@media (max-width: 767px) {
  .v3-section {
    padding: var(--v3-section-pad-mobile);
  }

  .v3-section-header h2 {
    font-size: 1.75rem;
  }

  .v3-guidebook__cards,
  .v3-management__grid {
    grid-template-columns: 1fr;
  }

  .v3-steps__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v3-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v3-testimonial__quote {
    font-size: 1.0625rem;
  }

  .v3-cta h2 {
    font-size: 1.75rem;
  }

  .v3-logos__track {
    gap: 32px;
  }

  .v3-logos__track img,
  .v3-logos__track svg {
    height: 22px;
  }

  .v3-management__trust {
    flex-direction: column;
    gap: 12px;
  }

  /* Direct Booking mobile */
  .v3-booking__left {
    padding: 40px 20px;
  }

  .v3-booking__left h2 {
    font-size: 1.875rem;
  }

  .v3-booking__right {
    padding: 32px 20px 60px;
  }

  .v3-booking__float-img {
    display: none;
  }

  .v3-booking__calendar {
    display: none;
  }

  .v3-booking__property-card {
    transform: none;
  }
}
