/* ── CVBS EVENT BRIEF FORM STYLES ── */
.cvbs-form-wrap { max-width: 780px; margin: 0 auto; padding: 48px 16px 80px; font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1E293B; }

/* Header */
.cvbs-form-header { text-align: center; margin-bottom: 40px; }
.cvbs-logo-bar { display: inline-flex; align-items: center; gap: 10px; background: #0E1B2E; padding: 10px 22px; border-radius: 100px; margin-bottom: 28px; }
.cvbs-logo-mark { width: 30px; height: 30px; border-radius: 6px; background: #2BC4D6; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.cvbs-logo-text { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.cvbs-main-title { font-size: 40px; font-weight: 300; color: #0E1B2E; line-height: 1.05; margin: 0 0 12px; font-family: 'Cormorant Garamond', Georgia, serif; }
.cvbs-main-title em { font-style: italic; color: #1DA8B8; }
.cvbs-subtitle { font-size: 15px; font-weight: 300; color: #475569; line-height: 1.7; max-width: 460px; margin: 0 auto 20px; }
.cvbs-free-badge { display: inline-flex; align-items: center; gap: 8px; background: #E8FAFE; border: 1px solid rgba(43,196,214,0.3); border-radius: 100px; padding: 8px 20px; font-size: 12px; font-weight: 500; color: #1590A0; }

/* Progress */
.cvbs-progress-wrap { margin-bottom: 36px; }
.cvbs-progress-steps { display: flex; justify-content: space-between; align-items: center; position: relative; margin-bottom: 8px; }
.cvbs-progress-steps::before { content: ''; position: absolute; top: 16px; left: 16px; right: 16px; height: 2px; background: #E2E8F0; z-index: 0; }
.cvbs-progress-fill { position: absolute; top: 16px; left: 16px; height: 2px; background: #2BC4D6; z-index: 1; transition: width 0.4s ease; width: 0%; }
.cvbs-step-dot { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 2px solid #E2E8F0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: #94A3B8; position: relative; z-index: 2; transition: all 0.3s ease; }
.cvbs-step-dot.cvbs-active { background: #2BC4D6; border-color: #2BC4D6; color: #fff; box-shadow: 0 0 0 4px rgba(43,196,214,0.15); }
.cvbs-step-dot.cvbs-done { background: #1DA8B8; border-color: #1DA8B8; color: transparent; }
.cvbs-step-dot.cvbs-done::after { content: '✓'; color: #fff; font-size: 13px; position: absolute; }
.cvbs-step-labels { display: flex; justify-content: space-between; }
.cvbs-step-lbl { font-size: 10px; font-weight: 500; color: #94A3B8; letter-spacing: 0.5px; text-transform: uppercase; width: 32px; text-align: center; transition: color 0.3s; }
.cvbs-step-lbl.cvbs-active { color: #1590A0; }

/* Card */
.cvbs-card { background: #fff; border-radius: 20px; box-shadow: 0 20px 60px rgba(43,196,214,0.1), 0 4px 16px rgba(0,0,0,0.06); overflow: hidden; }

/* Sections */
.cvbs-section { display: none; padding: 44px 48px; animation: cvbsFadeUp 0.35s ease; }
.cvbs-section.cvbs-active { display: block; }
@keyframes cvbsFadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.cvbs-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #2BC4D6; margin-bottom: 6px; }
.cvbs-section-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 300; color: #0E1B2E; margin: 0 0 6px; line-height: 1.1; }
.cvbs-section-title em { font-style: italic; color: #1DA8B8; }
.cvbs-section-desc { font-size: 13px; color: #475569; font-weight: 300; margin-bottom: 32px; line-height: 1.6; }

/* Grid */
.cvbs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.cvbs-span2 { grid-column: span 2; }
.cvbs-subheading { grid-column: span 2; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #1DA8B8; margin-top: 8px; padding-top: 16px; border-top: 1px solid #E8FAFE; }

/* Fields */
.cvbs-field { display: flex; flex-direction: column; gap: 5px; }
.cvbs-field label { font-size: 12px; font-weight: 600; color: #1E293B; letter-spacing: 0.2px; }
.cvbs-optional { font-weight: 400; color: #94A3B8; font-size: 11px; margin-left: 4px; }
.cvbs-hint { display: block; font-weight: 400; font-size: 11px; color: #94A3B8; margin-top: 1px; }

.cvbs-form-wrap input[type="text"],
.cvbs-form-wrap input[type="email"],
.cvbs-form-wrap input[type="tel"],
.cvbs-form-wrap input[type="number"],
.cvbs-form-wrap input[type="date"],
.cvbs-form-wrap select,
.cvbs-form-wrap textarea { width: 100%; padding: 11px 15px; border: 1.5px solid #E2E8F0; border-radius: 10px; font-family: inherit; font-size: 14px; color: #1E293B; background: #fff; transition: all 0.2s ease; outline: none; appearance: none; -webkit-appearance: none; box-sizing: border-box; }
.cvbs-form-wrap input:focus, .cvbs-form-wrap select:focus, .cvbs-form-wrap textarea:focus { border-color: #2BC4D6; box-shadow: 0 0 0 3px rgba(43,196,214,0.12); background: #F0FCFF; }
.cvbs-form-wrap input::placeholder, .cvbs-form-wrap textarea::placeholder { color: #94A3B8; font-weight: 300; }
.cvbs-form-wrap textarea { resize: vertical; min-height: 88px; line-height: 1.6; }
.cvbs-form-wrap select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px; cursor: pointer; }

/* Chips */
.cvbs-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.cvbs-chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1.5px solid #E2E8F0; border-radius: 100px; cursor: pointer; transition: all 0.2s ease; font-size: 13px; color: #475569; font-weight: 400; user-select: none; }
.cvbs-chip:hover { border-color: #2BC4D6; color: #1590A0; background: #F0FCFF; }
.cvbs-chip input[type="checkbox"] { display: none; }
.cvbs-chip.cvbs-selected { background: #E8FAFE; border-color: #2BC4D6; color: #1590A0; font-weight: 500; }

/* Accommodation */
.cvbs-accom-box { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 10px; overflow: hidden; }
.cvbs-accom-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid #E2E8F0; font-size: 13px; color: #475569; }
.cvbs-accom-row small { color: #94A3B8; font-size: 11px; margin-left: 4px; }
.cvbs-accom-row input[type="number"] { width: 88px !important; padding: 8px 12px !important; text-align: center; }

/* Privacy note */
.cvbs-privacy-note { background: #E8FAFE; border: 1px solid rgba(43,196,214,0.2); border-radius: 10px; padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; font-size: 12px; }
.cvbs-privacy-note span { font-size: 18px; flex-shrink: 0; }
.cvbs-privacy-note strong { display: block; font-size: 12px; font-weight: 600; color: #1590A0; margin-bottom: 4px; }
.cvbs-privacy-note p { margin: 0; color: #475569; line-height: 1.6; font-size: 12px; }

/* Nav */
.cvbs-form-nav { display: flex; justify-content: space-between; align-items: center; padding: 24px 48px 32px; border-top: 1px solid #F1F5F9; background: #F8FAFC; }
.cvbs-btn-back { display: flex; align-items: center; gap: 8px; padding: 11px 22px; border: 1.5px solid #E2E8F0; border-radius: 100px; background: #fff; font-family: inherit; font-size: 13px; font-weight: 500; color: #475569; cursor: pointer; transition: all 0.2s ease; }
.cvbs-btn-back:hover { border-color: #94A3B8; color: #1E293B; }
.cvbs-btn-back.cvbs-hidden { visibility: hidden; }
.cvbs-btn-next { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border: none; border-radius: 100px; background: #2BC4D6; font-family: inherit; font-size: 13px; font-weight: 600; color: #fff; cursor: pointer; transition: all 0.2s ease; letter-spacing: 0.3px; }
.cvbs-btn-next:hover { background: #1DA8B8; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(43,196,214,0.3); }
.cvbs-btn-next:active { transform: translateY(0); }
.cvbs-btn-next:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Thank you */
.cvbs-thankyou { display: none; padding: 72px 48px; text-align: center; animation: cvbsFadeUp 0.5s ease; }
.cvbs-thankyou.cvbs-active { display: block; }
.cvbs-ty-icon { width: 68px; height: 68px; border-radius: 50%; background: #E8FAFE; border: 2px solid #2BC4D6; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #1DA8B8; margin: 0 auto 24px; line-height: 1; }
.cvbs-thankyou h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 36px; font-weight: 300; color: #0E1B2E; margin: 0 0 12px; line-height: 1.1; }
.cvbs-thankyou h3 em { font-style: italic; color: #1DA8B8; }
.cvbs-thankyou p { font-size: 14px; color: #475569; font-weight: 300; line-height: 1.7; max-width: 400px; margin: 0 auto 8px; }
.cvbs-ty-contact { display: inline-block; margin-top: 20px; font-size: 13px; color: #1590A0; font-weight: 500; }

/* Error */
.cvbs-error-msg { margin: 16px 48px; padding: 14px 18px; background: #FEF2F2; border: 1px solid #FECACA; border-radius: 10px; color: #DC2626; font-size: 13px; line-height: 1.5; }

/* Footer */
.cvbs-form-footer { text-align: center; margin-top: 28px; font-size: 12px; color: #94A3B8; line-height: 1.8; }
.cvbs-form-footer a { color: #1DA8B8; text-decoration: none; font-weight: 500; }
.cvbs-form-footer strong { color: #475569; }

/* Spinner */
.cvbs-spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: cvbsSpin 0.7s linear infinite; }
@keyframes cvbsSpin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 600px) {
  .cvbs-section, .cvbs-form-nav { padding-left: 20px; padding-right: 20px; }
  .cvbs-grid { grid-template-columns: 1fr; }
  .cvbs-span2, .cvbs-subheading { grid-column: span 1; }
  .cvbs-main-title { font-size: 30px; }
  .cvbs-form-wrap { padding: 24px 12px 60px; }
}
