/**
 * Quick Connection Request / Priority Service Section Styles — Web Techiq Official
 * Developed by MH Badhon Ahmed (Web Techiq)
 */

.web-techiq-quick-request-section {
  position: relative;
  width: 100%;
  padding: var(--quick-req-pad-top, var(--wt-quick-req-pad-top, 40px)) 0 var(--quick-req-pad-bottom, var(--wt-quick-req-pad-bottom, 60px)) 0;
  background: transparent;
  overflow: hidden;
  box-sizing: border-box;
}

/* ── Card Shell ──────────────────────────────────────────────────────── */
.quick-req-card {
  position: relative;
  background: var(--quick-req-card-bg, #fffdfa);
  border: 1px solid var(--quick-req-card-border, #ffe6b3);
  border-radius: 24px;
  padding: 38px 44px;
  box-shadow: 0 12px 35px rgba(255, 184, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  isolation: isolate;
}

/* Ambient Radial Mesh Background inside Card */
.quick-req-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 400px;
  background: radial-gradient(
    circle at center,
    rgba(255, 184, 0, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Section Header Inside Card ─────────────────────────────────────── */
.quick-req-header {
  position: relative;
  z-index: 2;
  margin-bottom: 26px;
}

.quick-req-badge-wrap {
  display: inline-flex;
  margin-bottom: 12px;
}

.quick-req-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--quick-req-badge-bg, #fff3d6);
  color: var(--quick-req-badge-color, #d97706);
  border: 1px solid rgba(217, 119, 6, 0.20);
  border-radius: 50px;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  box-shadow: 0 2px 8px rgba(255, 184, 0, 0.12);
}

.quick-req-title {
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.quick-req-title .title-main {
  color: #0f172a;
}

.quick-req-title .title-highlight {
  position: relative;
  display: inline-block;
  color: var(--wt-primary-color, #ff6b00);
  background: linear-gradient(135deg, #ff6b00 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Solid Yellow/Gold Underline Accent matching Reference Screenshot */
.quick-req-title .title-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffb800;
  border-radius: 4px;
}

.quick-req-subtitle {
  font-family: inherit;
  font-size: 14.5px;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
  max-width: 720px;
}

/* ── Form Wrap & Inputs Row ─────────────────────────────────────────── */
.quick-req-form-wrap {
  position: relative;
  z-index: 2;
}

.quick-req-form-fields {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quick-req-input-group {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.quick-req-input-icon {
  position: absolute;
  left: 18px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 2;
}

.quick-req-input {
  width: 100%;
  height: 52px;
  padding: 10px 20px 10px 48px;
  font-family: inherit;
  font-size: 14.5px;
  color: #0f172a;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.quick-req-input::placeholder {
  color: #94a3b8;
  font-size: 14px;
}

.quick-req-input:focus {
  border-color: var(--wt-primary-color, #ff6b00);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}

.quick-req-input:focus + .quick-req-input-icon,
.quick-req-input-group:focus-within .quick-req-input-icon {
  color: var(--wt-primary-color, #ff6b00);
}

/* ── Submit Button ────────────────────────────────────────────────────── */
.quick-req-submit-btn {
  height: 52px;
  padding: 0 32px;
  font-family: var(--wt-heading-font-family, 'Outfit', sans-serif);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--wt-primary-color, #ff6b00) 0%, #e60067 50%, var(--wt-accent-color, #7c3aed) 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.40);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.quick-req-submit-btn:hover {
  background: linear-gradient(135deg, #e05d00 0%, #c40055 50%, #6d28d9 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.55), 0 0 16px rgba(124, 58, 237, 0.35);
}

.quick-req-submit-btn:active {
  transform: translateY(0);
}

.quick-req-submit-btn.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(17, 24, 39, 0.25);
  border-top-color: #111827;
  border-radius: 50%;
  animation: quickReqSpin 0.7s linear infinite;
}

@keyframes quickReqSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Form Alert Feedback Box ─────────────────────────────────────────── */
.quick-req-alert {
  margin-bottom: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-req-alert.alert-success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.quick-req-alert.alert-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* ── Responsive Breakpoints ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .quick-req-card {
    padding: 30px 28px;
  }

  .quick-req-title {
    font-size: 26px;
  }

  .quick-req-form-fields {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .quick-req-submit-btn {
    width: 100%;
    margin-top: 4px;
  }
}

@media (max-width: 639px) {
  .quick-req-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .quick-req-title {
    font-size: 22px;
  }

  .quick-req-subtitle {
    font-size: 13.5px;
  }

  .quick-req-input {
    height: 48px;
    font-size: 13.5px;
    padding-left: 44px;
  }

  .quick-req-submit-btn {
    height: 48px;
    font-size: 14px;
  }
}



