/* ════════════════════════════════════════
   VIDEOQUOTE.CSS — Video Quote page
   Let's Start Moving
════════════════════════════════════════ */

.page-banner {
  background:
    linear-gradient(rgba(12,12,12,.68), rgba(12,12,12,.68)),
    url('https://images.unsplash.com/photo-1585771724684-38269d6639fd?w=1600&q=80') center/cover no-repeat;
}

/* ── INTRO SECTION ── */
.vq-intro { padding: 88px 0; background: #fff; }

.vq-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light-bg); border: 1.5px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 6px; padding: 10px 16px;
  font-size: 13px; font-weight: 600; color: var(--dark);
  margin-bottom: 20px;
}
.vq-badge i { color: var(--secondary); font-size: 15px; }

.vq-intro h2 { font-size: 32px; font-weight: 800; color: var(--dark); letter-spacing: -0.4px; margin-bottom: 14px; }
.title-bar { width: 44px; height: 3px; background: var(--secondary); border-radius: 2px; margin-bottom: 20px; }

.vq-body { font-size: 15px; color: var(--text); line-height: 1.78; margin-bottom: 14px; }

/* Steps visual */
.vq-steps { margin-top: 32px; }
.vq-step {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 24px;
}
.vq-step:last-child { margin-bottom: 0; }
.vq-step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--secondary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #fff;
}
.vq-step-body h6 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.vq-step-body p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.65; }

/* Right image card */
.vq-img-card { position: relative; }
.vq-img-card img { width: 100%; height: 460px; object-fit: cover; border-radius: 12px; }
.vq-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 28px 24px; border-radius: 0 0 12px 12px;
}
.vq-img-overlay h5 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.vq-img-overlay p { font-size: 13px; color: #d1d5db; margin: 0; }

/* Play button over image */
.vq-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 64px; height: 64px;
  background: var(--secondary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  box-shadow: 0 8px 24px rgba(255,90,9,.4);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.vq-play-btn:hover { transform: translate(-50%, -60%) scale(1.08); box-shadow: 0 12px 32px rgba(255,90,9,.45); }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 80px 0; background: var(--light-bg); }
.hiw-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 32px 24px; text-align: center;
  height: 100%;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.hiw-card:hover { border-color: var(--secondary); box-shadow: 0 10px 32px rgba(0,0,0,.09); transform: translateY(-4px); }
.hiw-num {
  width: 52px; height: 52px; margin: 0 auto 16px;
  background: var(--secondary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
}
.hiw-icon { font-size: 28px; color: var(--secondary); margin-bottom: 12px; display: block; }
.hiw-card h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.hiw-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── FORM SECTION ── */
.vq-form-section { padding: 88px 0; background: #fff; }

.form-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.form-card-header { background: var(--primary); padding: 22px 28px; color: #fff; }
.form-card-header h4 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.form-card-header p { font-size: 13px; opacity: .85; margin: 0; }
.form-card-body { padding: 32px; }
.form-card-body label {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 5px; display: block;
}
.form-card-body .form-control {
  border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  padding: 10px 14px; color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
}
.form-card-body .form-control:focus {
  border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(255,90,9,.1); outline: none;
}
.form-card-body textarea.form-control { resize: none; }

/* Upload field */
.upload-zone {
  border: 2px dashed var(--border); border-radius: 8px;
  padding: 28px 20px; text-align: center;
  cursor: pointer; transition: border-color .2s, background .2s;
  background: var(--light-bg);
  position: relative;
}
.upload-zone:hover { border-color: var(--secondary); background: #fff8f5; }
.upload-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-zone i { font-size: 32px; color: var(--secondary); margin-bottom: 10px; display: block; }
.upload-zone h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.upload-zone p { font-size: 12.5px; color: var(--muted); margin: 0; }
.upload-zone .file-formats {
  display: flex; justify-content: center; gap: 6px; margin-top: 10px; flex-wrap: wrap;
}
.upload-zone .fmt-tag {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 4px; padding: 2px 8px;
  font-size: 11px; font-weight: 600; color: var(--muted);
}

.btn-submit-vq {
  background: var(--primary); color: #fff; border: none;
  padding: 13px 36px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; border-radius: 6px; cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px; width: 100%;
  justify-content: center;
}
.btn-submit-vq:hover { background: #b00301; transform: translateY(-1px); }

/* Right side info */
.vq-form-info h4 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.vq-form-info .title-bar { margin-bottom: 18px; }
.vq-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.vq-info-item:last-child { margin-bottom: 0; }
.vq-info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--light-bg); border: 1.5px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--secondary);
}
.vq-info-item h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.vq-info-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }

.promise-box {
  background: var(--light-bg); border: 1.5px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 8px; padding: 18px 20px; margin-top: 28px;
}
.promise-box h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.promise-box p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .vq-intro, .vq-form-section { padding: 60px 0; }
  .how-it-works { padding: 56px 0; }
}
@media (max-width: 767px) {
  .vq-intro h2 { font-size: 26px; }
  .vq-img-card img { height: 280px; }
  .form-card-body { padding: 20px; }
}
