/* ═══════════════════════════════════════════════════════════════════════════
   VGCSC Business Submission Form - Complete Stylesheet
   Colors: #1C2C4C (navy) | #3bbec9 (teal) | #000000 (black)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────────────────────── */
:root {
  --vgcsc-navy:       #1C2C4C;
  --vgcsc-teal:       #3bbec9;
  --vgcsc-teal-dark:  #2fa3ad;
  --vgcsc-teal-light: #e8f8f9;
  --vgcsc-black:      #000000;
  --vgcsc-white:      #ffffff;
  --vgcsc-bg:         #f4f7fb;
  --vgcsc-card:       #ffffff;
  --vgcsc-border:     #1C2C4C;
  --vgcsc-border-lt:  #d0d9e8;
  --vgcsc-text:       #000000;
  --vgcsc-muted:      #6b7a99;
  --vgcsc-error:      #c0392b;
  --vgcsc-error-bg:   #fdf3f2;
  --vgcsc-success:    #1a7a4a;
  --vgcsc-success-bg: #edf8f2;
  --vgcsc-radius:     0;           /* No border-radius per spec */
  --vgcsc-shadow:     0 2px 12px rgba(28,44,76,0.10);
  --vgcsc-shadow-lg:  0 4px 24px rgba(28,44,76,0.14);
  --vgcsc-transition: 0.22s ease;
  --vgcsc-font:       -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
#vgcsc-form-wrap *,
#vgcsc-form-wrap *::before,
#vgcsc-form-wrap *::after {
  box-sizing: border-box;
}

#vgcsc-form-wrap {
  font-family:  var(--vgcsc-font);
  font-size:    15px;
  color:        var(--vgcsc-text);
  line-height:  1.6;
  background:   var(--vgcsc-bg);
  padding:      32px 16px 64px;
  min-height:   100vh;
}

/* ── Form Wrapper ──────────────────────────────────────────────────────────── */
.vgcsc-wrap {
  max-width: 100%;
  margin:    0 auto;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.vgcsc-header {
  background:    var(--vgcsc-navy);
  padding:       28px 36px;
  display:       flex;
  align-items:   center;
  gap:           20px;
  margin-bottom: 0;
}

.vgcsc-logo {
  height:         64px;
  width:          auto;
  flex-shrink:    0;
  filter:         drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.vgcsc-header-text h1 {
  margin:      0 0 4px;
  font-size:   24px;
  color:       var(--vgcsc-white);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.vgcsc-header-text p {
  margin:    0;
  font-size: 14px;
  color:     #a8d8de;
}

/* ── Progress Stepper ──────────────────────────────────────────────────────── */
.vgcsc-stepper {
  background:    var(--vgcsc-navy);
  border-top:    1px solid rgba(255,255,255,0.12);
  padding:       18px 36px 0;
}

.vgcsc-steps-list {
  display:         flex;
  list-style:      none;
  margin:          0;
  padding:         0;
  gap:             0;
  position:        relative;
}

.vgcsc-step-item {
  flex:           1;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            6px;
  padding-bottom: 14px;
  cursor:         default;
  position:       relative;
}

/* Connector line between steps */
.vgcsc-step-item:not(:last-child)::after {
  content:    '';
  position:   absolute;
  top:        14px;
  left:       calc(50% + 14px);
  right:      calc(-50% + 14px);
  height:     2px;
  background: rgba(255,255,255,0.18);
  z-index:    0;
}

.vgcsc-step-item.completed:not(:last-child)::after,
.vgcsc-step-item.active:not(:last-child)::after {
  background: var(--vgcsc-teal);
}

.vgcsc-step-bubble {
  width:           30px;
  height:          30px;
  border-radius:   50%;
  background:      rgba(255,255,255,0.15);
  border:          2px solid rgba(255,255,255,0.3);
  color:           rgba(255,255,255,0.7);
  font-size:       13px;
  font-weight:     700;
  display:         flex;
  align-items:     center;
  justify-content: center;
  z-index:         1;
  position:        relative;
  transition:      all var(--vgcsc-transition);
}

.vgcsc-step-text {
  font-size:  11px;
  color:      rgba(255,255,255,0.5);
  text-align: center;
  font-weight: 500;
  transition: color var(--vgcsc-transition);
  white-space: nowrap;
}

/* Active step */
.vgcsc-step-item.active .vgcsc-step-bubble {
  background:  var(--vgcsc-teal);
  border-color: var(--vgcsc-teal);
  color:       var(--vgcsc-white);
  box-shadow:  0 0 0 4px rgba(59,190,201,0.25);
}
.vgcsc-step-item.active .vgcsc-step-text {
  color: var(--vgcsc-teal);
  font-weight: 700;
}

/* Completed step */
.vgcsc-step-item.completed .vgcsc-step-bubble {
  background:   var(--vgcsc-teal-dark);
  border-color: var(--vgcsc-teal-dark);
  color:        var(--vgcsc-white);
}
.vgcsc-step-item.completed .vgcsc-step-bubble::before {
  content: '✓';
}
.vgcsc-step-item.completed .vgcsc-step-text {
  color: #a8d8de;
}

/* Progress fill bar */
.vgcsc-progress-track {
  height:     3px;
  background: rgba(255,255,255,0.12);
  margin:     0 -36px;
}
.vgcsc-progress-fill {
  height:     100%;
  background: var(--vgcsc-teal);
  transition: width 0.4s ease;
}

/* ── Form Steps ────────────────────────────────────────────────────────────── */
#vgcsc-submission-form {
  margin: 0;
}

.vgcsc-step {
  display:       none;
  background:    var(--vgcsc-card);
  padding:       36px 36px 28px;
  box-shadow:    var(--vgcsc-shadow);
  border:        1px solid var(--vgcsc-border-lt);
  border-top:    3px solid var(--vgcsc-teal);
  animation:     vgcscFadeIn 0.28s ease both;
}

.vgcsc-step--active,
.vgcsc-step[data-step="1"].vgcsc-step--active {
  display: block;
}

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

/* Step Header */
.vgcsc-step-header {
  margin-bottom: 28px;
}

.vgcsc-step-badge {
  display:     inline-block;
  background:  var(--vgcsc-teal-light);
  color:       var(--vgcsc-teal-dark);
  font-size:   11px;
  font-weight: 700;
  padding:     3px 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vgcsc-step-header h2 {
  color:       var(--vgcsc-navy);
  font-size:   22px;
  font-weight: 700;
  margin:      0 0 6px;
  line-height: 1.3;
}

.vgcsc-step-desc {
  color:     var(--vgcsc-muted);
  font-size: 14px;
  margin:    0;
}

/* ── Fields Grid ───────────────────────────────────────────────────────────── */
.vgcsc-fields-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   20px 24px;
}

.vgcsc-field-group {
  display:        flex;
  flex-direction: column;
  gap:            5px;
}

.vgcsc-full-width {
  grid-column: 1 / -1;
}

/* ── Labels ────────────────────────────────────────────────────────────────── */
.vgcsc-label {
  color:       var(--vgcsc-navy);
  font-weight: 700;
  font-size:   13px;
  display:     block;
  letter-spacing: 0.2px;
}

.vgcsc-required {
  color:       var(--vgcsc-error);
  margin-left: 2px;
}

.vgcsc-label-optional {
  color:       var(--vgcsc-muted);
  font-weight: 400;
  font-size:   12px;
  margin-left: 4px;
}

.vgcsc-label-hint {
  display:     block;
  color:       var(--vgcsc-muted);
  font-weight: 400;
  font-size:   12px;
  margin-top:  2px;
}

/* ── Inputs & Textareas ────────────────────────────────────────────────────── */
.vgcsc-input,
.vgcsc-select,
.vgcsc-textarea {
  width:          100%;
  padding:        10px 13px;
  font-size:      14px;
  font-family:    var(--vgcsc-font);
  color:          var(--vgcsc-text);
  background:     var(--vgcsc-white);
  border:         1px solid var(--vgcsc-navy);
  border-radius:  var(--vgcsc-radius);
  outline:        none;
  transition:     border-color var(--vgcsc-transition), box-shadow var(--vgcsc-transition);
  -webkit-appearance: none;
  appearance:     none;
}

.vgcsc-input:focus,
.vgcsc-select:focus,
.vgcsc-textarea:focus {
  border-color: var(--vgcsc-teal);
  box-shadow:   0 0 0 3px rgba(59,190,201,0.18);
}

.vgcsc-input.vgcsc-error,
.vgcsc-select.vgcsc-error,
.vgcsc-textarea.vgcsc-error {
  border-color: var(--vgcsc-error);
  background:   var(--vgcsc-error-bg);
}

.vgcsc-input.vgcsc-error:focus,
.vgcsc-textarea.vgcsc-error:focus {
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}

.vgcsc-textarea {
  resize:      vertical;
  min-height:  90px;
  line-height: 1.6;
}

/* Select arrow */
.vgcsc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231C2C4C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 13px center;
  background-size:     10px;
  padding-right:       36px;
  cursor:              pointer;
}

/* ── Input with Prefix (Social Icons) ─────────────────────────────────────── */
.vgcsc-input-prefix-wrap {
  position: relative;
  display:  flex;
}

.vgcsc-input-prefix {
  display:          flex;
  align-items:      center;
  justify-content:  center;
  width:            40px;
  flex-shrink:      0;
  color:            var(--vgcsc-white);
  border-right:     none;
  font-size:        16px;
}

.vgcsc-input--has-prefix {
  border-left: none;
  flex:        1;
}

.vgcsc-input--has-prefix:focus {
  border-left-color: var(--vgcsc-teal);
}

/* ── Hint Text ─────────────────────────────────────────────────────────────── */
.vgcsc-hint {
  font-size:  12px;
  color:      var(--vgcsc-muted);
  margin:     0;
  line-height: 1.5;
}

/* ── Error Messages ────────────────────────────────────────────────────────── */
.vgcsc-field-error {
  font-size:   12px;
  color:       var(--vgcsc-error);
  font-weight: 600;
  min-height:  16px;
  display:     block;
}

/* ── Character / Word Counters ─────────────────────────────────────────────── */
.vgcsc-char-counter,
.vgcsc-word-counter {
  font-size:  12px;
  color:      var(--vgcsc-muted);
  text-align: right;
}

.vgcsc-word-counter {
  display:     flex;
  align-items: center;
  gap:         4px;
  font-size:   12px;
}

#vgcsc-word-count-number {
  font-weight: 700;
  color:       var(--vgcsc-navy);
  font-size:   14px;
}

.vgcsc-word-counter.vgcsc-wc-ok   #vgcsc-word-count-number { color: var(--vgcsc-success); }
.vgcsc-word-counter.vgcsc-wc-over #vgcsc-word-count-number { color: var(--vgcsc-error);   }

/* ── Dropzone / Gallery ────────────────────────────────────────────────────── */
.vgcsc-gallery-callout {
  display:     flex;
  align-items: center;
  gap:         8px;
  background:  var(--vgcsc-teal-light);
  border-left: 3px solid var(--vgcsc-teal);
  padding:     9px 14px;
  font-size:   13px;
  color:       var(--vgcsc-navy);
  margin-bottom: 12px;
}

.vgcsc-dropzone {
  background:    var(--vgcsc-white);
  border:        2px dashed var(--vgcsc-teal);
  padding:       40px 24px;
  text-align:    center;
  cursor:        pointer;
  transition:    background var(--vgcsc-transition), border-color var(--vgcsc-transition);
  position:      relative;
  user-select:   none;
}

/* Let clicks pass through inner content to the dropzone element where Dropzone's handler lives */
.vgcsc-dropzone-inner,
.vgcsc-dropzone-inner * {
  pointer-events: none;
}

.vgcsc-dropzone:hover,
.vgcsc-dropzone.dz-drag-hover {
  background:    var(--vgcsc-teal-light);
  border-color:  var(--vgcsc-teal-dark);
}

.vgcsc-dropzone.dz-started .vgcsc-dropzone-inner {
  display: none;
}

.vgcsc-dropzone--video {
  padding: 28px 24px;
}

.vgcsc-dropzone-icon {
  color:         var(--vgcsc-teal);
  margin-bottom: 10px;
}

.vgcsc-dropzone-icon svg {
  stroke: var(--vgcsc-teal);
}

.vgcsc-dropzone-text {
  font-size: 15px;
  color:     var(--vgcsc-navy);
  margin:    0 0 6px;
}

.vgcsc-dropzone-browse {
  color:           var(--vgcsc-teal);
  font-weight:     700;
  text-decoration: underline;
  cursor:          pointer;
}

.vgcsc-dropzone-meta {
  font-size: 12px;
  color:     var(--vgcsc-muted);
  margin:    4px 0 0;
}

/* Gallery Previews */
.vgcsc-gallery-previews {
  display:    flex;
  flex-wrap:  wrap;
  gap:        10px;
  margin-top: 14px;
}

.vgcsc-gallery-thumb {
  position:  relative;
  width:     88px;
  height:    88px;
  border:    2px solid var(--vgcsc-border-lt);
  overflow:  hidden;
  flex-shrink: 0;
}

.vgcsc-gallery-thumb img {
  width:       100%;
  height:      100%;
  object-fit:  cover;
  display:     block;
}

.vgcsc-gallery-thumb .vgcsc-thumb-badge {
  position:    absolute;
  top:         3px;
  left:        3px;
  background:  var(--vgcsc-teal);
  color:       #fff;
  font-size:   9px;
  font-weight: 700;
  padding:     1px 5px;
  text-transform: uppercase;
}

.vgcsc-gallery-thumb .vgcsc-thumb-remove {
  position:   absolute;
  top:        3px;
  right:      3px;
  background: rgba(192,57,43,0.85);
  color:      #fff;
  border:     none;
  width:      20px;
  height:     20px;
  font-size:  12px;
  cursor:     pointer;
  display:    flex;
  align-items: center;
  justify-content: center;
  padding:    0;
  line-height: 1;
}

.vgcsc-gallery-thumb .vgcsc-thumb-remove:hover {
  background: var(--vgcsc-error);
}

.vgcsc-gallery-thumb .vgcsc-thumb-progress {
  position:   absolute;
  bottom:     0;
  left:       0;
  right:      0;
  height:     3px;
  background: var(--vgcsc-teal-light);
}
.vgcsc-gallery-thumb .vgcsc-thumb-progress span {
  display:    block;
  height:     100%;
  background: var(--vgcsc-teal);
  transition: width 0.2s;
}

.vgcsc-gallery-status {
  font-size:  12px;
  color:      var(--vgcsc-muted);
  margin-top: 8px;
}

/* ── Video Toggle ──────────────────────────────────────────────────────────── */
.vgcsc-radio-toggle {
  display:   flex;
  gap:       16px;
  margin-bottom: 14px;
}

.vgcsc-radio-option {
  display:     flex;
  align-items: center;
  gap:         7px;
  cursor:      pointer;
  font-size:   14px;
  font-weight: 500;
}

/* ── Main Category Cards ───────────────────────────────────────────────────── */
.vgcsc-main-cats-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap:                   10px;
  margin-top:            8px;
}

.vgcsc-main-cat-card {
  display:      flex;
  align-items:  center;
  cursor:       pointer;
  border:       2px solid var(--vgcsc-border-lt);
  padding:      12px 14px;
  gap:          10px;
  transition:   border-color var(--vgcsc-transition), background var(--vgcsc-transition), box-shadow var(--vgcsc-transition);
  font-weight:  600;
  font-size:    13px;
  color:        var(--vgcsc-navy);
}

.vgcsc-main-cat-card:hover {
  border-color: var(--vgcsc-teal);
  background:   var(--vgcsc-teal-light);
}

.vgcsc-main-cat-card input[type="radio"] {
  accent-color: var(--vgcsc-teal);
  width:        16px;
  height:       16px;
  flex-shrink:  0;
}

.vgcsc-main-cat-card:has(input:checked) {
  border-color: var(--vgcsc-teal);
  background:   var(--vgcsc-teal-light);
  box-shadow:   0 0 0 3px rgba(59,190,201,0.2);
}

/* JS-driven fallback for :has() — applied by form-wizard.js on radio change */
.vgcsc-main-cat-card.vgcsc-main-cat--selected {
  border-color: var(--vgcsc-teal);
  background:   var(--vgcsc-teal-light);
  box-shadow:   0 0 0 3px rgba(59,190,201,0.2);
}

/* ── Subcategory Divider & Intro ──────────────────────────────────────────── */
.vgcsc-subcats-divider {
  margin: 28px 0 4px;
}

.vgcsc-subcats-hr {
  border: 0;
  border-top: 2px solid var(--vgcsc-border-lt);
  margin: 0 0 14px;
}

.vgcsc-subcats-intro {
  font-size:   13px;
  color:       var(--vgcsc-muted);
  margin:      0 0 8px;
  padding:     10px 14px;
  background:  var(--vgcsc-teal-light);
  border-left: 3px solid var(--vgcsc-teal);
}

/* ── Subcategory Accordion ─────────────────────────────────────────────────── */
.vgcsc-subcats-accordion {
  display:        flex;
  flex-direction: column;
  gap:            8px;
  margin-top:     8px;
}

.vgcsc-subcat-group {
  border:     1px solid var(--vgcsc-border-lt);
  background: var(--vgcsc-white);
}

.vgcsc-subcat-group-title {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         10px 16px;
  font-weight:     700;
  font-size:       14px;
  color:           var(--vgcsc-navy);
  cursor:          pointer;
  background:      #f9fbfd;
  border-bottom:   1px solid var(--vgcsc-border-lt);
  user-select:     none;
  list-style:      none;
}

.vgcsc-subcat-group-title::-webkit-details-marker { display: none; }
.vgcsc-subcat-group-title::marker { display: none; }

.vgcsc-subcat-group-title::after {
  content:   '▾';
  font-size: 12px;
  color:     var(--vgcsc-teal);
}

.vgcsc-subcat-group[open] .vgcsc-subcat-group-title::after {
  transform: rotate(180deg);
  display:   inline-block;
}

.vgcsc-subcat-count {
  font-size:   11px;
  font-weight: 400;
  color:       var(--vgcsc-teal);
  margin-left: 8px;
}

.vgcsc-checkboxes-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap:                   8px;
  padding:               14px 16px;
}

/* ── Custom Checkboxes ─────────────────────────────────────────────────────── */
.vgcsc-checkbox-label {
  display:     flex;
  align-items: center;
  gap:         8px;
  cursor:      pointer;
  font-size:   13px;
  padding:     5px 0;
}

.vgcsc-checkbox {
  position:  relative;
  width:     17px;
  height:    17px;
  flex-shrink: 0;
  cursor:    pointer;
  accent-color: var(--vgcsc-teal);
}

.vgcsc-checkbox-text {
  color: var(--vgcsc-text);
  line-height: 1.3;
}

.vgcsc-checkbox-label:hover .vgcsc-checkbox-text {
  color: var(--vgcsc-navy);
}

/* Parent term header inside a taxonomy accordion group */
.vgcsc-tax-parent-header {
  font-size:    12px;
  font-weight:  700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color:        var(--vgcsc-navy);
  padding:      10px 0 4px;
  border-bottom: 1px solid var(--vgcsc-border-lt);
  margin-bottom: 2px;
}

/* ── Amenities / Parent-group Card (shared across biz + event forms) ──── */
.vgcsc-amenities-card,
.vgcsc-tax-parent-group {
  background:    #f8faff;
  border:        1px solid #e0e8f0;
  border-radius: 10px;
  padding:       20px;
  margin-top:    8px;
  margin-bottom: 4px;
}

.vgcsc-amenities-header {
  font-weight:   700;
  font-size:     15px;
  color:         var(--vgcsc-navy);
  margin-bottom: 12px;
  display:       flex;
  align-items:   center;
  gap:           8px;
}

/* Parent-term label wrapping the checkbox + icon + name */
.vgcsc-parent-term-label {
  display:     flex;
  align-items: center;
  gap:         8px;
  cursor:      pointer;
  font-weight: 700;
  font-size:   15px;
  color:       var(--vgcsc-navy);
  width:       100%;
}

.vgcsc-parent-term-label input[type="checkbox"] {
  width:        16px;
  height:       16px;
  accent-color: var(--vgcsc-teal);
  flex-shrink:  0;
  cursor:       pointer;
}

.vgcsc-amenities-icon {
  font-size: 18px;
}

.vgcsc-amenities-grid {
  display:   flex;
  flex-wrap: wrap;
  gap:       8px;
}

.vgcsc-amenity-pill {
  display:     inline-flex;
  align-items: center;
  gap:         6px;
  padding:     6px 14px;
  background:  #fff;
  border:      1px solid #d0d9e8;
  border-radius: 20px;
  font-size:   13px;
  cursor:      pointer;
  transition:  all 0.15s ease;
  user-select: none;
}

.vgcsc-amenity-pill:hover {
  border-color: var(--vgcsc-teal);
  background:   #f0fafb;
}

.vgcsc-amenity-pill input[type="checkbox"] {
  width:        14px;
  height:       14px;
  accent-color: var(--vgcsc-teal);
}

.vgcsc-amenity-pill input[type="checkbox"]:checked + .vgcsc-pill-text {
  color:       var(--vgcsc-navy);
  font-weight: 600;
}

.vgcsc-amenity-pill:has(input:checked) {
  background:   #e6f9fb;
  border-color: var(--vgcsc-teal);
}

/* Full-row span inside the checkboxes grid */
.vgcsc-full-row {
  grid-column: 1 / -1;
}

/* Indented child checkboxes */
.vgcsc-checkbox-child {
  padding-left: 14px;
}

/* Separator line after the last child in a parent group */
.vgcsc-child-group-last {
  grid-column: 1 / -1;
  padding-bottom: 10px;
  border-bottom:  1px solid var(--vgcsc-border-lt);
  margin-bottom:  4px;
}

/* ── Event Radio Cards ─────────────────────────────────────────────────────── */
.vgcsc-radio-group {
  display:   flex;
  gap:       12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.vgcsc-radio-card {
  display:    flex;
  align-items: center;
  gap:         8px;
  cursor:      pointer;
  border:      2px solid var(--vgcsc-border-lt);
  padding:     10px 16px;
  font-size:   14px;
  font-weight: 500;
  color:       var(--vgcsc-navy);
  transition:  border-color var(--vgcsc-transition), background var(--vgcsc-transition);
}

.vgcsc-radio-card:hover {
  border-color: var(--vgcsc-teal);
  background:   var(--vgcsc-teal-light);
}

.vgcsc-radio-card input[type="radio"] {
  accent-color: var(--vgcsc-teal);
  width:  15px;
  height: 15px;
}

.vgcsc-radio-card:has(input:checked) {
  border-color: var(--vgcsc-teal);
  background:   var(--vgcsc-teal-light);
}

/* ── Navigation Buttons ────────────────────────────────────────────────────── */
.vgcsc-step-nav {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-top:      32px;
  padding-top:     20px;
  border-top:      1px solid var(--vgcsc-border-lt);
}

.vgcsc-step-nav--right {
  justify-content: flex-end;
}

.vgcsc-btn {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  padding:         12px 26px;
  font-size:       15px;
  font-weight:     700;
  font-family:     var(--vgcsc-font);
  letter-spacing:  0.3px;
  cursor:          pointer;
  border:          2px solid transparent;
  border-radius:   var(--vgcsc-radius);
  transition:      background var(--vgcsc-transition), color var(--vgcsc-transition), border-color var(--vgcsc-transition), box-shadow var(--vgcsc-transition);
  text-decoration: none;
  white-space:     nowrap;
}

.vgcsc-btn-next,
.vgcsc-btn-submit {
  background:   var(--vgcsc-teal);
  color:        var(--vgcsc-white);
  border-color: var(--vgcsc-teal);
}

.vgcsc-btn-next:hover,
.vgcsc-btn-submit:hover {
  background:   var(--vgcsc-teal-dark);
  border-color: var(--vgcsc-teal-dark);
  box-shadow:   0 3px 10px rgba(59,190,201,0.3);
}

.vgcsc-btn-next:active,
.vgcsc-btn-submit:active {
  background:   var(--vgcsc-navy);
  border-color: var(--vgcsc-navy);
  transform:    translateY(1px);
}

.vgcsc-btn--ghost {
  background:   transparent;
  color:        var(--vgcsc-navy);
  border-color: var(--vgcsc-navy);
}

.vgcsc-btn--ghost:hover {
  background:   var(--vgcsc-navy);
  color:        var(--vgcsc-white);
}

.vgcsc-btn:disabled,
.vgcsc-btn[disabled] {
  opacity:       0.55;
  cursor:        not-allowed;
  pointer-events: none;
}

.vgcsc-arrow {
  font-size: 16px;
  font-style: normal;
}

/* Submit spinner */
.vgcsc-spin {
  animation: vgcscSpin 0.8s linear infinite;
}

@keyframes vgcscSpin {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* ── reCAPTCHA ─────────────────────────────────────────────────────────────── */
#vgcsc-recaptcha {
  margin-top: 4px;
}

/* ── Privacy Note ──────────────────────────────────────────────────────────── */
.vgcsc-privacy-note {
  font-size:   12px;
  color:       var(--vgcsc-muted);
  margin:      16px 0 0;
  line-height: 1.5;
}

/* ── Social Field Layout ───────────────────────────────────────────────────── */
.vgcsc-field-social {
  /* normal in 2-col grid */
}

/* ── Success Message ───────────────────────────────────────────────────────── */
.vgcsc-success {
  background: var(--vgcsc-white);
  border:     1px solid var(--vgcsc-border-lt);
  border-top: 4px solid var(--vgcsc-teal);
  box-shadow: var(--vgcsc-shadow-lg);
  padding:    56px 36px;
  text-align: center;
}

.vgcsc-success-inner {
  max-width: 480px;
  margin:    0 auto;
}

.vgcsc-success-icon {
  width:           80px;
  height:          80px;
  background:      var(--vgcsc-teal);
  color:           var(--vgcsc-white);
  border-radius:   50%;
  font-size:       36px;
  font-weight:     700;
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin:          0 auto 24px;
  animation:       vgcscPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes vgcscPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.vgcsc-success h2 {
  font-size:   28px;
  color:       var(--vgcsc-navy);
  margin:      0 0 12px;
}

.vgcsc-success p {
  font-size:   16px;
  color:       var(--vgcsc-text);
  margin:      0 0 10px;
  line-height: 1.7;
}

.vgcsc-success-sub {
  font-size: 14px !important;
  color:     var(--vgcsc-muted) !important;
}

.vgcsc-success-sub a {
  color:       var(--vgcsc-teal-dark);
  font-weight: 600;
}

/* ── Global Error Banner ───────────────────────────────────────────────────── */
.vgcsc-alert-error {
  background: var(--vgcsc-error-bg);
  border:     1px solid var(--vgcsc-error);
  border-left: 4px solid var(--vgcsc-error);
  color:      var(--vgcsc-error);
  padding:    14px 18px;
  font-size:  14px;
  margin-top: 16px;
}

/* ── Video Upload Status ───────────────────────────────────────────────────── */
#vgcsc-video-upload-status {
  margin-top: 10px;
  font-size:  13px;
  color:      var(--vgcsc-muted);
}

#vgcsc-video-upload-status.success {
  color: var(--vgcsc-success);
  font-weight: 600;
}

/* ── Event Terms Reveal ────────────────────────────────────────────────────── */
.vgcsc-event-terms-wrap {
  animation: vgcscFadeIn 0.25s ease;
  background: #f9f3fc;
  border:     1px solid #d9b8f0;
  border-left: 4px solid #9b59b6;
  padding:    16px 20px;
  margin-top: 4px;
}

/* ── Responsive: Tablet & Mobile ───────────────────────────────────────────── */
@media (max-width: 680px) {
  #vgcsc-form-wrap {
    padding: 0 0 40px;
    background: var(--vgcsc-bg);
  }

  .vgcsc-header {
    padding:        18px 18px 14px;
    flex-direction: row;
    gap:            12px;
  }

  .vgcsc-logo {
    height: 44px;
  }

  .vgcsc-header-text h1 {
    font-size: 18px;
  }

  .vgcsc-stepper {
    padding: 12px 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .vgcsc-step-text {
    display: none; /* hide labels, show only numbers on mobile */
  }

  .vgcsc-step-item:not(:last-child)::after {
    left:  calc(50% + 10px);
    right: calc(-50% + 10px);
  }

  .vgcsc-step {
    padding: 22px 18px 18px;
  }

  .vgcsc-step-header h2 {
    font-size: 19px;
  }

  .vgcsc-fields-grid {
    grid-template-columns: 1fr;
    gap:                   16px;
  }

  .vgcsc-main-cats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vgcsc-checkboxes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vgcsc-step-nav {
    flex-wrap: wrap;
    gap:       10px;
  }

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

  .vgcsc-step-nav--right .vgcsc-btn {
    width: 100%;
  }

  .vgcsc-radio-toggle {
    flex-direction: column;
    gap:            8px;
  }

  .vgcsc-radio-group {
    flex-direction: column;
  }

  .vgcsc-gallery-thumb {
    width:  72px;
    height: 72px;
  }
}

@media (max-width: 420px) {
  .vgcsc-main-cats-grid {
    grid-template-columns: 1fr;
  }

  .vgcsc-checkboxes-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Dropzone overrides (library classes) ──────────────────────────────────── */
.vgcsc-dropzone .dz-preview {
  display: none !important; /* We render our own thumbnails */
}

.vgcsc-dropzone .dz-message {
  display: none !important; /* We render our own message */
}

/* ── Membership Gate ───────────────────────────────────────────────────────── */
.vgcsc-gate {
  max-width:   860px;
  margin:      48px auto;
  padding:     0 16px 64px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header */
.vgcsc-gate-header {
  text-align:    center;
  padding:       48px 24px 36px;
  background:    #1C2C4C;
  margin-bottom: 0;
}

.vgcsc-gate-icon {
  color:         #3bbec9;
  margin-bottom: 16px;
}

.vgcsc-gate-icon svg {
  display: block;
  margin:  0 auto;
}

.vgcsc-gate-title {
  margin:         0 0 10px;
  font-size:      26px;
  font-weight:    800;
  color:          #ffffff;
  line-height:    1.2;
  letter-spacing: -0.3px;
}

.vgcsc-gate-subtitle {
  margin:      0;
  font-size:   15px;
  color:       #a8d8de;
  line-height: 1.7;
}

/* Two-panel layout */
.vgcsc-gate-panels {
  display:   grid;
  grid-template-columns: 1fr auto 1fr;
  gap:       0;
  background: #ffffff;
  border:    2px solid #1C2C4C;
  border-top: none;
}

.vgcsc-gate-panel {
  padding: 36px 32px 40px;
}

.vgcsc-gate-panel-title {
  margin:      0 0 22px;
  font-size:   16px;
  font-weight: 700;
  color:       #1C2C4C;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid #3bbec9;
  padding-bottom: 10px;
}

/* Vertical divider */
.vgcsc-gate-divider {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           48px;
  position:        relative;
}

.vgcsc-gate-divider::before {
  content:    '';
  position:   absolute;
  top:        0;
  bottom:     0;
  left:       50%;
  transform:  translateX(-50%);
  width:      1px;
  background: #d0d9e8;
}

.vgcsc-gate-divider span {
  background:  #ffffff;
  padding:     8px 0;
  font-size:   12px;
  font-weight: 700;
  color:       #6b7a99;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position:    relative;
  z-index:     1;
}

/* Login form — override WordPress defaults */
#vgcsc-login-form p {
  margin: 0 0 16px;
}

#vgcsc-login-form label {
  display:     block;
  font-size:   13px;
  font-weight: 600;
  color:       #1C2C4C;
  margin-bottom: 5px;
}

#vgcsc-login-form input[type="text"],
#vgcsc-login-form input[type="password"] {
  display:     block;
  width:       100%;
  padding:     10px 12px;
  font-size:   14px;
  border:      1px solid #d0d9e8;
  outline:     none;
  background:  #f9fbfd;
  color:       #000;
  box-sizing:  border-box;
  transition:  border-color 0.2s;
}

#vgcsc-login-form input[type="text"]:focus,
#vgcsc-login-form input[type="password"]:focus {
  border-color: #3bbec9;
  background:   #f0fafb;
}

#vgcsc-login-form .forgetmenot {
  margin: 0 0 20px;
}

#vgcsc-login-form .forgetmenot label {
  display:     flex;
  align-items: center;
  gap:         7px;
  font-weight: 500;
  font-size:   13px;
  cursor:      pointer;
}

#vgcsc-login-form input[type="checkbox"] {
  width:        15px;
  height:       15px;
  accent-color: #3bbec9;
}

#vgcsc-login-form .submit {
  margin: 0;
}

#vgcsc-login-form #wp-submit {
  width:           100%;
  background:      #3bbec9;
  color:           #ffffff;
  border:          none;
  padding:         12px 24px;
  font-size:       15px;
  font-weight:     700;
  cursor:          pointer;
  transition:      background 0.22s;
  letter-spacing:  0.2px;
}

#vgcsc-login-form #wp-submit:hover {
  background: #1C2C4C;
}

/* Forgot password link */
.vgcsc-gate-forgot {
  display:         inline-block;
  margin-top:      14px;
  font-size:       13px;
  color:           #3bbec9;
  text-decoration: underline;
}

.vgcsc-gate-forgot:hover {
  color: #1C2C4C;
}

/* Join panel perks list */
.vgcsc-gate-perks {
  list-style:  none;
  margin:      0 0 28px;
  padding:     0;
}

.vgcsc-gate-perks li {
  position:    relative;
  padding-left: 22px;
  font-size:   14px;
  color:       #3b4a6b;
  line-height: 1.65;
  margin-bottom: 10px;
}

.vgcsc-gate-perks li::before {
  content:    '✓';
  position:   absolute;
  left:       0;
  font-weight: 700;
  color:      #3bbec9;
}

/* CTA button */
.vgcsc-gate-btn {
  display:         block;
  width:           100%;
  background:      #3bbec9;
  color:           #ffffff !important;
  font-size:       15px;
  font-weight:     700;
  padding:         14px 24px;
  text-align:      center;
  text-decoration: none !important;
  letter-spacing:  0.3px;
  border:          none;
  cursor:          pointer;
  transition:      background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow:      0 4px 18px rgba(59, 190, 201, 0.35);
}

.vgcsc-gate-btn:hover,
.vgcsc-gate-btn:focus {
  background: #1C2C4C;
  box-shadow: 0 6px 26px rgba(28, 44, 76, 0.28);
  outline:    none;
}

/* Logged-in, no membership */
.vgcsc-gate-logged-in {
  background:  #ffffff;
  border:      2px solid #1C2C4C;
  border-top:  none;
  padding:     40px 36px 44px;
  text-align:  center;
}

.vgcsc-gate-logged-in-msg {
  font-size:   15px;
  color:       #3b4a6b;
  margin:      0 0 28px;
  line-height: 1.7;
}

/* Responsive: stack panels vertically on narrow screens */
@media (max-width: 640px) {
  .vgcsc-gate-panels {
    grid-template-columns: 1fr;
  }

  .vgcsc-gate-divider {
    width:     100%;
    height:    40px;
    flex-direction: row;
  }

  .vgcsc-gate-divider::before {
    top:    50%;
    bottom: auto;
    left:   0;
    right:  0;
    width:  100%;
    height: 1px;
    transform: none;
  }

  .vgcsc-gate-divider span {
    padding: 0 12px;
  }

  .vgcsc-gate-panel {
    padding: 28px 20px 32px;
  }

  .vgcsc-gate-logged-in {
    padding: 32px 20px 36px;
  }
}

